library(ggplot2)
library(stringr)
library(DT)
library(plyr)
library(dplyr)
library(biomaRt)
library(Biobase)
library(reshape2)
library(formattable)
library(VennDiagram)
library(hypeR)
library(xlsx)
library(animalcules)
library(magrittr)
library(SummarizedExperiment)
library(ggsci)
library(eply)
library(plotly)
library(igraph)
PATH <- getwd()

Microbiome Analysis

Microbiome analysis of oral PMLs and cancer from total trx sequencing. Pathoscope was used to filter, align and map the reads to several organisms including bacterial, viral and fungi.

load host eset

Load eset

eset <- readRDS(file.path(PATH, "data/2021_08_20_eset_imputed_updated.RDS"))
eSet_wo_infl <- eset
table(eSet_wo_infl$Class)
## 
##   Control Dysplasia      HkNR      OSCC 
##        18        22        17         9
eSet_wo_infl$Class <- recode(eSet_wo_infl$Class, "Cancer"="OSCC")
eSet_wo_infl$Class <- factor(eSet_wo_infl$Class, levels = c("Control", "HkNR", "Dysplasia", "OSCC"))

cpm_eset <- eSet_wo_infl
exprs(cpm_eset) <- apply(exprs(cpm_eset), 2, function(x) {x/(sum(x)/1000000)})
print(dim(cpm_eset))
## Features  Samples 
##    21510       66
cpm_eset$Class <- recode(cpm_eset$Class, "Control"="1-Control", "HkNR"="2-HkNR", "Dysplasia"="3-Dysplasia", "OSCC"="4-OSCC")
cpm_eset$Class <- factor(cpm_eset$Class, levels = c("1-Control", "2-HkNR", "3-Dysplasia", "4-OSCC"))

load animalcules MAE

New animalcules file w/o infl

File created from the shiny app with run_animalcules() easy-to-upload .tsv files from pathoscope.

MAE <- readRDS(file.path(PATH, "data/animalcules_data_2022-03-14.rds"))

colData(MAE[['MicrobeGenetics']]) <- cbind(colData(MAE[['MicrobeGenetics']]), "Sample_ID"=rownames(colData(MAE[['MicrobeGenetics']])))
    
#add smoking and progression status to colData
colData(MAE[['MicrobeGenetics']]) <- cbind(colData(MAE[['MicrobeGenetics']]), pData(cpm_eset)[match(MAE[['MicrobeGenetics']]$Sample_ID, gsub(cpm_eset$Sample_ID, pattern = "_", replacement = "-")), c('Smoking_status', 'imputed_smoking_label', 'Progression_status')])
    
MAE[['MicrobeGenetics']]$Progression_status <- ifelse(is.na(MAE[['MicrobeGenetics']]$Progression_status) | (MAE[['MicrobeGenetics']]$Progression_status =="Stable"), MAE[['MicrobeGenetics']]$Class, MAE[['MicrobeGenetics']]$Progression_status)

MAE[['MicrobeGenetics']]$Class <- recode(MAE[['MicrobeGenetics']]$Class, "4-Cancer"="4-OSCC")
saveRDS(MAE, file.path(PATH, "data/2023_06_19_animalcules_data.rds"))
MAE <- readRDS(file.path(PATH, "data/2023_06_19_animalcules_data.rds"))
p1 <- animalcules::relabu_barplot(MAE,
                    tax_level="phylum",
                    sort_by= "conditions",
                    sample_conditions=c('Class'),
                    show_legend=TRUE)
p1                 
p2 <- animalcules::relabu_barplot(MAE,
                    tax_level="genus",
                    sort_by= "conditions",
                    sample_conditions=c('Class'),
                    show_legend=TRUE)
p2
p3 <- animalcules::relabu_barplot(MAE,
                    tax_level="species",
                    sort_by= "conditions",
                    sample_conditions=c('Class'),
                    show_legend=TRUE)
p3
p2 <- animalcules::relabu_barplot(MAE,
                    tax_level="genus",order_organisms = c("Fusobacterium", "Streptococcus"),
                    sort_by= "conditions",
                    sample_conditions=rev(c('Class')),
                    show_legend=TRUE, )
p2

Wrappers

## creating a relabu barplots wrapper to rotate the axix but didn't work
relabu_wrapper <- function (MAE, tax_level, order_organisms = c(), sort_by = c("nosort", 
  "conditions", "organisms", "alphabetically"), group_samples = FALSE, 
  group_conditions = "ALL", sample_conditions = c(), isolate_samples = c(), 
  discard_samples = c(), show_legend = TRUE) 
{
  sort_by <- match.arg(sort_by)
  MAE <- mae_pick_samples(MAE, isolate_samples, discard_samples)
  microbe <- MAE[["MicrobeGenetics"]]
  tax_table <- as.data.frame(rowData(microbe))
  sam_table <- as.data.frame(colData(microbe))
  counts_table <- as.data.frame(assays(microbe))[, rownames(sam_table)]
  sam_table %<>% df_char_to_factor()
  relabu_table <- counts_table %>% upsample_counts(tax_table, 
    tax_level) %>% counts_to_relabu() %>% base::t() %>% 
    base::as.data.frame()
  if (group_samples & !is.null(group_conditions)) {
    if (group_conditions == "ALL") {
      relabu_table$covariate <- rep("ALL", nrow(relabu_table))
    }
    else {
      relabu_table$covariate <- sam_table[[group_conditions]]
    }
    relabu_table <- relabu_table %>% reshape2::melt(id.vars = "covariate") %>% 
      S4Vectors::aggregate(. ~ variable + covariate, ., 
        mean) %>% reshape2::dcast(formula = covariate ~ 
      variable) %>% magrittr::set_rownames(.[["covariate"]]) %>% 
      dplyr::select(-one_of(c("covariate")))
    sam_table <- rownames(relabu_table) %>% as.data.frame() %>% 
      magrittr::set_colnames(c(group_conditions)) %>% 
      magrittr::set_rownames(rownames(relabu_table))
  }
  relabu_table <- relabu_table[, order(colSums(relabu_table)), 
    drop = FALSE]
  if (!is.null(order_organisms)) {
    org_order <- c(setdiff(colnames(relabu_table), order_organisms), 
      rev(order_organisms))
    relabu_table <- relabu_table[, org_order]
  }
  if (sort_by == "alphabetically") {
    org_order <- sort(colnames(relabu_table), decreasing = TRUE)
    relabu_table <- relabu_table[, org_order]
  }
  if (sort_by == "organisms") {
    for (i in seq_len(ncol(relabu_table))) {
      relabu_table <- relabu_table[order(relabu_table[, 
        i]), ]
    }
  }
  if (!is.null(sample_conditions) || (group_samples && group_conditions != 
    "ALL")) {
    if (!group_samples) {
      sam_table <- sam_table[, sample_conditions, drop = FALSE]
    }
    if (sort_by == "conditions") {
      for (i in ncol(sam_table):1) {
        sam_table <- sam_table[order(sam_table[[i]]), 
          , drop = FALSE]
      }
      relabu_table <- relabu_table[order(match(rownames(relabu_table), 
        rownames(sam_table))), , drop = FALSE]
    }
    else {
      sam_table <- sam_table[order(match(rownames(sam_table), 
        rownames(relabu_table))), , drop = FALSE]
    }
    if (nrow(sam_table) > 1) {
      hover.txt <- c()
      for (i in seq_len(ncol(sam_table))) {
        hover.txt <- cbind(hover.txt, as.character(sam_table[[i]]))
      }
      mat <- sam_table %>% data.matrix() %>% apply(2, 
        function(x) (x - min(x))/(max(x) - min(x)))
      hm <- plotly::plot_ly(x = colnames(mat), y = rownames(mat), 
        z = mat, type = "heatmap", showscale = FALSE,
        hoverinfo = "x+y+text", text = hover.txt) %>% 
        layout(xaxis = list(title = "", tickangle = -45), 
          yaxis = list(showticklabels = FALSE, type = "category", 
            ticks = ""))
    }
  }
  relabu_table$samples <- rownames(relabu_table)
  sbp <- plotly::plot_ly(relabu_table, y = ~samples, x = relabu_table[[colnames(relabu_table)[1]]], 
    type = "bar", textposition = "outside", orientaton="h",
    name = substr(colnames(relabu_table)[1], 1, 40)) %>% 
    layout(font = list(size = 10), xaxis = list(title = "Relative Abundance", 
      automargin = TRUE), yaxis = list(title = "", type = "category", 
      tickmode = "array", tickvals = rownames(relabu_table), 
      showticklabels = FALSE, categoryorder = "trace", 
      automargin = TRUE), barmode = "stack", showlegend = show_legend)
  for (i in 2:(ncol(relabu_table) - 1)) {
    sbp <- add_trace(sbp, x = relabu_table[[colnames(relabu_table)[i]]], 
      name = substr(colnames(relabu_table)[i], 1, 40))
  }
  if (exists("hm") && nrow(sam_table) > 1) {
    hm_sbp <- subplot(hm, sbp, widths = c(0.1, 0.9))
    hm_sbp$elementId <- NULL
    return(hm_sbp)
  }
  else {
    sbp$elementId <- NULL
    return(sbp)
  }
}


relabu_boxplot_wrapper <- function (MAE, tax_level, condition, organisms = c(), datatype = c("counts", 
  "relative abundance", "logcpm")) 
{
  datatype <- match.arg(datatype)
  microbe <- MAE[["MicrobeGenetics"]]
  tax_table <- as.data.frame(rowData(microbe))
  sam_table <- as.data.frame(colData(microbe))
  counts_table <- as.data.frame(assays(microbe))[, rownames(sam_table)]
  sam_table %<>% df_char_to_factor()
  df <- counts_table %>% upsample_counts(tax_table, tax_level) %>% 
    {
      if (datatype == "relative abundance") {
        animalcules::counts_to_relabu(.)
      }
      else if (datatype == "logcpm") {
        animalcules::counts_to_logcpm(.)
      }
      else {
        .
      }
    } %>% .[organisms, , drop = FALSE] %>% t() %>% as.data.frame() %>% 
    merge(sam_table[, condition, drop = FALSE], by = 0, 
      all = TRUE) %>% reshape2::melt(by = organisms, variable.name = "organisms")
  
   g <- ggplot2::ggplot(df, 
                       ggplot2::aes(x = organisms, y = value, color = Class, fill = Class)) + 
    geom_boxplot() + 
    viridis::scale_color_viridis(alpha = 0.90, discrete=T)+
    viridis::scale_fill_viridis(alpha = 0.90, discrete =T)+
    #ggplot2::geom_jitter(size=0.2) +
    theme_bw() + labs(y = "log-CPM")+
    ggpubr::stat_compare_means(method = "anova", label = 'p.format')+
     
    ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1)) 
  return(g)
}

Diversity plots

alpha_diversity_wrapper <- function (MAE, tax_level, condition, alpha_metric = c("inverse_simpson", 
  "gini_simpson", "shannon", "fisher", "coverage", "unit")) 
{
  microbe <- MAE[["MicrobeGenetics"]]
  tax_table <- as.data.frame(SummarizedExperiment::rowData(microbe))
  sam_table <- as.data.frame(SummarizedExperiment::colData(microbe))
  counts_table <- as.data.frame(SummarizedExperiment::assays(microbe))[, rownames(sam_table)]
  counts_table %<>% upsample_counts(tax_table, tax_level)
  sam_table$richness <- diversities(counts_table, index = alpha_metric)
  colnames(sam_table)[ncol(sam_table)] <- "richness"
  colnames(sam_table)[which(colnames(sam_table) == condition)] <- "condition"
  
  g <- ggplot2::ggplot(sam_table, 
                       ggplot2::aes(condition, richness, color = condition, fill = condition)) + 
    geom_boxplot() + 
    viridis::scale_color_viridis(alpha = 0.90, discrete=TRUE)+
    viridis::scale_fill_viridis(alpha = 0.90, discrete = TRUE)+
    ggplot2::geom_jitter(size=0.3) +
    #ggpubr::stat_compare_means(method = "anova",  label = 'p.format') +
    theme_bw() +
    ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1)) +
    ggplot2::labs(title = paste("Alpha diversity between ", 
                                condition, " (", alpha_metric, ")", sep = ""))
    g <- g + labs(y = alpha_metric)
    return(g)
}

a1 <- alpha_diversity_wrapper(MAE = MAE, tax_level = "genus", condition = "Class", alpha_metric = "shannon")
a1

microbe <- MAE[["MicrobeGenetics"]]
sam_table <- as.data.frame(SummarizedExperiment::colData(microbe))
tax_table <- as.data.frame(SummarizedExperiment::rowData(microbe))
counts_table <- as.data.frame(SummarizedExperiment::assays(microbe))[, rownames(sam_table)]
counts_table %<>% upsample_counts(tax_table, "genus")
sam_table$richness <- diversities(counts_table, index = "shannon")
colnames(sam_table)[ncol(sam_table)] <- "richness"

condition <- "Class"
colnames(sam_table)[which(colnames(sam_table) == condition)] <- "Class"
  
sam_table_richness <- sam_table[,c('Class', 'richness')]
names(sam_table_richness) <- c('condition', 'richness')
animalcules::alpha_div_test(sam_table = sam_table_richness)
##                               output
## Method  Kruskal-Wallis rank sum test
## P-value            0.107283810749721
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "genus", input_beta_method = "bray", input_bdhm_select_conditions =   "Class", input_bdhm_sort_by = "conditions") 
## No scatter mode specifed:
##   Setting the mode to markers
##   Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode
## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'

## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'

## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'

## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'

## Warning: 'layout' objects don't have these attributes: 'orientation'
## Valid attributes include:
## '_deprecated', 'activeshape', 'annotations', 'autosize', 'autotypenumbers', 'calendar', 'clickmode', 'coloraxis', 'colorscale', 'colorway', 'computed', 'datarevision', 'dragmode', 'editrevision', 'editType', 'font', 'geo', 'grid', 'height', 'hidesources', 'hoverdistance', 'hoverlabel', 'hovermode', 'images', 'legend', 'mapbox', 'margin', 'meta', 'metasrc', 'modebar', 'newshape', 'paper_bgcolor', 'plot_bgcolor', 'polar', 'scene', 'selectdirection', 'selectionrevision', 'separators', 'shapes', 'showlegend', 'sliders', 'spikedistance', 'template', 'ternary', 'title', 'transition', 'uirevision', 'uniformtext', 'updatemenus', 'width', 'xaxis', 'yaxis', 'barmode', 'bargap', 'mapType'
animalcules::diversity_beta_test(MAE = MAE,tax_level = "genus", input_beta_method = "bray", input_select_beta_condition = "Class", input_select_beta_stat_method = "PERMANOVA", input_num_permutation_permanova = 1000)
## Permutation test for adonis under reduced model
## Terms added sequentially (first to last)
## Permutation: free
## Number of permutations: 1000
## 
## vegan::adonis2(formula = dist.mat ~ condition, data = sam_table, permutations = input_num_permutation_permanova)
##           Df SumOfSqs      R2      F   Pr(>F)   
## condition  3   1.1403 0.10822 2.5081 0.003996 **
## Residual  62   9.3964 0.89178                   
## Total     65  10.5367 1.00000                   
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
suppressPackageStartupMessages(library(plotly))

animalcules::alpha_div_boxplot(MAE = MAE, tax_level = "genus", condition = "Class", alpha_metric = "shannon")
animalcules::alpha_div_boxplot(MAE = MAE, tax_level = "species", condition = "Class", alpha_metric = "shannon")
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "genus", input_beta_method = "bray",input_bdhm_select_conditions =   "Class", input_bdhm_sort_by = "conditions")
## No scatter mode specifed:
##   Setting the mode to markers
##   Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode
animalcules::diversity_beta_heatmap(MAE = MAE, tax_level = "species", input_beta_method = "bray",input_bdhm_select_conditions =   "Class", input_bdhm_sort_by = "conditions")
## No scatter mode specifed:
##   Setting the mode to markers
##   Read more about this attribute -> https://plotly.com/r/reference/#scatter-mode

Rel abu of MoI

r1 <- relabu_boxplot_wrapper(MAE = MAE, tax_level = "genus", condition = "Class", organisms = c("Fusobacterium", "Neisseria", "Prevotella", "Shewanella", "Streptococcus", "Candida"), datatype = "logcpm")
## Using Row.names, Class as id variables
r1

Diff. Exp

diffanal <- differential_abundance(MAE,
                            tax_level="genus",
                            input_da_condition=c("Class"),
                            input_da_condition_covariate = c("Sex", "imputed_smoking_label"),
                            min_num_filter  = 500,
                            input_da_padj_cutoff = 0.05, method = 'DESeq2')
DT::datatable(diffanal)
#write.xlsx(diffanal, file=file.path(PATH, "06_30_diffanal_microbes.xlsx"))

#get microbes unique to each contrast-condition
#up in first group and down in the other - up reg
microbe_list <- list("ctrl.vs.hknr_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 2-HkNR' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
     "ctrl.vs.hknr_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 2-HkNR' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)],
      "ctrl.vs.dys_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 3-Dysplasia' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
     "ctrl.vs.dys_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 3-Dysplasia' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)],
     "ctrl.vs.cancer_up"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 4-Cancer' & diffanal$padj <=0.05 & diffanal$log2FoldChange > 1)],
     "ctrl.vs.cancer_down"=diffanal$microbe[which(diffanal$Contrast=='1-Control vs. 4-Cancer' & diffanal$padj <=0.05 & diffanal$log2FoldChange < -1)])
microbe_list

#saveRDS(microbe_list, file.path("results/06_30_microbe_diffex_list.RDS"))

MSEA

Microbe set enrichment analysis (MSEA) Load results from msea - ran on scc with a jupyter notebook

OSCC vs. Ctrl

msea_cancer_up <- read.csv(file.path(PATH, "results/msea_cancer_ctrl_up.csv"))
msea_cancer_dn <- read.csv(file.path(PATH, "results/msea_cancer_ctrl_dn.csv"))
msea_pml_up <- read.csv(file.path(PATH, "results/msea_pml_ctrl_up.csv"))
msea_pml_dn <- read.csv(file.path(PATH, "results/msea_pml_ctrl_dn.csv"))

msea_cancer_up <- msea_cancer_up[msea_cancer_up$qvalue<=0.05 & msea_cancer_up$combined_score > 0,]
msea_cancer_dn <- msea_cancer_dn[msea_cancer_dn$qvalue<=0.05,]#none significant
msea_pml_up <- msea_pml_up[msea_pml_up$qvalue<=0.05 & msea_pml_up$combined_score > 0, ]
msea_pml_dn <- msea_pml_dn[msea_pml_dn$qvalue<=0.05,]#none significant

msea_genes <- list("cancer" = msea_cancer_up$term, 
                   "pml"=msea_pml_up$term)

HALLMARK <-  msigdb_gsets("Homo sapiens", "H", "")
names(HALLMARK$genesets) <- names(HALLMARK$genesets) %>% strsplit( "HALLMARK_" ) %>% sapply( tail, 1 )

REACTOME <- msigdb_gsets(species="Homo sapiens", category="C2", subcategory="CP:REACTOME", clean = TRUE)
names(REACTOME$genesets) <- names(REACTOME$genesets) %>% strsplit( "REACTOME_" ) %>% sapply( tail, 1 )


hyp_mic1 <- hypeR(signature = msea_genes, genesets = HALLMARK, background = 1300)
## cancer
## pml
hyp_mic2 <- hypeR(signature = msea_genes, genesets = HALLMARK)
## cancer
## pml
hyp_dots(hyp_mic1, merge = T, fdr = 0.1, title = "Hallmark(bck=1300)")

hyp_mic1$as.list()
## $cancer
##                                                               label  pval fdr
## INFLAMMATORY_RESPONSE                         INFLAMMATORY_RESPONSE 0.014 0.7
## TNFA_SIGNALING_VIA_NFKB                     TNFA_SIGNALING_VIA_NFKB 0.072 1.0
## ALLOGRAFT_REJECTION                             ALLOGRAFT_REJECTION 0.140 1.0
## IL6_JAK_STAT3_SIGNALING                     IL6_JAK_STAT3_SIGNALING 0.360 1.0
## KRAS_SIGNALING_UP                                 KRAS_SIGNALING_UP 0.390 1.0
## APOPTOSIS                                                 APOPTOSIS 0.670 1.0
## NOTCH_SIGNALING                                     NOTCH_SIGNALING 0.680 1.0
## INTERFERON_GAMMA_RESPONSE                 INTERFERON_GAMMA_RESPONSE 0.710 1.0
## APICAL_SURFACE                                       APICAL_SURFACE 0.790 1.0
## IL2_STAT5_SIGNALING                             IL2_STAT5_SIGNALING 0.840 1.0
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 0.850 1.0
## INTERFERON_ALPHA_RESPONSE                 INTERFERON_ALPHA_RESPONSE 0.860 1.0
## TGF_BETA_SIGNALING                               TGF_BETA_SIGNALING 0.860 1.0
## APICAL_JUNCTION                                     APICAL_JUNCTION 0.930 1.0
## HYPOXIA                                                     HYPOXIA 0.930 1.0
## COAGULATION                                             COAGULATION 0.960 1.0
## PROTEIN_SECRETION                                 PROTEIN_SECRETION 0.970 1.0
## COMPLEMENT                                               COMPLEMENT 0.980 1.0
## PI3K_AKT_MTOR_SIGNALING                     PI3K_AKT_MTOR_SIGNALING 0.980 1.0
## UV_RESPONSE_UP                                       UV_RESPONSE_UP 0.980 1.0
## ADIPOGENESIS                                           ADIPOGENESIS 1.000 1.0
## ANDROGEN_RESPONSE                                 ANDROGEN_RESPONSE 1.000 1.0
## ANGIOGENESIS                                           ANGIOGENESIS 1.000 1.0
## BILE_ACID_METABOLISM                           BILE_ACID_METABOLISM 1.000 1.0
## CHOLESTEROL_HOMEOSTASIS                     CHOLESTEROL_HOMEOSTASIS 1.000 1.0
## DNA_REPAIR                                               DNA_REPAIR 1.000 1.0
## E2F_TARGETS                                             E2F_TARGETS 1.000 1.0
## ESTROGEN_RESPONSE_EARLY                     ESTROGEN_RESPONSE_EARLY 1.000 1.0
## ESTROGEN_RESPONSE_LATE                       ESTROGEN_RESPONSE_LATE 1.000 1.0
## FATTY_ACID_METABOLISM                         FATTY_ACID_METABOLISM 1.000 1.0
## G2M_CHECKPOINT                                       G2M_CHECKPOINT 1.000 1.0
## GLYCOLYSIS                                               GLYCOLYSIS 1.000 1.0
## HEDGEHOG_SIGNALING                               HEDGEHOG_SIGNALING 1.000 1.0
## HEME_METABOLISM                                     HEME_METABOLISM 1.000 1.0
## KRAS_SIGNALING_DN                                 KRAS_SIGNALING_DN 1.000 1.0
## MITOTIC_SPINDLE                                     MITOTIC_SPINDLE 1.000 1.0
## MTORC1_SIGNALING                                   MTORC1_SIGNALING 1.000 1.0
## MYC_TARGETS_V1                                       MYC_TARGETS_V1 1.000 1.0
## MYC_TARGETS_V2                                       MYC_TARGETS_V2 1.000 1.0
## MYOGENESIS                                               MYOGENESIS 1.000 1.0
## OXIDATIVE_PHOSPHORYLATION                 OXIDATIVE_PHOSPHORYLATION 1.000 1.0
## P53_PATHWAY                                             P53_PATHWAY 1.000 1.0
## PANCREAS_BETA_CELLS                             PANCREAS_BETA_CELLS 1.000 1.0
## PEROXISOME                                               PEROXISOME 1.000 1.0
## REACTIVE_OXYGEN_SPECIES_PATHWAY     REACTIVE_OXYGEN_SPECIES_PATHWAY 1.000 1.0
## SPERMATOGENESIS                                     SPERMATOGENESIS 1.000 1.0
## UNFOLDED_PROTEIN_RESPONSE                 UNFOLDED_PROTEIN_RESPONSE 1.000 1.0
## UV_RESPONSE_DN                                       UV_RESPONSE_DN 1.000 1.0
## WNT_BETA_CATENIN_SIGNALING               WNT_BETA_CATENIN_SIGNALING 1.000 1.0
## XENOBIOTIC_METABOLISM                         XENOBIOTIC_METABOLISM 1.000 1.0
##                                   signature geneset overlap background
## INFLAMMATORY_RESPONSE                    45     200      13       1300
## TNFA_SIGNALING_VIA_NFKB                  45     200      11       1300
## ALLOGRAFT_REJECTION                      45     200      10       1300
## IL6_JAK_STAT3_SIGNALING                  45      87       4       1300
## KRAS_SIGNALING_UP                        45     200       8       1300
## APOPTOSIS                                45     161       5       1300
## NOTCH_SIGNALING                          45      32       1       1300
## INTERFERON_GAMMA_RESPONSE                45     200       6       1300
## APICAL_SURFACE                           45      44       1       1300
## IL2_STAT5_SIGNALING                      45     199       5       1300
## EPITHELIAL_MESENCHYMAL_TRANSITION        45     200       5       1300
## INTERFERON_ALPHA_RESPONSE                45      97       2       1300
## TGF_BETA_SIGNALING                       45      54       1       1300
## APICAL_JUNCTION                          45     200       4       1300
## HYPOXIA                                  45     200       4       1300
## COAGULATION                              45     138       2       1300
## PROTEIN_SECRETION                        45      96       1       1300
## COMPLEMENT                               45     200       3       1300
## PI3K_AKT_MTOR_SIGNALING                  45     105       1       1300
## UV_RESPONSE_UP                           45     158       2       1300
## ADIPOGENESIS                             45     200       0       1300
## ANDROGEN_RESPONSE                        45     100       0       1300
## ANGIOGENESIS                             45      36       0       1300
## BILE_ACID_METABOLISM                     45     112       0       1300
## CHOLESTEROL_HOMEOSTASIS                  45      74       0       1300
## DNA_REPAIR                               45     150       0       1300
## E2F_TARGETS                              45     200       0       1300
## ESTROGEN_RESPONSE_EARLY                  45     200       1       1300
## ESTROGEN_RESPONSE_LATE                   45     200       1       1300
## FATTY_ACID_METABOLISM                    45     158       0       1300
## G2M_CHECKPOINT                           45     200       0       1300
## GLYCOLYSIS                               45     200       2       1300
## HEDGEHOG_SIGNALING                       45      36       0       1300
## HEME_METABOLISM                          45     200       0       1300
## KRAS_SIGNALING_DN                        45     200       0       1300
## MITOTIC_SPINDLE                          45     199       0       1300
## MTORC1_SIGNALING                         45     200       0       1300
## MYC_TARGETS_V1                           45     200       0       1300
## MYC_TARGETS_V2                           45      58       0       1300
## MYOGENESIS                               45     200       0       1300
## OXIDATIVE_PHOSPHORYLATION                45     200       0       1300
## P53_PATHWAY                              45     200       1       1300
## PANCREAS_BETA_CELLS                      45      40       0       1300
## PEROXISOME                               45     104       0       1300
## REACTIVE_OXYGEN_SPECIES_PATHWAY          45      49       0       1300
## SPERMATOGENESIS                          45     135       0       1300
## UNFOLDED_PROTEIN_RESPONSE                45     113       0       1300
## UV_RESPONSE_DN                           45     144       1       1300
## WNT_BETA_CATENIN_SIGNALING               45      42       0       1300
## XENOBIOTIC_METABOLISM                    45     200       2       1300
##                                                                                                        hits
## INFLAMMATORY_RESPONSE             CCL20,CD40,CD69,CD70,CXCL10,CXCL11,CXCL8,IL10,IL18,IL1B,IL6,SERPINE1,TLR3
## TNFA_SIGNALING_VIA_NFKB                      BIRC3,CCL20,CD69,CD83,CXCL10,CXCL11,FOS,IL18,IL1B,IL6,SERPINE1
## ALLOGRAFT_REJECTION                                      CD40,CD86,EGFR,FCGR2B,IL10,IL18,IL1B,IL6,MMP9,TLR3
## IL6_JAK_STAT3_SIGNALING                                                              CXCL10,CXCL11,IL1B,IL6
## KRAS_SIGNALING_UP                                           BIRC3,CCL20,CXCL10,IL1B,IL33,MMP9,PDCD1LG2,SLPI
## APOPTOSIS                                                                          BIRC3,CD69,IL18,IL1B,IL6
## NOTCH_SIGNALING                                                                                       WNT5A
## INTERFERON_GAMMA_RESPONSE                                                  CD40,CD69,CD86,CXCL10,CXCL11,IL6
## APICAL_SURFACE                                                                                        PCSK9
## IL2_STAT5_SIGNALING                                                           CD83,CD86,CXCL10,IL10,TNFSF11
## EPITHELIAL_MESENCHYMAL_TRANSITION                                        CXCL8,IL6,SERPINE1,TNFRSF11B,WNT5A
## INTERFERON_ALPHA_RESPONSE                                                                     CXCL10,CXCL11
## TGF_BETA_SIGNALING                                                                                 SERPINE1
## APICAL_JUNCTION                                                                    CD86,EGFR,MMP9,TNFRSF11B
## HYPOXIA                                                                               EGFR,FOS,IL6,SERPINE1
## COAGULATION                                                                                   MMP9,SERPINE1
## PROTEIN_SECRETION                                                                                      EGFR
## COMPLEMENT                                                                               IL6,PCSK9,SERPINE1
## PI3K_AKT_MTOR_SIGNALING                                                                                EGFR
## UV_RESPONSE_UP                                                                                      FOS,IL6
## ADIPOGENESIS                                                                                               
## ANDROGEN_RESPONSE                                                                                          
## ANGIOGENESIS                                                                                               
## BILE_ACID_METABOLISM                                                                                       
## CHOLESTEROL_HOMEOSTASIS                                                                                    
## DNA_REPAIR                                                                                                 
## E2F_TARGETS                                                                                                
## ESTROGEN_RESPONSE_EARLY                                                                                 FOS
## ESTROGEN_RESPONSE_LATE                                                                                  FOS
## FATTY_ACID_METABOLISM                                                                                      
## G2M_CHECKPOINT                                                                                             
## GLYCOLYSIS                                                                                        EGFR,NANP
## HEDGEHOG_SIGNALING                                                                                         
## HEME_METABOLISM                                                                                            
## KRAS_SIGNALING_DN                                                                                          
## MITOTIC_SPINDLE                                                                                            
## MTORC1_SIGNALING                                                                                           
## MYC_TARGETS_V1                                                                                             
## MYC_TARGETS_V2                                                                                             
## MYOGENESIS                                                                                                 
## OXIDATIVE_PHOSPHORYLATION                                                                                  
## P53_PATHWAY                                                                                             FOS
## PANCREAS_BETA_CELLS                                                                                        
## PEROXISOME                                                                                                 
## REACTIVE_OXYGEN_SPECIES_PATHWAY                                                                            
## SPERMATOGENESIS                                                                                            
## UNFOLDED_PROTEIN_RESPONSE                                                                                  
## UV_RESPONSE_DN                                                                                     SERPINE1
## WNT_BETA_CATENIN_SIGNALING                                                                                 
## XENOBIOTIC_METABOLISM                                                                        CCL25,SERPINE1
## 
## $pml
##                                                               label  pval fdr
## ALLOGRAFT_REJECTION                             ALLOGRAFT_REJECTION 0.053   1
## INFLAMMATORY_RESPONSE                         INFLAMMATORY_RESPONSE 0.053   1
## IL6_JAK_STAT3_SIGNALING                     IL6_JAK_STAT3_SIGNALING 0.150   1
## TNFA_SIGNALING_VIA_NFKB                     TNFA_SIGNALING_VIA_NFKB 0.430   1
## INTERFERON_GAMMA_RESPONSE                 INTERFERON_GAMMA_RESPONSE 0.550   1
## APOPTOSIS                                                 APOPTOSIS 0.900   1
## NOTCH_SIGNALING                                     NOTCH_SIGNALING 0.900   1
## INTERFERON_ALPHA_RESPONSE                 INTERFERON_ALPHA_RESPONSE 0.920   1
## PANCREAS_BETA_CELLS                             PANCREAS_BETA_CELLS 0.950   1
## PI3K_AKT_MTOR_SIGNALING                     PI3K_AKT_MTOR_SIGNALING 0.950   1
## WNT_BETA_CATENIN_SIGNALING               WNT_BETA_CATENIN_SIGNALING 0.950   1
## COAGULATION                                             COAGULATION 0.970   1
## REACTIVE_OXYGEN_SPECIES_PATHWAY     REACTIVE_OXYGEN_SPECIES_PATHWAY 0.970   1
## COMPLEMENT                                               COMPLEMENT 0.980   1
## IL2_STAT5_SIGNALING                             IL2_STAT5_SIGNALING 0.980   1
## TGF_BETA_SIGNALING                               TGF_BETA_SIGNALING 0.980   1
## KRAS_SIGNALING_UP                                 KRAS_SIGNALING_UP 0.990   1
## MYC_TARGETS_V2                                       MYC_TARGETS_V2 0.990   1
## PROTEIN_SECRETION                                 PROTEIN_SECRETION 0.990   1
## ADIPOGENESIS                                           ADIPOGENESIS 1.000   1
## ANDROGEN_RESPONSE                                 ANDROGEN_RESPONSE 1.000   1
## ANGIOGENESIS                                           ANGIOGENESIS 1.000   1
## APICAL_JUNCTION                                     APICAL_JUNCTION 1.000   1
## APICAL_SURFACE                                       APICAL_SURFACE 1.000   1
## BILE_ACID_METABOLISM                           BILE_ACID_METABOLISM 1.000   1
## CHOLESTEROL_HOMEOSTASIS                     CHOLESTEROL_HOMEOSTASIS 1.000   1
## DNA_REPAIR                                               DNA_REPAIR 1.000   1
## E2F_TARGETS                                             E2F_TARGETS 1.000   1
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 1.000   1
## ESTROGEN_RESPONSE_EARLY                     ESTROGEN_RESPONSE_EARLY 1.000   1
## ESTROGEN_RESPONSE_LATE                       ESTROGEN_RESPONSE_LATE 1.000   1
## FATTY_ACID_METABOLISM                         FATTY_ACID_METABOLISM 1.000   1
## G2M_CHECKPOINT                                       G2M_CHECKPOINT 1.000   1
## GLYCOLYSIS                                               GLYCOLYSIS 1.000   1
## HEDGEHOG_SIGNALING                               HEDGEHOG_SIGNALING 1.000   1
## HEME_METABOLISM                                     HEME_METABOLISM 1.000   1
## HYPOXIA                                                     HYPOXIA 1.000   1
## KRAS_SIGNALING_DN                                 KRAS_SIGNALING_DN 1.000   1
## MITOTIC_SPINDLE                                     MITOTIC_SPINDLE 1.000   1
## MTORC1_SIGNALING                                   MTORC1_SIGNALING 1.000   1
## MYC_TARGETS_V1                                       MYC_TARGETS_V1 1.000   1
## MYOGENESIS                                               MYOGENESIS 1.000   1
## OXIDATIVE_PHOSPHORYLATION                 OXIDATIVE_PHOSPHORYLATION 1.000   1
## P53_PATHWAY                                             P53_PATHWAY 1.000   1
## PEROXISOME                                               PEROXISOME 1.000   1
## SPERMATOGENESIS                                     SPERMATOGENESIS 1.000   1
## UNFOLDED_PROTEIN_RESPONSE                 UNFOLDED_PROTEIN_RESPONSE 1.000   1
## UV_RESPONSE_DN                                       UV_RESPONSE_DN 1.000   1
## UV_RESPONSE_UP                                       UV_RESPONSE_UP 1.000   1
## XENOBIOTIC_METABOLISM                         XENOBIOTIC_METABOLISM 1.000   1
##                                   signature geneset overlap background
## ALLOGRAFT_REJECTION                      91     200      20       1300
## INFLAMMATORY_RESPONSE                    91     200      20       1300
## IL6_JAK_STAT3_SIGNALING                  91      87       9       1300
## TNFA_SIGNALING_VIA_NFKB                  91     200      15       1300
## INTERFERON_GAMMA_RESPONSE                91     200      14       1300
## APOPTOSIS                                91     161       8       1300
## NOTCH_SIGNALING                          91      32       1       1300
## INTERFERON_ALPHA_RESPONSE                91      97       4       1300
## PANCREAS_BETA_CELLS                      91      40       1       1300
## PI3K_AKT_MTOR_SIGNALING                  91     105       4       1300
## WNT_BETA_CATENIN_SIGNALING               91      42       1       1300
## COAGULATION                              91     138       5       1300
## REACTIVE_OXYGEN_SPECIES_PATHWAY          91      49       1       1300
## COMPLEMENT                               91     200       8       1300
## IL2_STAT5_SIGNALING                      91     199       8       1300
## TGF_BETA_SIGNALING                       91      54       1       1300
## KRAS_SIGNALING_UP                        91     200       7       1300
## MYC_TARGETS_V2                           91      58       1       1300
## PROTEIN_SECRETION                        91      96       2       1300
## ADIPOGENESIS                             91     200       1       1300
## ANDROGEN_RESPONSE                        91     100       0       1300
## ANGIOGENESIS                             91      36       0       1300
## APICAL_JUNCTION                          91     200       3       1300
## APICAL_SURFACE                           91      44       0       1300
## BILE_ACID_METABOLISM                     91     112       1       1300
## CHOLESTEROL_HOMEOSTASIS                  91      74       0       1300
## DNA_REPAIR                               91     150       0       1300
## E2F_TARGETS                              91     200       3       1300
## EPITHELIAL_MESENCHYMAL_TRANSITION        91     200       6       1300
## ESTROGEN_RESPONSE_EARLY                  91     200       1       1300
## ESTROGEN_RESPONSE_LATE                   91     200       2       1300
## FATTY_ACID_METABOLISM                    91     158       1       1300
## G2M_CHECKPOINT                           91     200       2       1300
## GLYCOLYSIS                               91     200       3       1300
## HEDGEHOG_SIGNALING                       91      36       0       1300
## HEME_METABOLISM                          91     200       1       1300
## HYPOXIA                                  91     200       3       1300
## KRAS_SIGNALING_DN                        91     200       1       1300
## MITOTIC_SPINDLE                          91     199       2       1300
## MTORC1_SIGNALING                         91     200       1       1300
## MYC_TARGETS_V1                           91     200       1       1300
## MYOGENESIS                               91     200       0       1300
## OXIDATIVE_PHOSPHORYLATION                91     200       0       1300
## P53_PATHWAY                              91     200       1       1300
## PEROXISOME                               91     104       0       1300
## SPERMATOGENESIS                          91     135       2       1300
## UNFOLDED_PROTEIN_RESPONSE                91     113       1       1300
## UV_RESPONSE_DN                           91     144       3       1300
## UV_RESPONSE_UP                           91     158       1       1300
## XENOBIOTIC_METABOLISM                    91     200       2       1300
##                                                                                                                                                 hits
## ALLOGRAFT_REJECTION                           CCL11,CCL2,CCL22,CCR5,CD2,CD40,CD86,FASLG,FCGR2B,IL13,IL15,IL18,IL1B,IL2,IL4,IRF4,NLRP3,RIPK2,TLR3,TNF
## INFLAMMATORY_RESPONSE             C5AR1,CCL2,CCL22,CD40,CD55,CD70,CXCL10,CXCL11,CXCL8,IL15,IL18,IL1B,MARCO,MYC,NFKBIA,NLRP3,NOD2,RIPK2,SERPINE1,TLR3
## IL6_JAK_STAT3_SIGNALING                                                                           CD38,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,IL1B,STAT3,TNF
## TNFA_SIGNALING_VIA_NFKB                                      BIRC3,CCL2,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,IL18,IL1B,MYC,NFKBIA,PTGS2,RIPK2,SERPINE1,TNF
## INTERFERON_GAMMA_RESPONSE                                           CCL2,CD274,CD38,CD40,CD86,CXCL10,CXCL11,HLA-B,IL15,IRF4,NFKBIA,PTGS2,RIPK2,STAT3
## APOPTOSIS                                                                                                    BIRC3,CAV1,CD2,CD38,FASLG,IL18,IL1B,TNF
## NOTCH_SIGNALING                                                                                                                                WNT5A
## INTERFERON_ALPHA_RESPONSE                                                                                                   CXCL10,CXCL11,IL15,RIPK2
## PANCREAS_BETA_CELLS                                                                                                                             DPP4
## PI3K_AKT_MTOR_SIGNALING                                                                                                         CDK1,FASLG,IL4,MAPK8
## WNT_BETA_CATENIN_SIGNALING                                                                                                                       MYC
## COAGULATION                                                                                                              APOA1,C3,DPP4,MMP8,SERPINE1
## REACTIVE_OXYGEN_SPECIES_PATHWAY                                                                                                                  MPO
## COMPLEMENT                                                                                                C3,CD55,CD59,CTSC,CXCL1,DPP4,MMP8,SERPINE1
## IL2_STAT5_SIGNALING                                                                                     CD86,CSF2,CTLA4,CXCL10,IL13,IRF4,MYC,TNFSF11
## TGF_BETA_SIGNALING                                                                                                                          SERPINE1
## KRAS_SIGNALING_UP                                                                                             BIRC3,CSF2,CXCL10,IL1B,LY96,PTGS2,SLPI
## MYC_TARGETS_V2                                                                                                                                   MYC
## PROTEIN_SECRETION                                                                                                                          CD63,CTSC
## ADIPOGENESIS                                                                                                                                      C3
## ANDROGEN_RESPONSE                                                                                                                                   
## ANGIOGENESIS                                                                                                                                        
## APICAL_JUNCTION                                                                                                                      CD274,CD34,CD86
## APICAL_SURFACE                                                                                                                                      
## BILE_ACID_METABOLISM                                                                                                                           APOA1
## CHOLESTEROL_HOMEOSTASIS                                                                                                                             
## DNA_REPAIR                                                                                                                                          
## E2F_TARGETS                                                                                                                           CDK1,DNMT1,MYC
## EPITHELIAL_MESENCHYMAL_TRANSITION                                                                               CD59,CXCL1,CXCL8,IL15,SERPINE1,WNT5A
## ESTROGEN_RESPONSE_EARLY                                                                                                                          MYC
## ESTROGEN_RESPONSE_LATE                                                                                                                     CAV1,GALE
## FATTY_ACID_METABOLISM                                                                                                                            MIF
## G2M_CHECKPOINT                                                                                                                              CDK1,MYC
## GLYCOLYSIS                                                                                                                             CDK1,GALE,MIF
## HEDGEHOG_SIGNALING                                                                                                                                  
## HEME_METABOLISM                                                                                                                                   C3
## HYPOXIA                                                                                                                            CAV1,MIF,SERPINE1
## KRAS_SIGNALING_DN                                                                                                                                GP2
## MITOTIC_SPINDLE                                                                                                                           CDC42,CDK1
## MTORC1_SIGNALING                                                                                                                                CTSC
## MYC_TARGETS_V1                                                                                                                                   MYC
## MYOGENESIS                                                                                                                                          
## OXIDATIVE_PHOSPHORYLATION                                                                                                                           
## P53_PATHWAY                                                                                                                                    IRAK1
## PEROXISOME                                                                                                                                          
## SPERMATOGENESIS                                                                                                                           CDK1,SIRT1
## UNFOLDED_PROTEIN_RESPONSE                                                                                                                       CCL2
## UV_RESPONSE_DN                                                                                                                     CAV1,MYC,SERPINE1
## UV_RESPONSE_UP                                                                                                                                NFKBIA
## XENOBIOTIC_METABOLISM                                                                                                                   CRP,SERPINE1
hyp_dots(hyp_mic2, merge = T, fdr = 0.1, title = "Hallmark(bck=all)")

hyp_mic2$as.list()
## $cancer
##                                                               label    pval
## INFLAMMATORY_RESPONSE                         INFLAMMATORY_RESPONSE 4.9e-17
## TNFA_SIGNALING_VIA_NFKB                     TNFA_SIGNALING_VIA_NFKB 1.0e-13
## ALLOGRAFT_REJECTION                             ALLOGRAFT_REJECTION 4.0e-12
## KRAS_SIGNALING_UP                                 KRAS_SIGNALING_UP 4.0e-09
## INTERFERON_GAMMA_RESPONSE                 INTERFERON_GAMMA_RESPONSE 2.2e-06
## APOPTOSIS                                                 APOPTOSIS 1.4e-05
## IL6_JAK_STAT3_SIGNALING                     IL6_JAK_STAT3_SIGNALING 2.3e-05
## IL2_STAT5_SIGNALING                             IL2_STAT5_SIGNALING 3.9e-05
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 4.0e-05
## APICAL_JUNCTION                                     APICAL_JUNCTION 5.8e-04
## HYPOXIA                                                     HYPOXIA 5.8e-04
## COMPLEMENT                                               COMPLEMENT 6.7e-03
## INTERFERON_ALPHA_RESPONSE                 INTERFERON_ALPHA_RESPONSE 1.5e-02
## COAGULATION                                             COAGULATION 2.9e-02
## UV_RESPONSE_UP                                       UV_RESPONSE_UP 3.7e-02
## GLYCOLYSIS                                               GLYCOLYSIS 5.6e-02
## XENOBIOTIC_METABOLISM                         XENOBIOTIC_METABOLISM 5.6e-02
## NOTCH_SIGNALING                                     NOTCH_SIGNALING 6.0e-02
## APICAL_SURFACE                                       APICAL_SURFACE 8.1e-02
## TGF_BETA_SIGNALING                               TGF_BETA_SIGNALING 9.9e-02
## PROTEIN_SECRETION                                 PROTEIN_SECRETION 1.7e-01
## PI3K_AKT_MTOR_SIGNALING                     PI3K_AKT_MTOR_SIGNALING 1.8e-01
## UV_RESPONSE_DN                                       UV_RESPONSE_DN 2.4e-01
## ESTROGEN_RESPONSE_EARLY                     ESTROGEN_RESPONSE_EARLY 3.2e-01
## ESTROGEN_RESPONSE_LATE                       ESTROGEN_RESPONSE_LATE 3.2e-01
## P53_PATHWAY                                             P53_PATHWAY 3.2e-01
## ADIPOGENESIS                                           ADIPOGENESIS 1.0e+00
## ANDROGEN_RESPONSE                                 ANDROGEN_RESPONSE 1.0e+00
## ANGIOGENESIS                                           ANGIOGENESIS 1.0e+00
## BILE_ACID_METABOLISM                           BILE_ACID_METABOLISM 1.0e+00
## CHOLESTEROL_HOMEOSTASIS                     CHOLESTEROL_HOMEOSTASIS 1.0e+00
## DNA_REPAIR                                               DNA_REPAIR 1.0e+00
## E2F_TARGETS                                             E2F_TARGETS 1.0e+00
## FATTY_ACID_METABOLISM                         FATTY_ACID_METABOLISM 1.0e+00
## G2M_CHECKPOINT                                       G2M_CHECKPOINT 1.0e+00
## HEDGEHOG_SIGNALING                               HEDGEHOG_SIGNALING 1.0e+00
## HEME_METABOLISM                                     HEME_METABOLISM 1.0e+00
## KRAS_SIGNALING_DN                                 KRAS_SIGNALING_DN 1.0e+00
## MITOTIC_SPINDLE                                     MITOTIC_SPINDLE 1.0e+00
## MTORC1_SIGNALING                                   MTORC1_SIGNALING 1.0e+00
## MYC_TARGETS_V1                                       MYC_TARGETS_V1 1.0e+00
## MYC_TARGETS_V2                                       MYC_TARGETS_V2 1.0e+00
## MYOGENESIS                                               MYOGENESIS 1.0e+00
## OXIDATIVE_PHOSPHORYLATION                 OXIDATIVE_PHOSPHORYLATION 1.0e+00
## PANCREAS_BETA_CELLS                             PANCREAS_BETA_CELLS 1.0e+00
## PEROXISOME                                               PEROXISOME 1.0e+00
## REACTIVE_OXYGEN_SPECIES_PATHWAY     REACTIVE_OXYGEN_SPECIES_PATHWAY 1.0e+00
## SPERMATOGENESIS                                     SPERMATOGENESIS 1.0e+00
## UNFOLDED_PROTEIN_RESPONSE                 UNFOLDED_PROTEIN_RESPONSE 1.0e+00
## WNT_BETA_CATENIN_SIGNALING               WNT_BETA_CATENIN_SIGNALING 1.0e+00
##                                       fdr signature geneset overlap background
## INFLAMMATORY_RESPONSE             2.4e-15        45     200      13      23467
## TNFA_SIGNALING_VIA_NFKB           2.6e-12        45     200      11      23467
## ALLOGRAFT_REJECTION               6.6e-11        45     200      10      23467
## KRAS_SIGNALING_UP                 5.0e-08        45     200       8      23467
## INTERFERON_GAMMA_RESPONSE         2.2e-05        45     200       6      23467
## APOPTOSIS                         1.2e-04        45     161       5      23467
## IL6_JAK_STAT3_SIGNALING           1.7e-04        45      87       4      23467
## IL2_STAT5_SIGNALING               2.2e-04        45     199       5      23467
## EPITHELIAL_MESENCHYMAL_TRANSITION 2.2e-04        45     200       5      23467
## APICAL_JUNCTION                   2.6e-03        45     200       4      23467
## HYPOXIA                           2.6e-03        45     200       4      23467
## COMPLEMENT                        2.8e-02        45     200       3      23467
## INTERFERON_ALPHA_RESPONSE         5.7e-02        45      97       2      23467
## COAGULATION                       1.0e-01        45     138       2      23467
## UV_RESPONSE_UP                    1.2e-01        45     158       2      23467
## GLYCOLYSIS                        1.7e-01        45     200       2      23467
## XENOBIOTIC_METABOLISM             1.7e-01        45     200       2      23467
## NOTCH_SIGNALING                   1.7e-01        45      32       1      23467
## APICAL_SURFACE                    2.1e-01        45      44       1      23467
## TGF_BETA_SIGNALING                2.5e-01        45      54       1      23467
## PROTEIN_SECRETION                 4.0e-01        45      96       1      23467
## PI3K_AKT_MTOR_SIGNALING           4.2e-01        45     105       1      23467
## UV_RESPONSE_DN                    5.3e-01        45     144       1      23467
## ESTROGEN_RESPONSE_EARLY           6.2e-01        45     200       1      23467
## ESTROGEN_RESPONSE_LATE            6.2e-01        45     200       1      23467
## P53_PATHWAY                       6.2e-01        45     200       1      23467
## ADIPOGENESIS                      1.0e+00        45     200       0      23467
## ANDROGEN_RESPONSE                 1.0e+00        45     100       0      23467
## ANGIOGENESIS                      1.0e+00        45      36       0      23467
## BILE_ACID_METABOLISM              1.0e+00        45     112       0      23467
## CHOLESTEROL_HOMEOSTASIS           1.0e+00        45      74       0      23467
## DNA_REPAIR                        1.0e+00        45     150       0      23467
## E2F_TARGETS                       1.0e+00        45     200       0      23467
## FATTY_ACID_METABOLISM             1.0e+00        45     158       0      23467
## G2M_CHECKPOINT                    1.0e+00        45     200       0      23467
## HEDGEHOG_SIGNALING                1.0e+00        45      36       0      23467
## HEME_METABOLISM                   1.0e+00        45     200       0      23467
## KRAS_SIGNALING_DN                 1.0e+00        45     200       0      23467
## MITOTIC_SPINDLE                   1.0e+00        45     199       0      23467
## MTORC1_SIGNALING                  1.0e+00        45     200       0      23467
## MYC_TARGETS_V1                    1.0e+00        45     200       0      23467
## MYC_TARGETS_V2                    1.0e+00        45      58       0      23467
## MYOGENESIS                        1.0e+00        45     200       0      23467
## OXIDATIVE_PHOSPHORYLATION         1.0e+00        45     200       0      23467
## PANCREAS_BETA_CELLS               1.0e+00        45      40       0      23467
## PEROXISOME                        1.0e+00        45     104       0      23467
## REACTIVE_OXYGEN_SPECIES_PATHWAY   1.0e+00        45      49       0      23467
## SPERMATOGENESIS                   1.0e+00        45     135       0      23467
## UNFOLDED_PROTEIN_RESPONSE         1.0e+00        45     113       0      23467
## WNT_BETA_CATENIN_SIGNALING        1.0e+00        45      42       0      23467
##                                                                                                        hits
## INFLAMMATORY_RESPONSE             CCL20,CD40,CD69,CD70,CXCL10,CXCL11,CXCL8,IL10,IL18,IL1B,IL6,SERPINE1,TLR3
## TNFA_SIGNALING_VIA_NFKB                      BIRC3,CCL20,CD69,CD83,CXCL10,CXCL11,FOS,IL18,IL1B,IL6,SERPINE1
## ALLOGRAFT_REJECTION                                      CD40,CD86,EGFR,FCGR2B,IL10,IL18,IL1B,IL6,MMP9,TLR3
## KRAS_SIGNALING_UP                                           BIRC3,CCL20,CXCL10,IL1B,IL33,MMP9,PDCD1LG2,SLPI
## INTERFERON_GAMMA_RESPONSE                                                  CD40,CD69,CD86,CXCL10,CXCL11,IL6
## APOPTOSIS                                                                          BIRC3,CD69,IL18,IL1B,IL6
## IL6_JAK_STAT3_SIGNALING                                                              CXCL10,CXCL11,IL1B,IL6
## IL2_STAT5_SIGNALING                                                           CD83,CD86,CXCL10,IL10,TNFSF11
## EPITHELIAL_MESENCHYMAL_TRANSITION                                        CXCL8,IL6,SERPINE1,TNFRSF11B,WNT5A
## APICAL_JUNCTION                                                                    CD86,EGFR,MMP9,TNFRSF11B
## HYPOXIA                                                                               EGFR,FOS,IL6,SERPINE1
## COMPLEMENT                                                                               IL6,PCSK9,SERPINE1
## INTERFERON_ALPHA_RESPONSE                                                                     CXCL10,CXCL11
## COAGULATION                                                                                   MMP9,SERPINE1
## UV_RESPONSE_UP                                                                                      FOS,IL6
## GLYCOLYSIS                                                                                        EGFR,NANP
## XENOBIOTIC_METABOLISM                                                                        CCL25,SERPINE1
## NOTCH_SIGNALING                                                                                       WNT5A
## APICAL_SURFACE                                                                                        PCSK9
## TGF_BETA_SIGNALING                                                                                 SERPINE1
## PROTEIN_SECRETION                                                                                      EGFR
## PI3K_AKT_MTOR_SIGNALING                                                                                EGFR
## UV_RESPONSE_DN                                                                                     SERPINE1
## ESTROGEN_RESPONSE_EARLY                                                                                 FOS
## ESTROGEN_RESPONSE_LATE                                                                                  FOS
## P53_PATHWAY                                                                                             FOS
## ADIPOGENESIS                                                                                               
## ANDROGEN_RESPONSE                                                                                          
## ANGIOGENESIS                                                                                               
## BILE_ACID_METABOLISM                                                                                       
## CHOLESTEROL_HOMEOSTASIS                                                                                    
## DNA_REPAIR                                                                                                 
## E2F_TARGETS                                                                                                
## FATTY_ACID_METABOLISM                                                                                      
## G2M_CHECKPOINT                                                                                             
## HEDGEHOG_SIGNALING                                                                                         
## HEME_METABOLISM                                                                                            
## KRAS_SIGNALING_DN                                                                                          
## MITOTIC_SPINDLE                                                                                            
## MTORC1_SIGNALING                                                                                           
## MYC_TARGETS_V1                                                                                             
## MYC_TARGETS_V2                                                                                             
## MYOGENESIS                                                                                                 
## OXIDATIVE_PHOSPHORYLATION                                                                                  
## PANCREAS_BETA_CELLS                                                                                        
## PEROXISOME                                                                                                 
## REACTIVE_OXYGEN_SPECIES_PATHWAY                                                                            
## SPERMATOGENESIS                                                                                            
## UNFOLDED_PROTEIN_RESPONSE                                                                                  
## WNT_BETA_CATENIN_SIGNALING                                                                                 
## 
## $pml
##                                                               label    pval
## ALLOGRAFT_REJECTION                             ALLOGRAFT_REJECTION 6.0e-23
## INFLAMMATORY_RESPONSE                         INFLAMMATORY_RESPONSE 6.0e-23
## TNFA_SIGNALING_VIA_NFKB                     TNFA_SIGNALING_VIA_NFKB 1.7e-15
## INTERFERON_GAMMA_RESPONSE                 INTERFERON_GAMMA_RESPONSE 4.1e-14
## IL6_JAK_STAT3_SIGNALING                     IL6_JAK_STAT3_SIGNALING 5.3e-11
## APOPTOSIS                                                 APOPTOSIS 2.2e-07
## COMPLEMENT                                               COMPLEMENT 1.1e-06
## IL2_STAT5_SIGNALING                             IL2_STAT5_SIGNALING 1.1e-06
## KRAS_SIGNALING_UP                                 KRAS_SIGNALING_UP 1.3e-05
## EPITHELIAL_MESENCHYMAL_TRANSITION EPITHELIAL_MESENCHYMAL_TRANSITION 1.3e-04
## COAGULATION                                             COAGULATION 2.0e-04
## INTERFERON_ALPHA_RESPONSE                 INTERFERON_ALPHA_RESPONSE 5.6e-04
## PI3K_AKT_MTOR_SIGNALING                     PI3K_AKT_MTOR_SIGNALING 7.5e-04
## UV_RESPONSE_DN                                       UV_RESPONSE_DN 1.9e-02
## APICAL_JUNCTION                                     APICAL_JUNCTION 4.3e-02
## E2F_TARGETS                                             E2F_TARGETS 4.3e-02
## GLYCOLYSIS                                               GLYCOLYSIS 4.3e-02
## HYPOXIA                                                     HYPOXIA 4.3e-02
## PROTEIN_SECRETION                                 PROTEIN_SECRETION 5.4e-02
## SPERMATOGENESIS                                     SPERMATOGENESIS 9.7e-02
## NOTCH_SIGNALING                                     NOTCH_SIGNALING 1.2e-01
## PANCREAS_BETA_CELLS                             PANCREAS_BETA_CELLS 1.4e-01
## WNT_BETA_CATENIN_SIGNALING               WNT_BETA_CATENIN_SIGNALING 1.5e-01
## REACTIVE_OXYGEN_SPECIES_PATHWAY     REACTIVE_OXYGEN_SPECIES_PATHWAY 1.7e-01
## ESTROGEN_RESPONSE_LATE                       ESTROGEN_RESPONSE_LATE 1.8e-01
## G2M_CHECKPOINT                                       G2M_CHECKPOINT 1.8e-01
## MITOTIC_SPINDLE                                     MITOTIC_SPINDLE 1.8e-01
## XENOBIOTIC_METABOLISM                         XENOBIOTIC_METABOLISM 1.8e-01
## TGF_BETA_SIGNALING                               TGF_BETA_SIGNALING 1.9e-01
## MYC_TARGETS_V2                                       MYC_TARGETS_V2 2.0e-01
## BILE_ACID_METABOLISM                           BILE_ACID_METABOLISM 3.5e-01
## UNFOLDED_PROTEIN_RESPONSE                 UNFOLDED_PROTEIN_RESPONSE 3.6e-01
## FATTY_ACID_METABOLISM                         FATTY_ACID_METABOLISM 4.6e-01
## UV_RESPONSE_UP                                       UV_RESPONSE_UP 4.6e-01
## ADIPOGENESIS                                           ADIPOGENESIS 5.4e-01
## ESTROGEN_RESPONSE_EARLY                     ESTROGEN_RESPONSE_EARLY 5.4e-01
## HEME_METABOLISM                                     HEME_METABOLISM 5.4e-01
## KRAS_SIGNALING_DN                                 KRAS_SIGNALING_DN 5.4e-01
## MTORC1_SIGNALING                                   MTORC1_SIGNALING 5.4e-01
## MYC_TARGETS_V1                                       MYC_TARGETS_V1 5.4e-01
## P53_PATHWAY                                             P53_PATHWAY 5.4e-01
## ANDROGEN_RESPONSE                                 ANDROGEN_RESPONSE 1.0e+00
## ANGIOGENESIS                                           ANGIOGENESIS 1.0e+00
## APICAL_SURFACE                                       APICAL_SURFACE 1.0e+00
## CHOLESTEROL_HOMEOSTASIS                     CHOLESTEROL_HOMEOSTASIS 1.0e+00
## DNA_REPAIR                                               DNA_REPAIR 1.0e+00
## HEDGEHOG_SIGNALING                               HEDGEHOG_SIGNALING 1.0e+00
## MYOGENESIS                                               MYOGENESIS 1.0e+00
## OXIDATIVE_PHOSPHORYLATION                 OXIDATIVE_PHOSPHORYLATION 1.0e+00
## PEROXISOME                                               PEROXISOME 1.0e+00
##                                       fdr signature geneset overlap background
## ALLOGRAFT_REJECTION               1.5e-21        91     200      20      23467
## INFLAMMATORY_RESPONSE             1.5e-21        91     200      20      23467
## TNFA_SIGNALING_VIA_NFKB           2.8e-14        91     200      15      23467
## INTERFERON_GAMMA_RESPONSE         5.1e-13        91     200      14      23467
## IL6_JAK_STAT3_SIGNALING           5.3e-10        91      87       9      23467
## APOPTOSIS                         1.8e-06        91     161       8      23467
## COMPLEMENT                        7.0e-06        91     200       8      23467
## IL2_STAT5_SIGNALING               7.0e-06        91     199       8      23467
## KRAS_SIGNALING_UP                 7.2e-05        91     200       7      23467
## EPITHELIAL_MESENCHYMAL_TRANSITION 6.5e-04        91     200       6      23467
## COAGULATION                       9.2e-04        91     138       5      23467
## INTERFERON_ALPHA_RESPONSE         2.3e-03        91      97       4      23467
## PI3K_AKT_MTOR_SIGNALING           2.9e-03        91     105       4      23467
## UV_RESPONSE_DN                    6.6e-02        91     144       3      23467
## APICAL_JUNCTION                   1.2e-01        91     200       3      23467
## E2F_TARGETS                       1.2e-01        91     200       3      23467
## GLYCOLYSIS                        1.2e-01        91     200       3      23467
## HYPOXIA                           1.2e-01        91     200       3      23467
## PROTEIN_SECRETION                 1.4e-01        91      96       2      23467
## SPERMATOGENESIS                   2.4e-01        91     135       2      23467
## NOTCH_SIGNALING                   2.8e-01        91      32       1      23467
## PANCREAS_BETA_CELLS               3.2e-01        91      40       1      23467
## WNT_BETA_CATENIN_SIGNALING        3.2e-01        91      42       1      23467
## REACTIVE_OXYGEN_SPECIES_PATHWAY   3.2e-01        91      49       1      23467
## ESTROGEN_RESPONSE_LATE            3.2e-01        91     200       2      23467
## G2M_CHECKPOINT                    3.2e-01        91     200       2      23467
## MITOTIC_SPINDLE                   3.2e-01        91     199       2      23467
## XENOBIOTIC_METABOLISM             3.2e-01        91     200       2      23467
## TGF_BETA_SIGNALING                3.3e-01        91      54       1      23467
## MYC_TARGETS_V2                    3.4e-01        91      58       1      23467
## BILE_ACID_METABOLISM              5.6e-01        91     112       1      23467
## UNFOLDED_PROTEIN_RESPONSE         5.6e-01        91     113       1      23467
## FATTY_ACID_METABOLISM             6.6e-01        91     158       1      23467
## UV_RESPONSE_UP                    6.6e-01        91     158       1      23467
## ADIPOGENESIS                      6.6e-01        91     200       1      23467
## ESTROGEN_RESPONSE_EARLY           6.6e-01        91     200       1      23467
## HEME_METABOLISM                   6.6e-01        91     200       1      23467
## KRAS_SIGNALING_DN                 6.6e-01        91     200       1      23467
## MTORC1_SIGNALING                  6.6e-01        91     200       1      23467
## MYC_TARGETS_V1                    6.6e-01        91     200       1      23467
## P53_PATHWAY                       6.6e-01        91     200       1      23467
## ANDROGEN_RESPONSE                 1.0e+00        91     100       0      23467
## ANGIOGENESIS                      1.0e+00        91      36       0      23467
## APICAL_SURFACE                    1.0e+00        91      44       0      23467
## CHOLESTEROL_HOMEOSTASIS           1.0e+00        91      74       0      23467
## DNA_REPAIR                        1.0e+00        91     150       0      23467
## HEDGEHOG_SIGNALING                1.0e+00        91      36       0      23467
## MYOGENESIS                        1.0e+00        91     200       0      23467
## OXIDATIVE_PHOSPHORYLATION         1.0e+00        91     200       0      23467
## PEROXISOME                        1.0e+00        91     104       0      23467
##                                                                                                                                                 hits
## ALLOGRAFT_REJECTION                           CCL11,CCL2,CCL22,CCR5,CD2,CD40,CD86,FASLG,FCGR2B,IL13,IL15,IL18,IL1B,IL2,IL4,IRF4,NLRP3,RIPK2,TLR3,TNF
## INFLAMMATORY_RESPONSE             C5AR1,CCL2,CCL22,CD40,CD55,CD70,CXCL10,CXCL11,CXCL8,IL15,IL18,IL1B,MARCO,MYC,NFKBIA,NLRP3,NOD2,RIPK2,SERPINE1,TLR3
## TNFA_SIGNALING_VIA_NFKB                                      BIRC3,CCL2,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,IL18,IL1B,MYC,NFKBIA,PTGS2,RIPK2,SERPINE1,TNF
## INTERFERON_GAMMA_RESPONSE                                           CCL2,CD274,CD38,CD40,CD86,CXCL10,CXCL11,HLA-B,IL15,IRF4,NFKBIA,PTGS2,RIPK2,STAT3
## IL6_JAK_STAT3_SIGNALING                                                                           CD38,CSF2,CXCL1,CXCL10,CXCL11,CXCL3,IL1B,STAT3,TNF
## APOPTOSIS                                                                                                    BIRC3,CAV1,CD2,CD38,FASLG,IL18,IL1B,TNF
## COMPLEMENT                                                                                                C3,CD55,CD59,CTSC,CXCL1,DPP4,MMP8,SERPINE1
## IL2_STAT5_SIGNALING                                                                                     CD86,CSF2,CTLA4,CXCL10,IL13,IRF4,MYC,TNFSF11
## KRAS_SIGNALING_UP                                                                                             BIRC3,CSF2,CXCL10,IL1B,LY96,PTGS2,SLPI
## EPITHELIAL_MESENCHYMAL_TRANSITION                                                                               CD59,CXCL1,CXCL8,IL15,SERPINE1,WNT5A
## COAGULATION                                                                                                              APOA1,C3,DPP4,MMP8,SERPINE1
## INTERFERON_ALPHA_RESPONSE                                                                                                   CXCL10,CXCL11,IL15,RIPK2
## PI3K_AKT_MTOR_SIGNALING                                                                                                         CDK1,FASLG,IL4,MAPK8
## UV_RESPONSE_DN                                                                                                                     CAV1,MYC,SERPINE1
## APICAL_JUNCTION                                                                                                                      CD274,CD34,CD86
## E2F_TARGETS                                                                                                                           CDK1,DNMT1,MYC
## GLYCOLYSIS                                                                                                                             CDK1,GALE,MIF
## HYPOXIA                                                                                                                            CAV1,MIF,SERPINE1
## PROTEIN_SECRETION                                                                                                                          CD63,CTSC
## SPERMATOGENESIS                                                                                                                           CDK1,SIRT1
## NOTCH_SIGNALING                                                                                                                                WNT5A
## PANCREAS_BETA_CELLS                                                                                                                             DPP4
## WNT_BETA_CATENIN_SIGNALING                                                                                                                       MYC
## REACTIVE_OXYGEN_SPECIES_PATHWAY                                                                                                                  MPO
## ESTROGEN_RESPONSE_LATE                                                                                                                     CAV1,GALE
## G2M_CHECKPOINT                                                                                                                              CDK1,MYC
## MITOTIC_SPINDLE                                                                                                                           CDC42,CDK1
## XENOBIOTIC_METABOLISM                                                                                                                   CRP,SERPINE1
## TGF_BETA_SIGNALING                                                                                                                          SERPINE1
## MYC_TARGETS_V2                                                                                                                                   MYC
## BILE_ACID_METABOLISM                                                                                                                           APOA1
## UNFOLDED_PROTEIN_RESPONSE                                                                                                                       CCL2
## FATTY_ACID_METABOLISM                                                                                                                            MIF
## UV_RESPONSE_UP                                                                                                                                NFKBIA
## ADIPOGENESIS                                                                                                                                      C3
## ESTROGEN_RESPONSE_EARLY                                                                                                                          MYC
## HEME_METABOLISM                                                                                                                                   C3
## KRAS_SIGNALING_DN                                                                                                                                GP2
## MTORC1_SIGNALING                                                                                                                                CTSC
## MYC_TARGETS_V1                                                                                                                                   MYC
## P53_PATHWAY                                                                                                                                    IRAK1
## ANDROGEN_RESPONSE                                                                                                                                   
## ANGIOGENESIS                                                                                                                                        
## APICAL_SURFACE                                                                                                                                      
## CHOLESTEROL_HOMEOSTASIS                                                                                                                             
## DNA_REPAIR                                                                                                                                          
## HEDGEHOG_SIGNALING                                                                                                                                  
## MYOGENESIS                                                                                                                                          
## OXIDATIVE_PHOSPHORYLATION                                                                                                                           
## PEROXISOME
hyp_mic3 <- hypeR(signature = msea_genes, genesets = REACTOME, background = 1300)
## cancer
## pml
hyp_mic4 <- hypeR(signature = msea_genes, genesets = REACTOME)
## cancer
## pml
hyp_dots(hyp_mic3, merge = T, fdr = 0.1, title = "Reactome(bck=1300)")

hyp_mic3$as.list()
## $cancer
##                                                                                                                                                                                                                                                                     label
## Interleukin 10 Signaling                                                                                                                                                                                                                         Interleukin 10 Signaling
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                   Chemokine Receptors Bind Chemokines
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                 Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                               Cd163 Mediating An Anti Inflammatory Response
## Interleukin 1 Processing                                                                                                                                                                                                                         Interleukin 1 Processing
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                             Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                           Tnfs Bind Their Physiological Receptors
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                     Interleukin 4 And Interleukin 13 Signaling
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                         Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                 Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                               Mecp2 Regulates Transcription Factors
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                   Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation                                                                                                                                                                                                                 Fibronectin Matrix Formation
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                       Ptk6 Promotes Hif1a Stabilization
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                 Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Creb Phosphorylation                                                                                                                                                                                                                                 Creb Phosphorylation
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                           Purinergic Signaling In Leishmaniasis Infection
## Pyroptosis                                                                                                                                                                                                                                                     Pyroptosis
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                 Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Interleukin 18 Signaling                                                                                                                                                                                                                         Interleukin 18 Signaling
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                       Mecp2 Regulates Transcription Of Neuronal Ligands
## Pd 1 Signaling                                                                                                                                                                                                                                             Pd 1 Signaling
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                         Extra Nuclear Estrogen Signaling
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                       Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           Egfr Transactivation By Gastrin
## Mapk1 Erk2 Activation                                                                                                                                                                                                                               Mapk1 Erk2 Activation
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                       Tnfr2 Non Canonical Nf Kb Pathway
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                   Mapk Targets Nuclear Events Mediated By Map Kinases
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                             Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                       Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                         Camk Iv Mediated Phosphorylation Of Creb
## Mapk3 Erk1 Activation                                                                                                                                                                                                                               Mapk3 Erk1 Activation
## Regulated Necrosis                                                                                                                                                                                                                                     Regulated Necrosis
## Interleukin 6 Signaling                                                                                                                                                                                                                           Interleukin 6 Signaling
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                         Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                   Cd28 Dependent Vav1 Pathway
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                       Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Killing Mechanisms                                                                                                                                                                                                                                     Killing Mechanisms
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch2 Intracellular Domain Regulates Transcription
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                         Ticam1 Dependent Activation Of Irf3 Irf7
## Vldlr Internalisation And Degradation                                                                                                                                                                                               Vldlr Internalisation And Degradation
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                     Dissolution Of Fibrin Clot
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                             Erbb2 Activates Ptk6 Signaling
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                               Irf3 Mediated Induction Of Type I Ifn
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                   Trafficking And Processing Of Endosomal Tlr
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                               Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Ngf Stimulated Transcription                                                                                                                                                                                                                 Ngf Stimulated Transcription
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                               Shc1 Events In Egfr Signaling
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                     Constitutive Signaling By Egfrviii
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                               Erbb2 Regulates Cell Motility
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                         Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                           Wnt5a Dependent Internalization Of Fzd4
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                     Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb2 Events In Erbb2 Signaling
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb2 Signaling
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                             Signaling By Erbb2 Ecd Mutants
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                       Sting Mediated Induction Of Host Immune Responses
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                           Sumoylation Of Dna Methylation Proteins
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                               Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Gab1 Signalosome                                                                                                                                                                                                                                         Gab1 Signalosome
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                               Rip Mediated Nfkb Activation Via Zbp1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                           Mecp2 Regulates Neuronal Receptors And Channels
## Costimulation By The Cd28 Family                                                                                                                                                                                                         Costimulation By The Cd28 Family
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                         Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Ldl Clearance                                                                                                                                                                                                                                               Ldl Clearance
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                 Pka Mediated Phosphorylation Of Creb
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                     Ctla4 Inhibitory Signaling
## Inflammasomes                                                                                                                                                                                                                                               Inflammasomes
## Signal Transduction By L1                                                                                                                                                                                                                       Signal Transduction By L1
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                     Zbp1 Dai Mediated Induction Of Type I Ifns
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                       Cd28 Dependent Pi3k Akt Signaling
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb2 Signaling
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                         Ikk Complex Recruitment Mediated By Rip1
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                     Raf Independent Mapk1 3 Activation
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                 Termination Of O Glycan Biosynthesis
## Interleukin 6 Family Signaling                                                                                                                                                                                                             Interleukin 6 Family Signaling
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch3 Activation And Transmission Of Signal To The Nucleus
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                         Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Signaling By Egfr In Cancer                                                                                                                                                                                                                   Signaling By Egfr In Cancer
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                               Constitutive Signaling By Akt1 E17k In Cancer
## Dectin 2 Family                                                                                                                                                                                                                                           Dectin 2 Family
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                 Signaling By Erbb2 In Cancer
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                               Wnt Ligand Biogenesis And Trafficking
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                         Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                               Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                         Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                       Downregulation Of Erbb2 Signaling
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                       Nuclear Events Kinase And Transcription Factor Activation
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                       Ripk1 Mediated Regulated Necrosis
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                 Cytosolic Sensors Of Pathogen Associated Dna
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                         Tnfr1 Induced Nfkappab Signaling Pathway
## Diseases Of Immune System                                                                                                                                                                                                                       Diseases Of Immune System
## Egfr Downregulation                                                                                                                                                                                                                                   Egfr Downregulation
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                             Myd88 Independent Tlr4 Cascade
## Perk Regulates Gene Expression                                                                                                                                                                                                             Perk Regulates Gene Expression
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                   Regulation Of Mecp2 Expression And Activity
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                             Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                           Activation Of Matrix Metalloproteinases
## Cd28 Co Stimulation                                                                                                                                                                                                                                   Cd28 Co Stimulation
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                 Plasma Lipoprotein Clearance
## Sialic Acid Metabolism                                                                                                                                                                                                                             Sialic Acid Metabolism
## Signaling By Notch2                                                                                                                                                                                                                                   Signaling By Notch2
## Peptide Ligand Binding Receptors                                                                                                                                                                                                         Peptide Ligand Binding Receptors
## Circadian Clock                                                                                                                                                                                                                                           Circadian Clock
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                               Regulation Of Tnfr1 Signaling
## Interleukin 17 Signaling                                                                                                                                                                                                                         Interleukin 17 Signaling
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                         Nod1 2 Signaling Pathway
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                 Pi3k Akt Signaling In Cancer
## Ca Dependent Events                                                                                                                                                                                                                                   Ca Dependent Events
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                     Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                 Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Generation Of Second Messenger Molecules                                                                                                                                                                                         Generation Of Second Messenger Molecules
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                             Senescence Associated Secretory Phenotype Sasp
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                       Constitutive Signaling By Aberrant Pi3k In Cancer
## Dag And Ip3 Signaling                                                                                                                                                                                                                               Dag And Ip3 Signaling
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                   Negative Regulation Of The Pi3k Akt Network
## Transcriptional Regulation By Ventx                                                                                                                                                                                                   Transcriptional Regulation By Ventx
## Signaling By Scf Kit                                                                                                                                                                                                                                 Signaling By Scf Kit
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                             Sumoylation Of Transcription Cofactors
## Tnf Signaling                                                                                                                                                                                                                                               Tnf Signaling
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                     Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Dap12 Interactions                                                                                                                                                                                                                                     Dap12 Interactions
## Interleukin 12 Signaling                                                                                                                                                                                                                         Interleukin 12 Signaling
## Toll Like Receptor Cascades                                                                                                                                                                                                                   Toll Like Receptor Cascades
## Heme Signaling                                                                                                                                                                                                                                             Heme Signaling
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                           Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Signaling By Egfr                                                                                                                                                                                                                                       Signaling By Egfr
## Signaling By Erbb2                                                                                                                                                                                                                                     Signaling By Erbb2
## Signaling By Notch3                                                                                                                                                                                                                                   Signaling By Notch3
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                             Eph Ephrin Mediated Repulsion Of Cells
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                       Toll Like Receptor 9 Tlr9 Cascade
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                             Fcgr3a Mediated Il10 Synthesis
## G Protein Mediated Events                                                                                                                                                                                                                       G Protein Mediated Events
## Signaling By Ptk6                                                                                                                                                                                                                                       Signaling By Ptk6
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                             Transcriptional Activation Of Mitochondrial Biogenesis
## Interleukin 12 Family Signaling                                                                                                                                                                                                           Interleukin 12 Family Signaling
## Interleukin 1 Family Signaling                                                                                                                                                                                                             Interleukin 1 Family Signaling
## Signaling By Erbb4                                                                                                                                                                                                                                     Signaling By Erbb4
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                 Assembly Of Collagen Fibrils And Other Multimeric Structures
## Ca2 Pathway                                                                                                                                                                                                                                                   Ca2 Pathway
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                   Cargo Recognition For Clathrin Mediated Endocytosis
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         O Linked Glycosylation Of Mucins
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 Toll Like Receptor Tlr1 Tlr2 Cascade
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Dna Repair Genes
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                           Asymmetric Localization Of Pcp Proteins
## Collagen Degradation                                                                                                                                                                                                                                 Collagen Degradation
## Dna Methylation                                                                                                                                                                                                                                           Dna Methylation
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                               Ncam Signaling For Neurite Out Growth
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                           Synthesis Of Substrates In N Glycan Biosythesis
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                   Transcriptional Regulation By Mecp2
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With O Glycosylation Of Proteins
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                 Plasma Lipoprotein Assembly Remodeling And Clearance
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                         Prc2 Methylates Histones And Dna
## Signaling By Interleukins                                                                                                                                                                                                                       Signaling By Interleukins
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                             Signaling By Tgf Beta Receptor Complex
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                     Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Ecm Proteoglycans                                                                                                                                                                                                                                       Ecm Proteoglycans
## Rmts Methylate Histone Arginines                                                                                                                                                                                                         Rmts Methylate Histone Arginines
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                           Adora2b Mediated Anti Inflammatory Cytokines Production
## G Alpha I Signalling Events                                                                                                                                                                                                                   G Alpha I Signalling Events
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                 C Type Lectin Receptors Clrs
## Collagen Formation                                                                                                                                                                                                                                     Collagen Formation
## Esr Mediated Signaling                                                                                                                                                                                                                             Esr Mediated Signaling
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             Fceri Mediated Mapk Activation
## Hcmv Early Events                                                                                                                                                                                                                                       Hcmv Early Events
## Opioid Signalling                                                                                                                                                                                                                                       Opioid Signalling
## Signaling By Ntrks                                                                                                                                                                                                                                     Signaling By Ntrks
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                 Transcriptional Regulation Of Granulopoiesis
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                 Activation Of Nmda Receptors And Postsynaptic Events
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                   Class B 2 Secretin Family Receptors
## Clathrin Mediated Endocytosis                                                                                                                                                                                                               Clathrin Mediated Endocytosis
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                       Clec7a Dectin 1 Signaling
## Eph Ephrin Signaling                                                                                                                                                                                                                                 Eph Ephrin Signaling
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                         Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Interferon Gamma Signaling                                                                                                                                                                                                                     Interferon Gamma Signaling
## Leishmania Infection                                                                                                                                                                                                                                 Leishmania Infection
## Mitochondrial Biogenesis                                                                                                                                                                                                                         Mitochondrial Biogenesis
## Pcp Ce Pathway                                                                                                                                                                                                                                             Pcp Ce Pathway
## Unfolded Protein Response Upr                                                                                                                                                                                                               Unfolded Protein Response Upr
## Amyloid Fiber Formation                                                                                                                                                                                                                           Amyloid Fiber Formation
## Cellular Senescence                                                                                                                                                                                                                                   Cellular Senescence
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       Diseases Of Programmed Cell Death
## Hcmv Infection                                                                                                                                                                                                                                             Hcmv Infection
## Interleukin 1 Signaling                                                                                                                                                                                                                           Interleukin 1 Signaling
## O Linked Glycosylation                                                                                                                                                                                                                             O Linked Glycosylation
## Programmed Cell Death                                                                                                                                                                                                                               Programmed Cell Death
## Signaling By Tgfb Family Members                                                                                                                                                                                                         Signaling By Tgfb Family Members
## Stimuli Sensing Channels                                                                                                                                                                                                                         Stimuli Sensing Channels
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                     Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                             Cell Surface Interactions At The Vascular Wall
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                     Class A 1 Rhodopsin Like Receptors
## Cytokine Signaling In Immune System                                                                                                                                                                                                   Cytokine Signaling In Immune System
## Death Receptor Signalling                                                                                                                                                                                                                       Death Receptor Signalling
## Degradation Of The Extracellular Matrix                                                                                                                                                                                           Degradation Of The Extracellular Matrix
## L1cam Interactions                                                                                                                                                                                                                                     L1cam Interactions
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                       Mhc Class Ii Antigen Presentation
## Oxidative Stress Induced Senescence                                                                                                                                                                                                   Oxidative Stress Induced Senescence
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                   Response To Elevated Platelet Cytosolic Ca2
## Sumoylation                                                                                                                                                                                                                                                   Sumoylation
## Tcr Signaling                                                                                                                                                                                                                                               Tcr Signaling
## 2 Ltr Circle Formation                                                                                                                                                                                                                             2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                           A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism                                                                                                                                                                                                                                   Abacavir Metabolism
## Abacavir Transmembrane Transport                                                                                                                                                                                                         Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism                                                                                                                                                                                                       Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport                                                                                                                                                                                             Abc Family Proteins Mediated Transport
## Abc Transporter Disorders                                                                                                                                                                                                                       Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                               Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                         Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                   Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                               Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                   Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                             Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                 Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                       Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                   Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                         Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                               Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                   Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                               Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                   Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                           Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                 Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                   Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                   Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                           Activation Of Bh3 Only Proteins
## Activation Of C3 And C5                                                                                                                                                                                                                           Activation Of C3 And C5
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                   Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                 Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                 Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                             Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                       Activation Of Nima Kinases Nek9 Nek6 Nek7
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                 Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                 Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                 Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1                                                                                                                                                                                                                                     Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                           Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells                                                                                                                                                                                                                 Activation Of Ras In B Cells
## Activation Of Smo                                                                                                                                                                                                                                       Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                               Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade                                                                                                                                                                                   Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex                                                                                                                                                                                       Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                 Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors                                                                                                                                                                                                                 Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                 Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                 Acyl Chain Remodelling Of Ps
## Adaptive Immune System                                                                                                                                                                                                                             Adaptive Immune System
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                 Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                 Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions                                                                                                                                                                                                           Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                       Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                     Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                   Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors                                                                                                                                                                                                                                               Adrenoceptors
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                 Advanced Glycosylation Endproduct Receptor Signaling
## Aflatoxin Activation And Detoxification                                                                                                                                                                                           Aflatoxin Activation And Detoxification
## Aggrephagy                                                                                                                                                                                                                                                     Aggrephagy
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                       Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins                                                                                                                                                                                                                                           Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                     Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                 Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                         Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation                                                                                                                                                                                                       Alternative Complement Activation
## Amine Ligand Binding Receptors                                                                                                                                                                                                             Amine Ligand Binding Receptors
## Amino Acid Conjugation                                                                                                                                                                                                                             Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                           Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                         Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation                                                                                                                                                                                                                     Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                     Anchoring Of The Basal Body To The Plasma Membrane
## Androgen Biosynthesis                                                                                                                                                                                                                               Androgen Biosynthesis
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                         Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                         Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Antigen Processing Cross Presentation                                                                                                                                                                                               Antigen Processing Cross Presentation
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                         Antigen Processing Ubiquitination Proteasome Degradation
## Antimicrobial Peptides                                                                                                                                                                                                                             Antimicrobial Peptides
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                   Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                 Apc C Cdc20 Mediated Degradation Of Cyclin B
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                         Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                       Apc C Mediated Degradation Of Cell Cycle Proteins
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                           Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                             Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                           Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis                                                                                                                                                                                                                                                       Apoptosis
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                   Apoptosis Induced Dna Fragmentation
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                 Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                           Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Execution Phase                                                                                                                                                                                                                       Apoptotic Execution Phase
## Apoptotic Factor Mediated Response                                                                                                                                                                                                     Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport                                                                                                                                                                                                                 Aquaporin Mediated Transport
## Arachidonate Production From Dag                                                                                                                                                                                                         Arachidonate Production From Dag
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   Arachidonic Acid Metabolism
## Arms Mediated Activation                                                                                                                                                                                                                         Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                 Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation                                                                                                                                                                                                       Asparagine N Linked Glycosylation
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                   Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                         Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                         Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion                                                                                                                                                                                                                     Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                         Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                           Assembly Of The Pre Replicative Complex
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                         Association Of Tric Cct With Target Proteins During Biosynthesis
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                       Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                 Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry                                                                                                                                                                                                                                 Attachment And Entry
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                         Attachment Of Gpi Anchor To Upar
## Attenuation Phase                                                                                                                                                                                                                                       Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                       Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Aurka Activation By Tpx2                                                                                                                                                                                                                         Aurka Activation By Tpx2
## Autophagy                                                                                                                                                                                                                                                       Autophagy
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                   B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair                                                                                                                                                                                                                                 Base Excision Repair
## Base Excision Repair Ap Site Formation                                                                                                                                                                                             Base Excision Repair Ap Site Formation
## Basigin Interactions                                                                                                                                                                                                                                 Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                       Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                             Beta Catenin Independent Wnt Signaling
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                 Beta Catenin Phosphorylation Cascade
## Beta Defensins                                                                                                                                                                                                                                             Beta Defensins
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                 Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                     Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                             Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                       Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                             Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                         Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                               Beta Oxidation Of Very Long Chain Fatty Acids
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                 Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Bicarbonate Transporters                                                                                                                                                                                                                         Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                     Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                 Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                     Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations                                                                                                                                                                                                                               Biological Oxidations
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                         Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                       Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins                                                                                                                                                                                                                         Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                           Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism                                                                                                                                                                                                           Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis                                                                                                                                                                                                         Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                 Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                 Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                   Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                 Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels                                                                                                                                                                                                                         Ca2 Activated K Channels
## Calcineurin Activates Nfat                                                                                                                                                                                                                     Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                         Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                   Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction                                                                                                                                                                                                                                     Cardiac Conduction
## Cargo Concentration In The Er                                                                                                                                                                                                               Cargo Concentration In The Er
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                               Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism                                                                                                                                                                                                                                 Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                         Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                 Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                               Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                     Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                             Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                           Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                 Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                     Cdc42 Gtpase Cycle
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                 Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication                                                                                                                                                                                                                           Cell Cell Communication
## Cell Cell Junction Organization                                                                                                                                                                                                           Cell Cell Junction Organization
## Cell Cycle                                                                                                                                                                                                                                                     Cell Cycle
## Cell Cycle Checkpoints                                                                                                                                                                                                                             Cell Cycle Checkpoints
## Cell Cycle Mitotic                                                                                                                                                                                                                                     Cell Cycle Mitotic
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                               Cell Death Signalling Via Nrage Nrif And Nade
## Cell Extracellular Matrix Interactions                                                                                                                                                                                             Cell Extracellular Matrix Interactions
## Cell Junction Organization                                                                                                                                                                                                                     Cell Junction Organization
## Cellular Hexose Transport                                                                                                                                                                                                                       Cellular Hexose Transport
## Cellular Response To Chemical Stress                                                                                                                                                                                                 Cellular Response To Chemical Stress
## Cellular Response To Heat Stress                                                                                                                                                                                                         Cellular Response To Heat Stress
## Cellular Response To Hypoxia                                                                                                                                                                                                                 Cellular Response To Hypoxia
## Cellular Response To Starvation                                                                                                                                                                                                           Cellular Response To Starvation
## Cellular Responses To External Stimuli                                                                                                                                                                                             Cellular Responses To External Stimuli
## Cgmp Effects                                                                                                                                                                                                                                                 Cgmp Effects
## Chaperone Mediated Autophagy                                                                                                                                                                                                                 Chaperone Mediated Autophagy
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                               Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Chl1 Interactions                                                                                                                                                                                                                                       Chl1 Interactions
## Cholesterol Biosynthesis                                                                                                                                                                                                                         Cholesterol Biosynthesis
## Choline Catabolism                                                                                                                                                                                                                                     Choline Catabolism
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                         Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                           Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                     Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes                                                                                                                                                                                                                   Chromatin Modifying Enzymes
## Chromosome Maintenance                                                                                                                                                                                                                             Chromosome Maintenance
## Chylomicron Assembly                                                                                                                                                                                                                                 Chylomicron Assembly
## Chylomicron Clearance                                                                                                                                                                                                                               Chylomicron Clearance
## Chylomicron Remodeling                                                                                                                                                                                                                             Chylomicron Remodeling
## Cilium Assembly                                                                                                                                                                                                                                           Cilium Assembly
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                 Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                 Class I Mhc Mediated Antigen Processing Presentation
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                   Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                           Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                     Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis                                                                                                                                                                                                                           Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                             Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                   Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization                                                                                                                                                                                                                 Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                           Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                     Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complement Cascade                                                                                                                                                                                                                                     Complement Cascade
## Complex I Biogenesis                                                                                                                                                                                                                                 Complex I Biogenesis
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                         Condensation Of Prometaphase Chromosomes
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                 Condensation Of Prophase Chromosomes
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                 Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                               Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                     Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                         Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                     Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                               Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                           Copi Independent Golgi To Er Retrograde Traffic
## Copi Mediated Anterograde Transport                                                                                                                                                                                                   Copi Mediated Anterograde Transport
## Copii Mediated Vesicle Transport                                                                                                                                                                                                         Copii Mediated Vesicle Transport
## Creatine Metabolism                                                                                                                                                                                                                                   Creatine Metabolism
## Creation Of C4 And C2 Activators                                                                                                                                                                                                         Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes                                                                                                                                                                                                                 Creb3 Factors Activate Genes
## Cristae Formation                                                                                                                                                                                                                                       Cristae Formation
## Crmps In Sema3a Signaling                                                                                                                                                                                                                       Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                           Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                     Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                         Crosslinking Of Collagen Fibrils
## Cs Ds Degradation                                                                                                                                                                                                                                       Cs Ds Degradation
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                           Cyclin A B1 B2 Associated Events During G2 M Transition
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                         Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1                                                                                                                                                                                                         Cyclin D Associated Events In G1
## Cyp2e1 Reactions                                                                                                                                                                                                                                         Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                         Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                     Cytochrome P450 Arranged By Substrate Type
## Cytoprotection By Hmox1                                                                                                                                                                                                                           Cytoprotection By Hmox1
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                             Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                         Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                               Cytosolic Trna Aminoacylation
## Dap12 Signaling                                                                                                                                                                                                                                           Dap12 Signaling
## Darpp 32 Events                                                                                                                                                                                                                                           Darpp 32 Events
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                       Dcc Mediated Attractive Signaling
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                           Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                         Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                     Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna                                                                                                                                                                                                                               Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                             Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                   Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                   Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                               Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                 Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                               Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                               Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                       Defective Ext2 Causes Exostoses 2
## Defective F9 Activation                                                                                                                                                                                                                           Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                           Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                       Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                   Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                       Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                         Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                   Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                     Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                         Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Defensins                                                                                                                                                                                                                                                       Defensins
## Degradation Of Axin                                                                                                                                                                                                                                   Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                             Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                         Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl                                                                                                                                                                                                                                     Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                               Degradation Of Gli1 By The Proteasome
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                             Depolymerisation Of The Nuclear Lamina
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                         Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                   Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                               Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                       Detoxification Of Reactive Oxygen Species
## Deubiquitination                                                                                                                                                                                                                                         Deubiquitination
## Developmental Biology                                                                                                                                                                                                                               Developmental Biology
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                               Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion                                                                                                                                                                                                                                                       Digestion
## Digestion And Absorption                                                                                                                                                                                                                         Digestion And Absorption
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                       Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid                                                                                                                                                                                                                     Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                             Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                               Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                               Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                             Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair                                                                                                                                                                                                         Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                   Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair                                                                                                                                                                                                                             Diseases Of Dna Repair
## Diseases Of Glycosylation                                                                                                                                                                                                                       Diseases Of Glycosylation
## Diseases Of Metabolism                                                                                                                                                                                                                             Diseases Of Metabolism
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                           Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                             Diseases Of Mitotic Cell Cycle
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                         Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Disinhibition Of Snare Formation                                                                                                                                                                                                         Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters                                                                                                                                                                                           Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                         Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass                                                                                                                                                                                                                                       Dna Damage Bypass
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                         Dna Damage Recognition In Gg Ner
## Dna Damage Reversal                                                                                                                                                                                                                                   Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                               Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair                                                                                                                                                                                                             Dna Double Strand Break Repair
## Dna Double Strand Break Response                                                                                                                                                                                                         Dna Double Strand Break Response
## Dna Repair                                                                                                                                                                                                                                                     Dna Repair
## Dna Replication                                                                                                                                                                                                                                           Dna Replication
## Dna Replication Initiation                                                                                                                                                                                                                     Dna Replication Initiation
## Dna Replication Pre Initiation                                                                                                                                                                                                             Dna Replication Pre Initiation
## Dna Strand Elongation                                                                                                                                                                                                                               Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                           Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors                                                                                                                                                                                                                                     Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                           Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                       Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                         Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                               Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signal Transduction                                                                                                                                                                                                             Downstream Signal Transduction
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                     Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr4
## Dscam Interactions                                                                                                                                                                                                                                     Dscam Interactions
## Dual Incision In Gg Ner                                                                                                                                                                                                                           Dual Incision In Gg Ner
## Dual Incision In Tc Ner                                                                                                                                                                                                                           Dual Incision In Tc Ner
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                   E2f Enabled Inhibition Of Pre Replication Complex Formation
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                     E2f Mediated Regulation Of Dna Replication
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                       E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                               Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                     Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                             Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                   Eicosanoid Ligand Binding Receptors
## Eicosanoids                                                                                                                                                                                                                                                   Eicosanoids
## Elastic Fibre Formation                                                                                                                                                                                                                           Elastic Fibre Formation
## Electric Transmission Across Gap Junctions                                                                                                                                                                                     Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                       Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols                                                                                                                                                                                                                                     Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                             Endosomal Sorting Complex Required For Transport Escrt
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                     Endosomal Vacuolar Pathway
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                         Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation                                                                                                                                                                                                                                           Enos Activation
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                     Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling                                                                                                                                                                                                           Ephb Mediated Forward Signaling
## Ephrin Signaling                                                                                                                                                                                                                                         Ephrin Signaling
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                         Epigenetic Regulation Of Gene Expression
## Er Quality Control Compartment Erqc                                                                                                                                                                                                   Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport                                                                                                                                                                                                       Er To Golgi Anterograde Transport
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                   Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets                                                                                                                                                                                                                                         Erk Mapk Targets
## Erks Are Inactivated                                                                                                                                                                                                                                 Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                             Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                             Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                           Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                   Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras                                                                                                                                                                                                                 Erythropoietin Activates Ras
## Erythropoietin Activates Stat5                                                                                                                                                                                                             Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                     Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis                                                                                                                                                                                                                               Estrogen Biosynthesis
## Estrogen Dependent Gene Expression                                                                                                                                                                                                     Estrogen Dependent Gene Expression
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                   Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation                                                                                                                                                                                                                                       Ethanol Oxidation
## Eukaryotic Translation Elongation                                                                                                                                                                                                       Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation                                                                                                                                                                                                       Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                           Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres                                                                                                                                                                                                                             Extension Of Telomeres
## Extracellular Matrix Organization                                                                                                                                                                                                       Extracellular Matrix Organization
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                               Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway                                                                                                                                                                                                                             Fanconi Anemia Pathway
## Fasl Cd95l Signaling                                                                                                                                                                                                                                 Fasl Cd95l Signaling
## Fatty Acid Metabolism                                                                                                                                                                                                                               Fatty Acid Metabolism
## Fatty Acids                                                                                                                                                                                                                                                   Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                   Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                     Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                   Fc Epsilon Receptor Fceri Signaling
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                         Fceri Mediated Ca 2 Mobilization
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                           Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                 Fcgamma Receptor Fcgr Dependent Phagocytosis
## Fcgr Activation                                                                                                                                                                                                                                           Fcgr Activation
## Fertilization                                                                                                                                                                                                                                               Fertilization
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr1 Ligand Binding And Activation
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr1 Mutant Receptor Activation
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                     Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                 Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                             Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling                                                                                                                                                                                                                                             Flt3 Signaling
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                               Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease                                                                                                                                                                                                                       Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                       Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                 Folding Of Actin By Cct Tric
## Formation Of Apoptosome                                                                                                                                                                                                                           Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                       Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                       Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                           Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                     Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                 Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                         Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                       Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope                                                                                                                                                                                                   Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex                                                                                                                                                                                       Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                             Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                       Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                 Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription                                                                                                                                                                                                                   Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                 Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors                                                                                                                                                                                                                       Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                   Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr4 Signaling
## Fructose Catabolism                                                                                                                                                                                                                                   Fructose Catabolism
## Fructose Metabolism                                                                                                                                                                                                                                   Fructose Metabolism
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                           G Alpha 12 13 Signalling Events
## G Alpha Q Signalling Events                                                                                                                                                                                                                   G Alpha Q Signalling Events
## G Alpha S Signalling Events                                                                                                                                                                                                                   G Alpha S Signalling Events
## G Alpha Z Signalling Events                                                                                                                                                                                                                   G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                               G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                       G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation                                                                                                                                                                                                                                 G Protein Activation
## G Protein Beta Gamma Signalling                                                                                                                                                                                                           G Protein Beta Gamma Signalling
## G0 And Early G1                                                                                                                                                                                                                                           G0 And Early G1
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   G1 S Dna Damage Checkpoints
## G1 S Specific Transcription                                                                                                                                                                                                                   G1 S Specific Transcription
## G2 M Checkpoints                                                                                                                                                                                                                                         G2 M Checkpoints
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                     G2 M Dna Damage Checkpoint
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                           G2 M Dna Replication Checkpoint
## G2 Phase                                                                                                                                                                                                                                                         G2 Phase
## Gaba B Receptor Activation                                                                                                                                                                                                                     Gaba B Receptor Activation
## Gaba Receptor Activation                                                                                                                                                                                                                         Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                           Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism                                                                                                                                                                                                                                 Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                   Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                               Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                           Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly                                                                                                                                                                                                                               Gap Junction Assembly
## Gap Junction Degradation                                                                                                                                                                                                                         Gap Junction Degradation
## Gap Junction Trafficking And Regulation                                                                                                                                                                                           Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                           Gdp Fucose Biosynthesis
## Gene Silencing By Rna                                                                                                                                                                                                                               Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                   Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                           Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                         Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                     Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors                                                                                                                                                                                                             Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   Glucocorticoid Biosynthesis
## Gluconeogenesis                                                                                                                                                                                                                                           Gluconeogenesis
## Glucose Metabolism                                                                                                                                                                                                                                     Glucose Metabolism
## Glucuronidation                                                                                                                                                                                                                                           Glucuronidation
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                     Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                         Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation                                                                                                                                                                                                                           Glutathione Conjugation
## Glutathione Synthesis And Recycling                                                                                                                                                                                                   Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                         Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism                                                                                                                                                                                                             Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                       Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism                                                                                                                                                                                                                                   Glycogen Metabolism
## Glycogen Storage Diseases                                                                                                                                                                                                                       Glycogen Storage Diseases
## Glycogen Synthesis                                                                                                                                                                                                                                     Glycogen Synthesis
## Glycolysis                                                                                                                                                                                                                                                     Glycolysis
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                 Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism                                                                                                                                                                                                                 Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                               Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                   Golgi Associated Vesicle Biogenesis
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                   Golgi Cisternae Pericentriolar Stack Reorganization
## Golgi To Er Retrograde Transport                                                                                                                                                                                                         Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                           Gp1b Ix V Activation Signalling
## Gpcr Ligand Binding                                                                                                                                                                                                                                   Gpcr Ligand Binding
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                         Gpvi Mediated Activation Cascade
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                       Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb7 Events In Erbb2 Signaling
## Growth Hormone Receptor Signaling                                                                                                                                                                                                       Growth Hormone Receptor Signaling
## Hats Acetylate Histones                                                                                                                                                                                                                           Hats Acetylate Histones
## Hcmv Late Events                                                                                                                                                                                                                                         Hcmv Late Events
## Hdacs Deacetylate Histones                                                                                                                                                                                                                     Hdacs Deacetylate Histones
## Hdl Assembly                                                                                                                                                                                                                                                 Hdl Assembly
## Hdl Clearance                                                                                                                                                                                                                                               Hdl Clearance
## Hdl Remodeling                                                                                                                                                                                                                                             Hdl Remodeling
## Hdms Demethylate Histones                                                                                                                                                                                                                       Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                         Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                       Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                           Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                     Hedgehog Ligand Biogenesis
## Hedgehog Off State                                                                                                                                                                                                                                     Hedgehog Off State
## Hedgehog On State                                                                                                                                                                                                                                       Hedgehog On State
## Heme Biosynthesis                                                                                                                                                                                                                                       Heme Biosynthesis
## Heme Degradation                                                                                                                                                                                                                                         Heme Degradation
## Hemostasis                                                                                                                                                                                                                                                     Hemostasis
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                       Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                     Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                           Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                             Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism                                                                                                                                                                                                                                 Histidine Catabolism
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                     Hiv Elongation Arrest And Recovery
## Hiv Infection                                                                                                                                                                                                                                               Hiv Infection
## Hiv Life Cycle                                                                                                                                                                                                                                             Hiv Life Cycle
## Hiv Transcription Elongation                                                                                                                                                                                                                 Hiv Transcription Elongation
## Hiv Transcription Initiation                                                                                                                                                                                                                 Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                     Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair                                                                                                                                                                                                                         Homology Directed Repair
## Hormone Ligand Binding Receptors                                                                                                                                                                                                         Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors                                                                                                                                                                                                         Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis                                                                                                                                                                                                                                   Hs Gag Biosynthesis
## Hs Gag Degradation                                                                                                                                                                                                                                     Hs Gag Degradation
## Hsf1 Activation                                                                                                                                                                                                                                           Hsf1 Activation
## Hsf1 Dependent Transactivation                                                                                                                                                                                                             Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                           Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                 Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                     Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism                                                                                                                                                                                                                               Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                       Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc                                                                                                                                                                                                                                       Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                 Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                           Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                             Inactivation Of Cdc42 And Rac1
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                 Inactivation Of Csf3 G Csf Signaling
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                               Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                       Infection With Mycobacterium Tuberculosis
## Infectious Disease                                                                                                                                                                                                                                     Infectious Disease
## Influenza Infection                                                                                                                                                                                                                                   Influenza Infection
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                   Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                           Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                   Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Initial Triggering Of Complement                                                                                                                                                                                                         Initial Triggering Of Complement
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                               Initiation Of Nuclear Envelope Ne Reformation
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                               Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                 Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System                                                                                                                                                                                                                                 Innate Immune System
## Inositol Phosphate Metabolism                                                                                                                                                                                                               Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                   Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing                                                                                                                                                                                                                                     Insulin Processing
## Insulin Receptor Recycling                                                                                                                                                                                                                     Insulin Receptor Recycling
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                   Insulin Receptor Signalling Cascade
## Integration Of Energy Metabolism                                                                                                                                                                                                         Integration Of Energy Metabolism
## Integration Of Provirus                                                                                                                                                                                                                           Integration Of Provirus
## Integrin Cell Surface Interactions                                                                                                                                                                                                     Integrin Cell Surface Interactions
## Integrin Signaling                                                                                                                                                                                                                                     Integrin Signaling
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                   Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                               Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                           Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                           Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                     Interconversion Of Nucleotide Di And Triphosphates
## Interferon Alpha Beta Signaling                                                                                                                                                                                                           Interferon Alpha Beta Signaling
## Interferon Signaling                                                                                                                                                                                                                                 Interferon Signaling
## Interleukin 15 Signaling                                                                                                                                                                                                                         Interleukin 15 Signaling
## Interleukin 2 Family Signaling                                                                                                                                                                                                             Interleukin 2 Family Signaling
## Interleukin 2 Signaling                                                                                                                                                                                                                           Interleukin 2 Signaling
## Interleukin 20 Family Signaling                                                                                                                                                                                                           Interleukin 20 Family Signaling
## Interleukin 21 Signaling                                                                                                                                                                                                                         Interleukin 21 Signaling
## Interleukin 23 Signaling                                                                                                                                                                                                                         Interleukin 23 Signaling
## Interleukin 27 Signaling                                                                                                                                                                                                                         Interleukin 27 Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                         Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Interleukin 35 Signalling                                                                                                                                                                                                                       Interleukin 35 Signalling
## Interleukin 36 Pathway                                                                                                                                                                                                                             Interleukin 36 Pathway
## Interleukin 37 Signaling                                                                                                                                                                                                                         Interleukin 37 Signaling
## Interleukin 7 Signaling                                                                                                                                                                                                                           Interleukin 7 Signaling
## Interleukin 9 Signaling                                                                                                                                                                                                                           Interleukin 9 Signaling
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                     Interleukin Receptor Shc Signaling
## Intestinal Absorption                                                                                                                                                                                                                               Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                             Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic                                                                                                                                                                                                                                   Intra Golgi Traffic
## Intracellular Signaling By Second Messengers                                                                                                                                                                                 Intracellular Signaling By Second Messengers
## Intraflagellar Transport                                                                                                                                                                                                                         Intraflagellar Transport
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                           Intrinsic Pathway For Apoptosis
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels                                                                                                                                                                                                             Inwardly Rectifying K Channels
## Ion Channel Transport                                                                                                                                                                                                                               Ion Channel Transport
## Ion Homeostasis                                                                                                                                                                                                                                           Ion Homeostasis
## Ion Transport By P Type Atpases                                                                                                                                                                                                           Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                         Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                     Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                       Irak2 Mediated Activation Of Tak1 Complex
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                           Irak4 Deficiency Tlr2 4
## Ire1alpha Activates Chaperones                                                                                                                                                                                                             Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                             Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport                                                                                                                                                                                                                       Iron Uptake And Transport
## Irs Activation                                                                                                                                                                                                                                             Irs Activation
## Irs Mediated Signalling                                                                                                                                                                                                                           Irs Mediated Signalling
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                       Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs                                                                                                                                                                                                                                 Josephin Domain Dubs
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                 Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation                                                                                                                                                                                                                   Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                     Keratan Sulfate Keratin Metabolism
## Keratinization                                                                                                                                                                                                                                             Keratinization
## Ketone Body Metabolism                                                                                                                                                                                                                             Ketone Body Metabolism
## Kinesins                                                                                                                                                                                                                                                         Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                             Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis                                                                                                                                                                                                                         Lagging Strand Synthesis
## Laminin Interactions                                                                                                                                                                                                                                 Laminin Interactions
## Late Endosomal Microautophagy                                                                                                                                                                                                               Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation                                                                                                                                                                                           Lectin Pathway Of Complement Activation
## Leukotriene Receptors                                                                                                                                                                                                                               Leukotriene Receptors
## Lgi Adam Interactions                                                                                                                                                                                                                               Lgi Adam Interactions
## Ligand Receptor Interactions                                                                                                                                                                                                                 Ligand Receptor Interactions
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   Linoleic Acid La Metabolism
## Lipid Particle Organization                                                                                                                                                                                                                   Lipid Particle Organization
## Lipophagy                                                                                                                                                                                                                                                       Lipophagy
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                 Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation                                                                                                                                                                                                                             Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                     Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                               Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                             Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                             Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                   Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism                                                                                                                                                                                                                                       Lysine Catabolism
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                     Lysosphingolipid And Lpa Receptors
## M Phase                                                                                                                                                                                                                                                           M Phase
## Map2k And Mapk Activation                                                                                                                                                                                                                       Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                         Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades                                                                                                                                                                                                             Mapk Family Signaling Cascades
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                               Mapk6 Mapk4 Signaling
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                               Mastl Facilitates Mitotic Progression
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   Maturation Of Nucleoprotein
## Maturation Of Protein 3a                                                                                                                                                                                                                         Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 2 Spike Protein
## Meiosis                                                                                                                                                                                                                                                           Meiosis
## Meiotic Recombination                                                                                                                                                                                                                               Meiotic Recombination
## Meiotic Synapsis                                                                                                                                                                                                                                         Meiotic Synapsis
## Melanin Biosynthesis                                                                                                                                                                                                                                 Melanin Biosynthesis
## Membrane Trafficking                                                                                                                                                                                                                                 Membrane Trafficking
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                         Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                 Met Activates Ptk2 Signaling
## Met Activates Ptpn11                                                                                                                                                                                                                                 Met Activates Ptpn11
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   Met Activates Rap1 And Rac1
## Met Activates Ras Signaling                                                                                                                                                                                                                   Met Activates Ras Signaling
## Met Interacts With Tns Proteins                                                                                                                                                                                                           Met Interacts With Tns Proteins
## Met Promotes Cell Motility                                                                                                                                                                                                                     Met Promotes Cell Motility
## Met Receptor Activation                                                                                                                                                                                                                           Met Receptor Activation
## Met Receptor Recycling                                                                                                                                                                                                                             Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                   Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                 Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                       Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                               Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   Metabolism Of Carbohydrates
## Metabolism Of Cofactors                                                                                                                                                                                                                           Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                     Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines                                                                                                                                                                                                       Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                         Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids                                                                                                                                                                                                                                 Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                       Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides                                                                                                                                                                                                                       Metabolism Of Nucleotides
## Metabolism Of Polyamines                                                                                                                                                                                                                         Metabolism Of Polyamines
## Metabolism Of Porphyrins                                                                                                                                                                                                                         Metabolism Of Porphyrins
## Metabolism Of Rna                                                                                                                                                                                                                                       Metabolism Of Rna
## Metabolism Of Steroid Hormones                                                                                                                                                                                                             Metabolism Of Steroid Hormones
## Metabolism Of Steroids                                                                                                                                                                                                                             Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                 Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                     Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters                                                                                                                                                                                                                     Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                               Metal Sequestration By Antimicrobial Proteins
## Metalloprotease Dubs                                                                                                                                                                                                                                 Metalloprotease Dubs
## Metallothioneins Bind Metals                                                                                                                                                                                                                 Metallothioneins Bind Metals
## Methionine Salvage Pathway                                                                                                                                                                                                                     Methionine Salvage Pathway
## Methylation                                                                                                                                                                                                                                                   Methylation
## Microrna Mirna Biogenesis                                                                                                                                                                                                                       Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                             Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle                                                                                                                                                                                                                                       Miro Gtpase Cycle
## Miscellaneous Substrates                                                                                                                                                                                                                         Miscellaneous Substrates
## Miscellaneous Transport And Binding Events                                                                                                                                                                                     Miscellaneous Transport And Binding Events
## Mismatch Repair                                                                                                                                                                                                                                           Mismatch Repair
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                   Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                           Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                         Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                     Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                 Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import                                                                                                                                                                                                                 Mitochondrial Protein Import
## Mitochondrial Translation                                                                                                                                                                                                                       Mitochondrial Translation
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                       Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling                                                                                                                                                                                                                         Mitochondrial Uncoupling
## Mitophagy                                                                                                                                                                                                                                                       Mitophagy
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                 Mitotic G1 Phase And G1 S Transition
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                             Mitotic G2 G2 M Phases
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                             Mitotic Metaphase And Anaphase
## Mitotic Prometaphase                                                                                                                                                                                                                                 Mitotic Prometaphase
## Mitotic Prophase                                                                                                                                                                                                                                         Mitotic Prophase
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                     Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                               Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                           Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres                                                                                                                                                                                         Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                         Molybdenum Cofactor Biosynthesis
## Mrna Capping                                                                                                                                                                                                                                                 Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing                                                                                                                                                                                                                                                 Mrna Editing
## Mrna Editing C To U Conversion                                                                                                                                                                                                             Mrna Editing C To U Conversion
## Mrna Splicing                                                                                                                                                                                                                                               Mrna Splicing
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   Mrna Splicing Minor Pathway
## Mtor Signalling                                                                                                                                                                                                                                           Mtor Signalling
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                     Mtorc1 Mediated Signalling
## Mucopolysaccharidoses                                                                                                                                                                                                                               Mucopolysaccharidoses
## Multifunctional Anion Exchangers                                                                                                                                                                                                         Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                     Muscarinic Acetylcholine Receptors
## Muscle Contraction                                                                                                                                                                                                                                     Muscle Contraction
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                 Myoclonic Epilepsy Of Lafora
## Myogenesis                                                                                                                                                                                                                                                     Myogenesis
## N Glycan Antennae Elongation                                                                                                                                                                                                                 N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                             N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                       N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                   N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                               Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling                                                                                                                                                                                                           Nade Modulates Death Signalling
## Ncam1 Interactions                                                                                                                                                                                                                                     Ncam1 Interactions
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                 Nectin Necl Trans Heterodimerization
## Neddylation                                                                                                                                                                                                                                                   Neddylation
## Nef And Signal Transduction                                                                                                                                                                                                                   Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                     Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                             Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                 Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                     Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3                                                                                                                                                                                                                   Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                   Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity                                                                                                                                                                                                   Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                   Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                           Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                     Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                 Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions                                                                                                                                                                                                                   Nephrin Family Interactions
## Nervous System Development                                                                                                                                                                                                                     Nervous System Development
## Netrin 1 Signaling                                                                                                                                                                                                                                     Netrin 1 Signaling
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                       Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins                                                                                                                                                                                                                       Neurexins And Neuroligins
## Neurofascin Interactions                                                                                                                                                                                                                         Neurofascin Interactions
## Neuronal System                                                                                                                                                                                                                                           Neuronal System
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                   Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance                                                                                                                                                                                                                     Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                           Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Neurotransmitter Release Cycle                                                                                                                                                                                                             Neurotransmitter Release Cycle
## Neutrophil Degranulation                                                                                                                                                                                                                         Neutrophil Degranulation
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                         Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                           Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation                                                                                                                                                                                                           Ngf Independant Trka Activation
## Nicotinamide Salvaging                                                                                                                                                                                                                             Nicotinamide Salvaging
## Nicotinate Metabolism                                                                                                                                                                                                                               Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                       Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                             Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3                                                                                                                                                                                                       Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej                                                                                                                                                                                                             Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                               Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                       Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway                                                                                                                                                                                                           Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                     Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                             Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                     Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                               Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                           Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrage Signals Death Through Jnk                                                                                                                                                                                                           Nrage Signals Death Through Jnk
## Nrcam Interactions                                                                                                                                                                                                                                     Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                         Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                               Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                 Ntrk2 Activates Rac1
## Nuclear Envelope Breakdown                                                                                                                                                                                                                     Nuclear Envelope Breakdown
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                             Nuclear Envelope Ne Reassembly
## Nuclear Import Of Rev Protein                                                                                                                                                                                                               Nuclear Import Of Rev Protein
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                 Nuclear Pore Complex Npc Disassembly
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                             Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                     Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis                                                                                                                                                                                                                           Nucleobase Biosynthesis
## Nucleobase Catabolism                                                                                                                                                                                                                               Nucleobase Catabolism
## Nucleotide Excision Repair                                                                                                                                                                                                                     Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                 Nucleotide Like Purinergic Receptors
## Nucleotide Salvage                                                                                                                                                                                                                                     Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                       O Glycosylation Of Tsr Domain Containing Proteins
## Oas Antiviral Response                                                                                                                                                                                                                             Oas Antiviral Response
## Olfactory Signaling Pathway                                                                                                                                                                                                                   Olfactory Signaling Pathway
## Oncogene Induced Senescence                                                                                                                                                                                                                   Oncogene Induced Senescence
## Oncogenic Mapk Signaling                                                                                                                                                                                                                         Oncogenic Mapk Signaling
## Opsins                                                                                                                                                                                                                                                             Opsins
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                           Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                 Organelle Biogenesis And Maintenance
## Organic Anion Transport                                                                                                                                                                                                                           Organic Anion Transport
## Organic Anion Transporters                                                                                                                                                                                                                     Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                       Organic Cation Anion Zwitterion Transport
## Organic Cation Transport                                                                                                                                                                                                                         Organic Cation Transport
## Other Interleukin Signaling                                                                                                                                                                                                                   Other Interleukin Signaling
## Other Semaphorin Interactions                                                                                                                                                                                                               Other Semaphorin Interactions
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                             Ovarian Tumor Domain Proteases
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                           P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors                                                                                                                                                                                                                                               P2y Receptors
## P38mapk Events                                                                                                                                                                                                                                             P38mapk Events
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                 P75 Ntr Receptor Mediated Signalling
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                             P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                 P75ntr Recruits Signalling Complexes
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                               P75ntr Regulates Axonogenesis
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                         P75ntr Signals Via Nf Kb
## Parasite Infection                                                                                                                                                                                                                                     Parasite Infection
## Passive Transport By Aquaporins                                                                                                                                                                                                           Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                             Pcna Dependent Long Patch Base Excision Repair
## Pecam1 Interactions                                                                                                                                                                                                                                   Pecam1 Interactions
## Pentose Phosphate Pathway                                                                                                                                                                                                                       Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                 Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism                                                                                                                                                                                                                     Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                 Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import                                                                                                                                                                                                                     Peroxisomal Protein Import
## Pexophagy                                                                                                                                                                                                                                                       Pexophagy
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                 Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                         Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase                                                                                                                                                                                                                               Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                 Phase 3 Rapid Repolarisation
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                     Phase 4 Resting Membrane Potential
## Phase I Functionalization Of Compounds                                                                                                                                                                                             Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                       Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                               Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism                                                                                                                                                                                                                         Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                               Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                     Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism                                                                                                                                                                                                                           Phospholipid Metabolism
## Phosphorylation Of Emi1                                                                                                                                                                                                                           Phosphorylation Of Emi1
## Phosphorylation Of The Apc C                                                                                                                                                                                                                 Phosphorylation Of The Apc C
## Physiological Factors                                                                                                                                                                                                                               Physiological Factors
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr4
## Pi Metabolism                                                                                                                                                                                                                                               Pi Metabolism
## Pi3k Akt Activation                                                                                                                                                                                                                                   Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                           Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                               Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                               Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling                                                                                                                                                                                               Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                               Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                           Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                               Plasma Lipoprotein Remodeling
## Platelet Activation Signaling And Aggregation                                                                                                                                                                               Platelet Activation Signaling And Aggregation
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                               Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation                                                                                                                                                                                                   Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis                                                                                                                                                                                                                 Platelet Calcium Homeostasis
## Platelet Homeostasis                                                                                                                                                                                                                                 Platelet Homeostasis
## Platelet Sensitization By Ldl                                                                                                                                                                                                               Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                             Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events                                                                                                                                                                                                         Polo Like Kinase Mediated Events
## Polymerase Switching                                                                                                                                                                                                                                 Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                 Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                           Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                     Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                         Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels                                                                                                                                                                                                                                     Potassium Channels
## Potential Therapeutics For Sars                                                                                                                                                                                                           Potential Therapeutics For Sars
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                             Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                           Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                         Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing                                                                                                                                                                                                   Pre Notch Expression And Processing
## Pre Notch Processing In Golgi                                                                                                                                                                                                               Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                       Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis                                                                                                                                                                                                                       Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                             Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                       Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                       Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo                                                                                                                                                                                                       Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                           Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                         Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                     Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                     Processing Of Intronless Pre Mrnas
## Processing Of Smdt1                                                                                                                                                                                                                                   Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                 Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                     Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling                                                                                                                                                                                                                 Prolactin Receptor Signaling
## Prolonged Erk Activation Events                                                                                                                                                                                                           Prolonged Erk Activation Events
## Propionyl Coa Catabolism                                                                                                                                                                                                                         Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                               Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   Prostanoid Ligand Receptors
## Protein Folding                                                                                                                                                                                                                                           Protein Folding
## Protein Localization                                                                                                                                                                                                                                 Protein Localization
## Protein Methylation                                                                                                                                                                                                                                   Protein Methylation
## Protein Protein Interactions At Synapses                                                                                                                                                                                         Protein Protein Interactions At Synapses
## Protein Repair                                                                                                                                                                                                                                             Protein Repair
## Protein Ubiquitination                                                                                                                                                                                                                             Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                         Proton Coupled Monocarboxylate Transport
## Pten Regulation                                                                                                                                                                                                                                           Pten Regulation
## Ptk6 Expression                                                                                                                                                                                                                                           Ptk6 Expression
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                       Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                     Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                               Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                               Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism                                                                                                                                                                                                                                       Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                         Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage                                                                                                                                                                                                                                             Purine Salvage
## Pyrimidine Catabolism                                                                                                                                                                                                                               Pyrimidine Catabolism
## Pyrimidine Salvage                                                                                                                                                                                                                                     Pyrimidine Salvage
## Pyruvate Metabolism                                                                                                                                                                                                                                   Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                               Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway                                                                                                                                                                                                                           Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                               Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation                                                                                                                                                                                                                           Rab Geranylgeranylation
## Rab Regulation Of Trafficking                                                                                                                                                                                                               Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                       Rac1 Gtpase Cycle
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                       Rac2 Gtpase Cycle
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                       Rac3 Gtpase Cycle
## Raf Activation                                                                                                                                                                                                                                             Raf Activation
## Rap1 Signalling                                                                                                                                                                                                                                           Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                 Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing                                                                                                                                                                                                                                             Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                       Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                 Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                   Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                             Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                         Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                         Recruitment Of Mitotic Centrosome Proteins And Complexes
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                     Recruitment Of Numa To Mitotic Centrosomes
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                       Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                               Recycling Of Eif2 Gdp
## Recycling Pathway Of L1                                                                                                                                                                                                                           Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                         Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway                                                                                                                                                                                                                       Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                           Regulated Proteolysis Of P75ntr
## Regulation By C Flip                                                                                                                                                                                                                                 Regulation By C Flip
## Regulation Of Bach1 Activity                                                                                                                                                                                                                 Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development                                                                                                                                                                                                   Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                               Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                   Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                     Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                   Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                     Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                   Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                       Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                   Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                       Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                               Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                     Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                   Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                         Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                   Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                           Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling                                                                                                                                                                                                                 Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling                                                                                                                                                                                                                 Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                             Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion                                                                                                                                                                                                           Regulation Of Insulin Secretion
## Regulation Of Kit Signaling                                                                                                                                                                                                                   Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                   Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                         Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                   Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                             Regulation Of Plk1 Activity At G2 M Transition
## Regulation Of Pten Gene Transcription                                                                                                                                                                                               Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization                                                                                                                                                                                                           Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                   Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity                                                                                                                                                                                       Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                         Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps                                                                                                                                                                                                                       Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                   Regulation Of Runx1 Expression And Activity
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                   Regulation Of Runx2 Expression And Activity
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                   Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl                                                                                                                                                                                                             Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal                                                                                                                                                                                                         Regulation Of Signaling By Nodal
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                             Regulation Of Tlr By Endogenous Ligand
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   Regulation Of Tp53 Activity
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                           Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                   Regulation Of Tp53 Activity Through Phosphorylation
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                               Regulation Of Tp53 Expression And Degradation
## Relaxin Receptors                                                                                                                                                                                                                                       Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                     Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                         Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                               Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes                                                                                                                                                                                                             Repression Of Wnt Target Genes
## Reproduction                                                                                                                                                                                                                                                 Reproduction
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                   Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                 Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures                                                                                                                                                                                                           Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                       Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                           Resolution Of Sister Chromatid Cohesion
## Respiratory Electron Transport                                                                                                                                                                                                             Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                         Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                     Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                       Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                           Response Of Mtb To Phagocytosis
## Response To Metal Ions                                                                                                                                                                                                                             Response To Metal Ions
## Ret Signaling                                                                                                                                                                                                                                               Ret Signaling
## Retinoid Cycle Disease Events                                                                                                                                                                                                               Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                     Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                           Retrograde Transport At The Trans Golgi Network
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                             Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle                                                                                                                                                                                                                                         Rho Gtpase Cycle
## Rho Gtpase Effectors                                                                                                                                                                                                                                 Rho Gtpase Effectors
## Rho Gtpases Activate Cit                                                                                                                                                                                                                         Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins                                                                                                                                                                                                                 Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                       Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                   Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks                                                                                                                                                                                                                       Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                       Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                 Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                     Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                 Rho Gtpases Activate Wasps And Waves
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                       Rhoa Gtpase Cycle
## Rhob Gtpase Cycle                                                                                                                                                                                                                                       Rhob Gtpase Cycle
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                   Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                 Rhobtb3 Atpase Cycle
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                       Rhoc Gtpase Cycle
## Rhod Gtpase Cycle                                                                                                                                                                                                                                       Rhod Gtpase Cycle
## Rhof Gtpase Cycle                                                                                                                                                                                                                                       Rhof Gtpase Cycle
## Rhog Gtpase Cycle                                                                                                                                                                                                                                       Rhog Gtpase Cycle
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                       Rhoh Gtpase Cycle
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                       Rhoj Gtpase Cycle
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                       Rhoq Gtpase Cycle
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                     Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle                                                                                                                                                                                                                                       Rhou Gtpase Cycle
## Rhov Gtpase Cycle                                                                                                                                                                                                                                       Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                         Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription                                                                                                                                                                                                             Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                       Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination                                                                                                                                                                                     Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                       Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                   Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                   Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription                                                                                                                                                                                                         Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                 Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                       Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                       Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                       Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5                                                                                                                                                                                                                       Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                     Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                               Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                               Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                           Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression                                                                                                                                                                                                             Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                 Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion                                                                                                                                                                                             Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Rrna Modification In The Nucleus And Cytosol
## Rrna Processing                                                                                                                                                                                                                                           Rrna Processing
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                 Rrna Processing In The Mitochondrion
## Rsk Activation                                                                                                                                                                                                                                             Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                       Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                     Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                         Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                   Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                               Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                     Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx2 Regulates Bone Development                                                                                                                                                                                                         Runx2 Regulates Bone Development
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                             Runx2 Regulates Chondrocyte Maturation
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                         Runx2 Regulates Genes Involved In Cell Migration
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                     Runx2 Regulates Osteoblast Differentiation
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                       Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                 Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                     Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                           Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                           Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                               Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                   Runx3 Regulates Yap1 Mediated Transcription
## S Phase                                                                                                                                                                                                                                                           S Phase
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                           Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection                                                                                                                                                                                                                                 Sars Cov 1 Infection
## Sars Cov 2 Infection                                                                                                                                                                                                                                 Sars Cov 2 Infection
## Sars Cov Infections                                                                                                                                                                                                                                   Sars Cov Infections
## Scavenging By Class A Receptors                                                                                                                                                                                                           Scavenging By Class A Receptors
## Scavenging By Class B Receptors                                                                                                                                                                                                           Scavenging By Class B Receptors
## Scavenging By Class F Receptors                                                                                                                                                                                                           Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma                                                                                                                                                                                                             Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                         Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                           Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy                                                                                                                                                                                                                                   Selective Autophagy
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                   Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                       Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                             Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                             Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                   Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions                                                                                                                                                                                                                           Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                   Sensing Of Dna Double Strand Breaks
## Sensory Perception                                                                                                                                                                                                                                     Sensory Perception
## Sensory Processing Of Sound                                                                                                                                                                                                                   Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                             Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids                                                                                                                                                                                                           Separation Of Sister Chromatids
## Serine Biosynthesis                                                                                                                                                                                                                                   Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                 Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                         Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors                                                                                                                                                                                                                                   Serotonin Receptors
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                               Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb4 Signaling
## Signal Amplification                                                                                                                                                                                                                                 Signal Amplification
## Signal Attenuation                                                                                                                                                                                                                                     Signal Attenuation
## Signal Regulatory Protein Family Interactions                                                                                                                                                                               Signal Regulatory Protein Family Interactions
## Signaling By Activin                                                                                                                                                                                                                                 Signaling By Activin
## Signaling By Bmp                                                                                                                                                                                                                                         Signaling By Bmp
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                       Signaling By Braf And Raf Fusions
## Signaling By Csf3 G Csf                                                                                                                                                                                                                           Signaling By Csf3 G Csf
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                         Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                   Signaling By Cytosolic Fgfr1 Fusion Mutants
## Signaling By Erythropoietin                                                                                                                                                                                                                   Signaling By Erythropoietin
## Signaling By Fgfr                                                                                                                                                                                                                                       Signaling By Fgfr
## Signaling By Fgfr In Disease                                                                                                                                                                                                                 Signaling By Fgfr In Disease
## Signaling By Fgfr1                                                                                                                                                                                                                                     Signaling By Fgfr1
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                               Signaling By Fgfr1 In Disease
## Signaling By Fgfr2                                                                                                                                                                                                                                     Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                     Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                               Signaling By Fgfr2 In Disease
## Signaling By Fgfr3                                                                                                                                                                                                                                     Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                 Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4                                                                                                                                                                                                                                     Signaling By Fgfr4
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                               Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                       Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                               Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr                                                                                                                                                                                                                                       Signaling By Gpcr
## Signaling By Hedgehog                                                                                                                                                                                                                               Signaling By Hedgehog
## Signaling By Hippo                                                                                                                                                                                                                                     Signaling By Hippo
## Signaling By Insulin Receptor                                                                                                                                                                                                               Signaling By Insulin Receptor
## Signaling By Kit In Disease                                                                                                                                                                                                                   Signaling By Kit In Disease
## Signaling By Leptin                                                                                                                                                                                                                                   Signaling By Leptin
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                       Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants                                                                                                                                                                                                                       Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                     Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Met                                                                                                                                                                                                                                         Signaling By Met
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                     Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants                                                                                                                                                                                                       Signaling By Mras Complex Mutants
## Signaling By Mst1                                                                                                                                                                                                                                       Signaling By Mst1
## Signaling By Nodal                                                                                                                                                                                                                                     Signaling By Nodal
## Signaling By Notch                                                                                                                                                                                                                                     Signaling By Notch
## Signaling By Notch1                                                                                                                                                                                                                                   Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                           Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                       Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                       Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4                                                                                                                                                                                                                                   Signaling By Notch4
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                           Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                           Signaling By Ntrk3 Trkc
## Signaling By Nuclear Receptors                                                                                                                                                                                                             Signaling By Nuclear Receptors
## Signaling By Pdgf                                                                                                                                                                                                                                       Signaling By Pdgf
## Signaling By Pdgfr In Disease                                                                                                                                                                                                               Signaling By Pdgfr In Disease
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                       Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                             Signaling By Receptor Tyrosine Kinases
## Signaling By Retinoic Acid                                                                                                                                                                                                                     Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                       Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                     Signaling By Rnf43 Mutants
## Signaling By Robo Receptors                                                                                                                                                                                                                   Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                         Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                 Signaling By The B Cell Receptor Bcr
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                           Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Signaling By Vegf                                                                                                                                                                                                                                       Signaling By Vegf
## Signaling By Wnt                                                                                                                                                                                                                                         Signaling By Wnt
## Signaling By Wnt In Cancer                                                                                                                                                                                                                     Signaling By Wnt In Cancer
## Signalling To Erks                                                                                                                                                                                                                                     Signalling To Erks
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                       Signalling To P38 Via Rit And Rin
## Signalling To Ras                                                                                                                                                                                                                                       Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                     Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                 Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                 Slc Mediated Transmembrane Transport
## Slc Transporter Disorders                                                                                                                                                                                                                       Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                             Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                             Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction                                                                                                                                                                                                                       Smooth Muscle Contraction
## Snrnp Assembly                                                                                                                                                                                                                                             Snrnp Assembly
## Sodium Calcium Exchangers                                                                                                                                                                                                                       Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                           Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                   Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers                                                                                                                                                                                                                         Sodium Proton Exchangers
## Sos Mediated Signalling                                                                                                                                                                                                                           Sos Mediated Signalling
## Sperm Motility And Taxes                                                                                                                                                                                                                         Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                       Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism                                                                                                                                                                                                                           Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                         Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                   Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53                                                                                                                                                                                                                                 Stabilization Of P53
## Stat5 Activation                                                                                                                                                                                                                                         Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                           Stat5 Activation Downstream Of Flt3 Itd Mutants
## Striated Muscle Contraction                                                                                                                                                                                                                   Striated Muscle Contraction
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                 Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                 Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                     Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed                                                                                                                                                                                                       Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                             Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                             Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                           Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                           Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                             Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                   Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                   Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors                                                                                                                                                                                                 Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                         Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis                                                                                                                                                                                                                         Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                 Suppression Of Phagosomal Maturation
## Surfactant Metabolism                                                                                                                                                                                                                               Surfactant Metabolism
## Switching Of Origins To A Post Replicative State                                                                                                                                                                         Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                         Synaptic Adhesion Like Molecules
## Syndecan Interactions                                                                                                                                                                                                                               Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                               Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                               Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                         Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                             Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                 Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                               Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                           Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                               Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                         Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                               Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                     Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                           Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                     Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                     Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                         Synthesis Of Lipoxins Lx
## Synthesis Of Pa                                                                                                                                                                                                                                           Synthesis Of Pa
## Synthesis Of Pc                                                                                                                                                                                                                                           Synthesis Of Pc
## Synthesis Of Pe                                                                                                                                                                                                                                           Synthesis Of Pe
## Synthesis Of Pg                                                                                                                                                                                                                                           Synthesis Of Pg
## Synthesis Of Pi                                                                                                                                                                                                                                           Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                         Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                 Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                           Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                           Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                         Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                     Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                     Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                               Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                 Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                     Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                             Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                               Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                         Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                               Tachykinin Receptors Bind Tachykinins
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                               Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                               Tandem Pore Domain Potassium Channels
## Tbc Rabgaps                                                                                                                                                                                                                                                   Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                     Tcf Dependent Signaling In Response To Wnt
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                     Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                             Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase                                                                                                                                                                                                         Telomere Extension By Telomerase
## Telomere Maintenance                                                                                                                                                                                                                                 Telomere Maintenance
## Terminal Pathway Of Complement                                                                                                                                                                                                             Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                         Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                     Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                 Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                   Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                           Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases                                                                                                                                                                                                         The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                 The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                 The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model                                                                                                                                                                                                                 The Fatty Acid Cycling Model
## The Nlrp3 Inflammasome                                                                                                                                                                                                                             The Nlrp3 Inflammasome
## The Phototransduction Cascade                                                                                                                                                                                                               The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                   The Retinoid Cycle In Cones Daylight Vision
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                       The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                               The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                           Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                     Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis                                                                                                                                                                                                                             Thyroxine Biosynthesis
## Tie2 Signaling                                                                                                                                                                                                                                             Tie2 Signaling
## Tight Junction Interactions                                                                                                                                                                                                                   Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                 Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                     Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                           Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                             Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                         Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                           Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Cycle Genes
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Death Genes
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                   Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                             Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                 Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                             Traf6 Mediated Irf7 Activation
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                           Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                           Traf6 Mediated Nf Kb Activation
## Trafficking Of Ampa Receptors                                                                                                                                                                                                               Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                             Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                   Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling                                                                                                                                                                                                                                           Trail Signaling
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                   Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                           Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                 Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Transcription Of The Hiv Genome                                                                                                                                                                                                           Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6                                                                                                                                                                                                     Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx1                                                                                                                                                                                                   Transcriptional Regulation By Runx1
## Transcriptional Regulation By Runx2                                                                                                                                                                                                   Transcriptional Regulation By Runx2
## Transcriptional Regulation By Runx3                                                                                                                                                                                                   Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                         Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53                                                                                                                                                                                                     Transcriptional Regulation By Tp53
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                 Transcriptional Regulation Of Pluripotent Stem Cells
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                 Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                               Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling                                                                                                                                                                                               Transferrin Endocytosis And Recycling
## Translation                                                                                                                                                                                                                                                   Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                             Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh                                                                                                                                                                                                               Translesion Synthesis By Polh
## Translesion Synthesis By Polk                                                                                                                                                                                                               Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                     Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                 Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transmission Across Chemical Synapses                                                                                                                                                                                               Transmission Across Chemical Synapses
## Transport And Synthesis Of Paps                                                                                                                                                                                                           Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                         Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                               Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids                                                                                                                                                                                                                         Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                   Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                               Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                   Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                         Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars                                                                                                                                                                                                             Transport Of Nucleotide Sugars
## Transport Of Organic Anions                                                                                                                                                                                                                   Transport Of Organic Anions
## Transport Of Small Molecules                                                                                                                                                                                                                 Transport Of Small Molecules
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                   Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                           Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                     Transport To The Golgi And Subsequent Modification
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                   Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis                                                                                                                                                                                                                       Triglyceride Biosynthesis
## Triglyceride Catabolism                                                                                                                                                                                                                           Triglyceride Catabolism
## Triglyceride Metabolism                                                                                                                                                                                                                           Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                               Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation                                                                                                                                                                                                                                   Trna Aminoacylation
## Trna Modification In The Mitochondrion                                                                                                                                                                                             Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Trna Modification In The Nucleus And Cytosol
## Trna Processing                                                                                                                                                                                                                                           Trna Processing
## Trna Processing In The Mitochondrion                                                                                                                                                                                                 Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus                                                                                                                                                                                                             Trna Processing In The Nucleus
## Trp Channels                                                                                                                                                                                                                                                 Trp Channels
## Tryptophan Catabolism                                                                                                                                                                                                                               Tryptophan Catabolism
## Type I Hemidesmosome Assembly                                                                                                                                                                                                               Type I Hemidesmosome Assembly
## Tyrosine Catabolism                                                                                                                                                                                                                                   Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                   Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases                                                                                                                                                                                                         Ub Specific Processing Proteases
## Ubiquinol Biosynthesis                                                                                                                                                                                                                             Ubiquinol Biosynthesis
## Uch Proteinases                                                                                                                                                                                                                                           Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                               Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna                                                                                                                                                                                                                                         Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                             Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                               Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                           Uptake And Function Of Diphtheria Toxin
## Urea Cycle                                                                                                                                                                                                                                                     Urea Cycle
## Vasopressin Like Receptors                                                                                                                                                                                                                     Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                 Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                       Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                     Vegfr2 Mediated Cell Proliferation
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                               Vegfr2 Mediated Vascular Permeability
## Vesicle Mediated Transport                                                                                                                                                                                                                     Vesicle Mediated Transport
## Viral Messenger Rna Synthesis                                                                                                                                                                                                               Viral Messenger Rna Synthesis
## Visual Phototransduction                                                                                                                                                                                                                         Visual Phototransduction
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                               Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                         Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                     Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                             Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                           Vitamin D Calciferol Metabolism
## Vitamins                                                                                                                                                                                                                                                         Vitamins
## Vldl Assembly                                                                                                                                                                                                                                               Vldl Assembly
## Vldl Clearance                                                                                                                                                                                                                                             Vldl Clearance
## Voltage Gated Potassium Channels                                                                                                                                                                                                         Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                             Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                         Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                             Wnt Mediated Activation Of Dvl
## Xenobiotics                                                                                                                                                                                                                                                   Xenobiotics
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                               Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                         Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                           Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters                                                                                                                                                                                                                                       Zinc Transporters
##                                                                                                                                         pval
## Interleukin 10 Signaling                                                                                                             0.00011
## Chemokine Receptors Bind Chemokines                                                                                                  0.01300
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         0.01900
## Cd163 Mediating An Anti Inflammatory Response                                                                                        0.03600
## Interleukin 1 Processing                                                                                                             0.03600
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               0.04700
## Tnfs Bind Their Physiological Receptors                                                                                              0.07600
## Interleukin 4 And Interleukin 13 Signaling                                                                                           0.08200
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     0.13000
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         0.14000
## Mecp2 Regulates Transcription Factors                                                                                                0.16000
## Clec7a Inflammasome Pathway                                                                                                          0.19000
## Fibronectin Matrix Formation                                                                                                         0.19000
## Ptk6 Promotes Hif1a Stabilization                                                                                                    0.19000
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 0.19000
## Creb Phosphorylation                                                                                                                 0.22000
## Purinergic Signaling In Leishmaniasis Infection                                                                                      0.23000
## Pyroptosis                                                                                                                           0.24000
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         0.25000
## Interleukin 18 Signaling                                                                                                             0.25000
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    0.25000
## Pd 1 Signaling                                                                                                                       0.25000
## Extra Nuclear Estrogen Signaling                                                                                                     0.26000
## Egfr Interacts With Phospholipase C Gamma                                                                                            0.27000
## Egfr Transactivation By Gastrin                                                                                                      0.27000
## Mapk1 Erk2 Activation                                                                                                                0.27000
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    0.27000
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  0.29000
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               0.30000
## Akt Phosphorylates Targets In The Nucleus                                                                                            0.30000
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             0.30000
## Mapk3 Erk1 Activation                                                                                                                0.30000
## Regulated Necrosis                                                                                                                   0.31000
## Interleukin 6 Signaling                                                                                                              0.32000
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     0.32000
## Cd28 Dependent Vav1 Pathway                                                                                                          0.35000
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    0.35000
## Killing Mechanisms                                                                                                                   0.35000
## Notch2 Intracellular Domain Regulates Transcription                                                                                  0.35000
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             0.35000
## Vldlr Internalisation And Degradation                                                                                                0.35000
## Dissolution Of Fibrin Clot                                                                                                           0.37000
## Erbb2 Activates Ptk6 Signaling                                                                                                       0.37000
## Irf3 Mediated Induction Of Type I Ifn                                                                                                0.37000
## Trafficking And Processing Of Endosomal Tlr                                                                                          0.37000
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                0.37000
## Ngf Stimulated Transcription                                                                                                         0.39000
## Shc1 Events In Egfr Signaling                                                                                                        0.39000
## Constitutive Signaling By Egfrviii                                                                                                   0.41000
## Erbb2 Regulates Cell Motility                                                                                                        0.41000
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             0.41000
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      0.41000
## Wnt5a Dependent Internalization Of Fzd4                                                                                              0.41000
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           0.43000
## Grb2 Events In Erbb2 Signaling                                                                                                       0.43000
## Pi3k Events In Erbb2 Signaling                                                                                                       0.43000
## Signaling By Erbb2 Ecd Mutants                                                                                                       0.43000
## Sting Mediated Induction Of Host Immune Responses                                                                                    0.43000
## Sumoylation Of Dna Methylation Proteins                                                                                              0.43000
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        0.45000
## Gab1 Signalosome                                                                                                                     0.45000
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                0.45000
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      0.47000
## Costimulation By The Cd28 Family                                                                                                     0.48000
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     0.49000
## Ldl Clearance                                                                                                                        0.49000
## Pka Mediated Phosphorylation Of Creb                                                                                                 0.51000
## Ctla4 Inhibitory Signaling                                                                                                           0.53000
## Inflammasomes                                                                                                                        0.53000
## Signal Transduction By L1                                                                                                            0.53000
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           0.53000
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    0.54000
## Shc1 Events In Erbb2 Signaling                                                                                                       0.54000
## Ikk Complex Recruitment Mediated By Rip1                                                                                             0.56000
## Raf Independent Mapk1 3 Activation                                                                                                   0.56000
## Termination Of O Glycan Biosynthesis                                                                                                 0.56000
## Interleukin 6 Family Signaling                                                                                                       0.57000
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          0.59000
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             0.59000
## Signaling By Egfr In Cancer                                                                                                          0.59000
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        0.60000
## Dectin 2 Family                                                                                                                      0.60000
## Signaling By Erbb2 In Cancer                                                                                                         0.60000
## Wnt Ligand Biogenesis And Trafficking                                                                                                0.60000
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     0.62000
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                0.62000
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     0.63000
## Downregulation Of Erbb2 Signaling                                                                                                    0.64000
## Nuclear Events Kinase And Transcription Factor Activation                                                                            0.64000
## Ripk1 Mediated Regulated Necrosis                                                                                                    0.64000
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         0.65000
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             0.66000
## Diseases Of Immune System                                                                                                            0.67000
## Egfr Downregulation                                                                                                                  0.67000
## Myd88 Independent Tlr4 Cascade                                                                                                       0.67000
## Perk Regulates Gene Expression                                                                                                       0.68000
## Regulation Of Mecp2 Expression And Activity                                                                                          0.68000
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               0.68000
## Activation Of Matrix Metalloproteinases                                                                                              0.69000
## Cd28 Co Stimulation                                                                                                                  0.69000
## Plasma Lipoprotein Clearance                                                                                                         0.69000
## Sialic Acid Metabolism                                                                                                               0.69000
## Signaling By Notch2                                                                                                                  0.69000
## Peptide Ligand Binding Receptors                                                                                                     0.70000
## Circadian Clock                                                                                                                      0.71000
## Regulation Of Tnfr1 Signaling                                                                                                        0.71000
## Interleukin 17 Signaling                                                                                                             0.72000
## Nod1 2 Signaling Pathway                                                                                                             0.72000
## Pi3k Akt Signaling In Cancer                                                                                                         0.72000
## Ca Dependent Events                                                                                                                  0.73000
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   0.74000
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         0.74000
## Generation Of Second Messenger Molecules                                                                                             0.75000
## Senescence Associated Secretory Phenotype Sasp                                                                                       0.76000
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    0.77000
## Dag And Ip3 Signaling                                                                                                                0.77000
## Negative Regulation Of The Pi3k Akt Network                                                                                          0.77000
## Transcriptional Regulation By Ventx                                                                                                  0.77000
## Signaling By Scf Kit                                                                                                                 0.79000
## Sumoylation Of Transcription Cofactors                                                                                               0.79000
## Tnf Signaling                                                                                                                        0.79000
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           0.79000
## Dap12 Interactions                                                                                                                   0.80000
## Interleukin 12 Signaling                                                                                                             0.81000
## Toll Like Receptor Cascades                                                                                                          0.81000
## Heme Signaling                                                                                                                       0.82000
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              0.82000
## Signaling By Egfr                                                                                                                    0.83000
## Signaling By Erbb2                                                                                                                   0.83000
## Signaling By Notch3                                                                                                                  0.83000
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               0.84000
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    0.85000
## Fcgr3a Mediated Il10 Synthesis                                                                                                       0.86000
## G Protein Mediated Events                                                                                                            0.86000
## Signaling By Ptk6                                                                                                                    0.86000
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               0.86000
## Interleukin 12 Family Signaling                                                                                                      0.87000
## Interleukin 1 Family Signaling                                                                                                       0.88000
## Signaling By Erbb4                                                                                                                   0.88000
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         0.89000
## Ca2 Pathway                                                                                                                          0.89000
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  0.89000
## O Linked Glycosylation Of Mucins                                                                                                     0.89000
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 0.89000
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     0.89000
## Asymmetric Localization Of Pcp Proteins                                                                                              0.90000
## Collagen Degradation                                                                                                                 0.90000
## Dna Methylation                                                                                                                      0.90000
## Ncam Signaling For Neurite Out Growth                                                                                                0.90000
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      0.90000
## Transcriptional Regulation By Mecp2                                                                                                  0.90000
## Diseases Associated With O Glycosylation Of Proteins                                                                                 0.91000
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 0.92000
## Prc2 Methylates Histones And Dna                                                                                                     0.93000
## Signaling By Interleukins                                                                                                            0.93000
## Signaling By Tgf Beta Receptor Complex                                                                                               0.93000
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   0.94000
## Ecm Proteoglycans                                                                                                                    0.94000
## Rmts Methylate Histone Arginines                                                                                                     0.94000
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              0.95000
## G Alpha I Signalling Events                                                                                                          0.95000
## C Type Lectin Receptors Clrs                                                                                                         0.96000
## Collagen Formation                                                                                                                   0.96000
## Esr Mediated Signaling                                                                                                               0.96000
## Fceri Mediated Mapk Activation                                                                                                       0.96000
## Hcmv Early Events                                                                                                                    0.96000
## Opioid Signalling                                                                                                                    0.96000
## Signaling By Ntrks                                                                                                                   0.96000
## Transcriptional Regulation Of Granulopoiesis                                                                                         0.96000
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 0.97000
## Class B 2 Secretin Family Receptors                                                                                                  0.97000
## Clathrin Mediated Endocytosis                                                                                                        0.97000
## Clec7a Dectin 1 Signaling                                                                                                            0.97000
## Eph Ephrin Signaling                                                                                                                 0.97000
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             0.97000
## Interferon Gamma Signaling                                                                                                           0.97000
## Leishmania Infection                                                                                                                 0.97000
## Mitochondrial Biogenesis                                                                                                             0.97000
## Pcp Ce Pathway                                                                                                                       0.97000
## Unfolded Protein Response Upr                                                                                                        0.97000
## Amyloid Fiber Formation                                                                                                              0.98000
## Cellular Senescence                                                                                                                  0.98000
## Diseases Of Programmed Cell Death                                                                                                    0.98000
## Hcmv Infection                                                                                                                       0.98000
## Interleukin 1 Signaling                                                                                                              0.98000
## O Linked Glycosylation                                                                                                               0.98000
## Programmed Cell Death                                                                                                                0.98000
## Signaling By Tgfb Family Members                                                                                                     0.98000
## Stimuli Sensing Channels                                                                                                             0.98000
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   0.99000
## Cell Surface Interactions At The Vascular Wall                                                                                       0.99000
## Class A 1 Rhodopsin Like Receptors                                                                                                   0.99000
## Cytokine Signaling In Immune System                                                                                                  0.99000
## Death Receptor Signalling                                                                                                            0.99000
## Degradation Of The Extracellular Matrix                                                                                              0.99000
## L1cam Interactions                                                                                                                   0.99000
## Mhc Class Ii Antigen Presentation                                                                                                    0.99000
## Oxidative Stress Induced Senescence                                                                                                  0.99000
## Response To Elevated Platelet Cytosolic Ca2                                                                                          0.99000
## Sumoylation                                                                                                                          0.99000
## Tcr Signaling                                                                                                                        0.99000
## 2 Ltr Circle Formation                                                                                                               1.00000
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.00000
## Abacavir Metabolism                                                                                                                  1.00000
## Abacavir Transmembrane Transport                                                                                                     1.00000
## Abacavir Transport And Metabolism                                                                                                    1.00000
## Abc Family Proteins Mediated Transport                                                                                               1.00000
## Abc Transporter Disorders                                                                                                            1.00000
## Abc Transporters In Lipid Homeostasis                                                                                                1.00000
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.00000
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.00000
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.00000
## Acetylcholine Binding And Downstream Events                                                                                          1.00000
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.00000
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.00000
## Acetylcholine Regulates Insulin Secretion                                                                                            1.00000
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.00000
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.00000
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.00000
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.00000
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.00000
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.00000
## Activated Ntrk2 Signals Through Ras                                                                                                  1.00000
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.00000
## Activated Ntrk3 Signals Through Ras                                                                                                  1.00000
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.00000
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          1.00000
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.00000
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.00000
## Activation Of Atr In Response To Replication Stress                                                                                  1.00000
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.00000
## Activation Of Bh3 Only Proteins                                                                                                      1.00000
## Activation Of C3 And C5                                                                                                              1.00000
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.00000
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.00000
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 1.00000
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.00000
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            1.00000
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.00000
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.00000
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.00000
## Activation Of Rac1                                                                                                                   1.00000
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.00000
## Activation Of Ras In B Cells                                                                                                         1.00000
## Activation Of Smo                                                                                                                    1.00000
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.00000
## Activation Of The Phototransduction Cascade                                                                                          1.00000
## Activation Of The Pre Replicative Complex                                                                                            1.00000
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.00000
## Activation Of Trka Receptors                                                                                                         1.00000
## Acyl Chain Remodeling Of Cl                                                                                                          1.00000
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.00000
## Acyl Chain Remodelling Of Pc                                                                                                         1.00000
## Acyl Chain Remodelling Of Pe                                                                                                         1.00000
## Acyl Chain Remodelling Of Pg                                                                                                         1.00000
## Acyl Chain Remodelling Of Pi                                                                                                         1.00000
## Acyl Chain Remodelling Of Ps                                                                                                         1.00000
## Adaptive Immune System                                                                                                               1.00000
## Adenylate Cyclase Activating Pathway                                                                                                 1.00000
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.00000
## Adherens Junctions Interactions                                                                                                      1.00000
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.00000
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.00000
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.00000
## Adrenoceptors                                                                                                                        1.00000
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 1.00000
## Aflatoxin Activation And Detoxification                                                                                              1.00000
## Aggrephagy                                                                                                                           1.00000
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.00000
## Alpha Defensins                                                                                                                      1.00000
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.00000
## Alpha Oxidation Of Phytanate                                                                                                         1.00000
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.00000
## Alternative Complement Activation                                                                                                    1.00000
## Amine Ligand Binding Receptors                                                                                                       1.00000
## Amino Acid Conjugation                                                                                                               1.00000
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.00000
## Amino Acids Regulate Mtorc1                                                                                                          1.00000
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.00000
## Anchoring Fibril Formation                                                                                                           1.00000
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.00000
## Androgen Biosynthesis                                                                                                                1.00000
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.00000
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             1.00000
## Antigen Processing Cross Presentation                                                                                                1.00000
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.00000
## Antimicrobial Peptides                                                                                                               1.00000
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.00000
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         1.00000
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.00000
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.00000
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.00000
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.00000
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.00000
## Apoptosis                                                                                                                            1.00000
## Apoptosis Induced Dna Fragmentation                                                                                                  1.00000
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.00000
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.00000
## Apoptotic Execution Phase                                                                                                            1.00000
## Apoptotic Factor Mediated Response                                                                                                   1.00000
## Aquaporin Mediated Transport                                                                                                         1.00000
## Arachidonate Production From Dag                                                                                                     1.00000
## Arachidonic Acid Metabolism                                                                                                          1.00000
## Arms Mediated Activation                                                                                                             1.00000
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.00000
## Asparagine N Linked Glycosylation                                                                                                    1.00000
## Aspartate And Asparagine Metabolism                                                                                                  1.00000
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.00000
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.00000
## Assembly Of The Hiv Virion                                                                                                           1.00000
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.00000
## Assembly Of The Pre Replicative Complex                                                                                              1.00000
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.00000
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.00000
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.00000
## Attachment And Entry                                                                                                                 1.00000
## Attachment Of Gpi Anchor To Upar                                                                                                     1.00000
## Attenuation Phase                                                                                                                    1.00000
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.00000
## Aurka Activation By Tpx2                                                                                                             1.00000
## Autophagy                                                                                                                            1.00000
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.00000
## Base Excision Repair                                                                                                                 1.00000
## Base Excision Repair Ap Site Formation                                                                                               1.00000
## Basigin Interactions                                                                                                                 1.00000
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.00000
## Beta Catenin Independent Wnt Signaling                                                                                               1.00000
## Beta Catenin Phosphorylation Cascade                                                                                                 1.00000
## Beta Defensins                                                                                                                       1.00000
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.00000
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.00000
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.00000
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.00000
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.00000
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.00000
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.00000
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         1.00000
## Bicarbonate Transporters                                                                                                             1.00000
## Bile Acid And Bile Salt Metabolism                                                                                                   1.00000
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.00000
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   1.00000
## Biological Oxidations                                                                                                                1.00000
## Biosynthesis Of Epa Derived Spms                                                                                                     1.00000
## Biosynthesis Of Maresin Like Spms                                                                                                    1.00000
## Biosynthesis Of Maresins                                                                                                             1.00000
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              1.00000
## Biotin Transport And Metabolism                                                                                                      1.00000
## Blood Group Systems Biosynthesis                                                                                                     1.00000
## Branched Chain Amino Acid Catabolism                                                                                                 1.00000
## Budding And Maturation Of Hiv Virion                                                                                                 1.00000
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.00000
## Butyrophilin Btn Family Interactions                                                                                                 1.00000
## Ca2 Activated K Channels                                                                                                             1.00000
## Calcineurin Activates Nfat                                                                                                           1.00000
## Calcitonin Like Ligand Receptors                                                                                                     1.00000
## Calnexin Calreticulin Cycle                                                                                                          1.00000
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.00000
## Cardiac Conduction                                                                                                                   1.00000
## Cargo Concentration In The Er                                                                                                        1.00000
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.00000
## Carnitine Metabolism                                                                                                                 1.00000
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.00000
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.00000
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        1.00000
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.00000
## Cation Coupled Chloride Cotransporters                                                                                               1.00000
## Cd209 Dc Sign Signaling                                                                                                              1.00000
## Cd22 Mediated Bcr Regulation                                                                                                         1.00000
## Cdc42 Gtpase Cycle                                                                                                                   1.00000
## Cdc6 Association With The Orc Origin Complex                                                                                         1.00000
## Cell Cell Communication                                                                                                              1.00000
## Cell Cell Junction Organization                                                                                                      1.00000
## Cell Cycle                                                                                                                           1.00000
## Cell Cycle Checkpoints                                                                                                               1.00000
## Cell Cycle Mitotic                                                                                                                   1.00000
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.00000
## Cell Extracellular Matrix Interactions                                                                                               1.00000
## Cell Junction Organization                                                                                                           1.00000
## Cellular Hexose Transport                                                                                                            1.00000
## Cellular Response To Chemical Stress                                                                                                 1.00000
## Cellular Response To Heat Stress                                                                                                     1.00000
## Cellular Response To Hypoxia                                                                                                         1.00000
## Cellular Response To Starvation                                                                                                      1.00000
## Cellular Responses To External Stimuli                                                                                               1.00000
## Cgmp Effects                                                                                                                         1.00000
## Chaperone Mediated Autophagy                                                                                                         1.00000
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        1.00000
## Chl1 Interactions                                                                                                                    1.00000
## Cholesterol Biosynthesis                                                                                                             1.00000
## Choline Catabolism                                                                                                                   1.00000
## Chondroitin Sulfate Biosynthesis                                                                                                     1.00000
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.00000
## Chrebp Activates Metabolic Gene Expression                                                                                           1.00000
## Chromatin Modifying Enzymes                                                                                                          1.00000
## Chromosome Maintenance                                                                                                               1.00000
## Chylomicron Assembly                                                                                                                 1.00000
## Chylomicron Clearance                                                                                                                1.00000
## Chylomicron Remodeling                                                                                                               1.00000
## Cilium Assembly                                                                                                                      1.00000
## Citric Acid Cycle Tca Cycle                                                                                                          1.00000
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.00000
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.00000
## Class I Peroxisomal Membrane Protein Import                                                                                          1.00000
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.00000
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.00000
## Coenzyme A Biosynthesis                                                                                                              1.00000
## Cohesin Loading Onto Chromatin                                                                                                       1.00000
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.00000
## Collagen Chain Trimerization                                                                                                         1.00000
## Common Pathway Of Fibrin Clot Formation                                                                                              1.00000
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.00000
## Complement Cascade                                                                                                                   1.00000
## Complex I Biogenesis                                                                                                                 1.00000
## Condensation Of Prometaphase Chromosomes                                                                                             1.00000
## Condensation Of Prophase Chromosomes                                                                                                 1.00000
## Conjugation Of Benzoate With Glycine                                                                                                 1.00000
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.00000
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.00000
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.00000
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.00000
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.00000
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.00000
## Copi Mediated Anterograde Transport                                                                                                  1.00000
## Copii Mediated Vesicle Transport                                                                                                     1.00000
## Creatine Metabolism                                                                                                                  1.00000
## Creation Of C4 And C2 Activators                                                                                                     1.00000
## Creb3 Factors Activate Genes                                                                                                         1.00000
## Cristae Formation                                                                                                                    1.00000
## Crmps In Sema3a Signaling                                                                                                            1.00000
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.00000
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.00000
## Crosslinking Of Collagen Fibrils                                                                                                     1.00000
## Cs Ds Degradation                                                                                                                    1.00000
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              1.00000
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.00000
## Cyclin D Associated Events In G1                                                                                                     1.00000
## Cyp2e1 Reactions                                                                                                                     1.00000
## Cytochrome C Mediated Apoptotic Response                                                                                             1.00000
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.00000
## Cytoprotection By Hmox1                                                                                                              1.00000
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.00000
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.00000
## Cytosolic Trna Aminoacylation                                                                                                        1.00000
## Dap12 Signaling                                                                                                                      1.00000
## Darpp 32 Events                                                                                                                      1.00000
## Dcc Mediated Attractive Signaling                                                                                                    1.00000
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              1.00000
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.00000
## Deadenylation Dependent Mrna Decay                                                                                                   1.00000
## Deadenylation Of Mrna                                                                                                                1.00000
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       1.00000
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.00000
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.00000
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.00000
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.00000
## Defective Chst3 Causes Sedcjd                                                                                                        1.00000
## Defective Chst6 Causes Mcdc1                                                                                                         1.00000
## Defective Chsy1 Causes Tpbs                                                                                                          1.00000
## Defective Csf2rb Causes Smdp5                                                                                                        1.00000
## Defective Ext2 Causes Exostoses 2                                                                                                    1.00000
## Defective F9 Activation                                                                                                              1.00000
## Defective Factor Ix Causes Hemophilia B                                                                                              1.00000
## Defective Factor Viii Causes Hemophilia A                                                                                            1.00000
## Defective Lfng Causes Scdo3                                                                                                          1.00000
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.00000
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.00000
## Defects In Biotin Btn Metabolism                                                                                                     1.00000
## Defects In Cobalamin B12 Metabolism                                                                                                  1.00000
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.00000
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.00000
## Defensins                                                                                                                            1.00000
## Degradation Of Axin                                                                                                                  1.00000
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.00000
## Degradation Of Cysteine And Homocysteine                                                                                             1.00000
## Degradation Of Dvl                                                                                                                   1.00000
## Degradation Of Gli1 By The Proteasome                                                                                                1.00000
## Depolymerisation Of The Nuclear Lamina                                                                                               1.00000
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.00000
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          1.00000
## Dermatan Sulfate Biosynthesis                                                                                                        1.00000
## Detoxification Of Reactive Oxygen Species                                                                                            1.00000
## Deubiquitination                                                                                                                     1.00000
## Developmental Biology                                                                                                                1.00000
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.00000
## Digestion                                                                                                                            1.00000
## Digestion And Absorption                                                                                                             1.00000
## Digestion Of Dietary Carbohydrate                                                                                                    1.00000
## Digestion Of Dietary Lipid                                                                                                           1.00000
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.00000
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.00000
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        1.00000
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.00000
## Diseases Associated With Surfactant Metabolism                                                                                       1.00000
## Diseases Of Base Excision Repair                                                                                                     1.00000
## Diseases Of Carbohydrate Metabolism                                                                                                  1.00000
## Diseases Of Dna Repair                                                                                                               1.00000
## Diseases Of Glycosylation                                                                                                            1.00000
## Diseases Of Metabolism                                                                                                               1.00000
## Diseases Of Mismatch Repair Mmr                                                                                                      1.00000
## Diseases Of Mitotic Cell Cycle                                                                                                       1.00000
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     1.00000
## Disinhibition Of Snare Formation                                                                                                     1.00000
## Disorders Of Transmembrane Transporters                                                                                              1.00000
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.00000
## Dna Damage Bypass                                                                                                                    1.00000
## Dna Damage Recognition In Gg Ner                                                                                                     1.00000
## Dna Damage Reversal                                                                                                                  1.00000
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.00000
## Dna Double Strand Break Repair                                                                                                       1.00000
## Dna Double Strand Break Response                                                                                                     1.00000
## Dna Repair                                                                                                                           1.00000
## Dna Replication                                                                                                                      1.00000
## Dna Replication Initiation                                                                                                           1.00000
## Dna Replication Pre Initiation                                                                                                       1.00000
## Dna Strand Elongation                                                                                                                1.00000
## Dopamine Neurotransmitter Release Cycle                                                                                              1.00000
## Dopamine Receptors                                                                                                                   1.00000
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.00000
## Downregulation Of Erbb4 Signaling                                                                                                    1.00000
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.00000
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.00000
## Downstream Signal Transduction                                                                                                       1.00000
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.00000
## Downstream Signaling Of Activated Fgfr1                                                                                              1.00000
## Downstream Signaling Of Activated Fgfr2                                                                                              1.00000
## Downstream Signaling Of Activated Fgfr3                                                                                              1.00000
## Downstream Signaling Of Activated Fgfr4                                                                                              1.00000
## Dscam Interactions                                                                                                                   1.00000
## Dual Incision In Gg Ner                                                                                                              1.00000
## Dual Incision In Tc Ner                                                                                                              1.00000
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          1.00000
## E2f Mediated Regulation Of Dna Replication                                                                                           1.00000
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.00000
## Early Phase Of Hiv Life Cycle                                                                                                        1.00000
## Effects Of Pip2 Hydrolysis                                                                                                           1.00000
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.00000
## Eicosanoid Ligand Binding Receptors                                                                                                  1.00000
## Eicosanoids                                                                                                                          1.00000
## Elastic Fibre Formation                                                                                                              1.00000
## Electric Transmission Across Gap Junctions                                                                                           1.00000
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.00000
## Endogenous Sterols                                                                                                                   1.00000
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.00000
## Endosomal Vacuolar Pathway                                                                                                           1.00000
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.00000
## Enos Activation                                                                                                                      1.00000
## Epha Mediated Growth Cone Collapse                                                                                                   1.00000
## Ephb Mediated Forward Signaling                                                                                                      1.00000
## Ephrin Signaling                                                                                                                     1.00000
## Epigenetic Regulation Of Gene Expression                                                                                             1.00000
## Er Quality Control Compartment Erqc                                                                                                  1.00000
## Er To Golgi Anterograde Transport                                                                                                    1.00000
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.00000
## Erk Mapk Targets                                                                                                                     1.00000
## Erks Are Inactivated                                                                                                                 1.00000
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.00000
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.00000
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.00000
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.00000
## Erythropoietin Activates Ras                                                                                                         1.00000
## Erythropoietin Activates Stat5                                                                                                       1.00000
## Establishment Of Sister Chromatid Cohesion                                                                                           1.00000
## Estrogen Biosynthesis                                                                                                                1.00000
## Estrogen Dependent Gene Expression                                                                                                   1.00000
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.00000
## Ethanol Oxidation                                                                                                                    1.00000
## Eukaryotic Translation Elongation                                                                                                    1.00000
## Eukaryotic Translation Initiation                                                                                                    1.00000
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.00000
## Extension Of Telomeres                                                                                                               1.00000
## Extracellular Matrix Organization                                                                                                    1.00000
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00000
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.00000
## Fanconi Anemia Pathway                                                                                                               1.00000
## Fasl Cd95l Signaling                                                                                                                 1.00000
## Fatty Acid Metabolism                                                                                                                1.00000
## Fatty Acids                                                                                                                          1.00000
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.00000
## Fatty Acyl Coa Biosynthesis                                                                                                          1.00000
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.00000
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.00000
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.00000
## Fceri Mediated Nf Kb Activation                                                                                                      1.00000
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.00000
## Fcgr Activation                                                                                                                      1.00000
## Fertilization                                                                                                                        1.00000
## Fgfr1 Ligand Binding And Activation                                                                                                  1.00000
## Fgfr1 Mutant Receptor Activation                                                                                                     1.00000
## Fgfr1b Ligand Binding And Activation                                                                                                 1.00000
## Fgfr1c Ligand Binding And Activation                                                                                                 1.00000
## Fgfr2 Alternative Splicing                                                                                                           1.00000
## Fgfr2 Ligand Binding And Activation                                                                                                  1.00000
## Fgfr2 Mutant Receptor Activation                                                                                                     1.00000
## Fgfr2b Ligand Binding And Activation                                                                                                 1.00000
## Fgfr2c Ligand Binding And Activation                                                                                                 1.00000
## Fgfr3 Ligand Binding And Activation                                                                                                  1.00000
## Fgfr3b Ligand Binding And Activation                                                                                                 1.00000
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.00000
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.00000
## Flt3 Signaling                                                                                                                       1.00000
## Flt3 Signaling By Cbl Mutants                                                                                                        1.00000
## Flt3 Signaling In Disease                                                                                                            1.00000
## Flt3 Signaling Through Src Family Kinases                                                                                            1.00000
## Folding Of Actin By Cct Tric                                                                                                         1.00000
## Formation Of Apoptosome                                                                                                              1.00000
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.00000
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.00000
## Formation Of Incision Complex In Gg Ner                                                                                              1.00000
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.00000
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.00000
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.00000
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.00000
## Formation Of The Cornified Envelope                                                                                                  1.00000
## Formation Of The Early Elongation Complex                                                                                            1.00000
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.00000
## Formation Of Xylulose 5 Phosphate                                                                                                    1.00000
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.00000
## Foxo Mediated Transcription                                                                                                          1.00000
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      1.00000
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      1.00000
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.00000
## Free Fatty Acid Receptors                                                                                                            1.00000
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.00000
## Frs Mediated Fgfr1 Signaling                                                                                                         1.00000
## Frs Mediated Fgfr2 Signaling                                                                                                         1.00000
## Frs Mediated Fgfr3 Signaling                                                                                                         1.00000
## Frs Mediated Fgfr4 Signaling                                                                                                         1.00000
## Fructose Catabolism                                                                                                                  1.00000
## Fructose Metabolism                                                                                                                  1.00000
## G Alpha 12 13 Signalling Events                                                                                                      1.00000
## G Alpha Q Signalling Events                                                                                                          1.00000
## G Alpha S Signalling Events                                                                                                          1.00000
## G Alpha Z Signalling Events                                                                                                          1.00000
## G Beta Gamma Signalling Through Cdc42                                                                                                1.00000
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.00000
## G Protein Activation                                                                                                                 1.00000
## G Protein Beta Gamma Signalling                                                                                                      1.00000
## G0 And Early G1                                                                                                                      1.00000
## G1 S Dna Damage Checkpoints                                                                                                          1.00000
## G1 S Specific Transcription                                                                                                          1.00000
## G2 M Checkpoints                                                                                                                     1.00000
## G2 M Dna Damage Checkpoint                                                                                                           1.00000
## G2 M Dna Replication Checkpoint                                                                                                      1.00000
## G2 Phase                                                                                                                             1.00000
## Gaba B Receptor Activation                                                                                                           1.00000
## Gaba Receptor Activation                                                                                                             1.00000
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.00000
## Galactose Catabolism                                                                                                                 1.00000
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.00000
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.00000
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.00000
## Gap Junction Assembly                                                                                                                1.00000
## Gap Junction Degradation                                                                                                             1.00000
## Gap Junction Trafficking And Regulation                                                                                              1.00000
## Gdp Fucose Biosynthesis                                                                                                              1.00000
## Gene Silencing By Rna                                                                                                                1.00000
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.00000
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.00000
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.00000
## Glucagon Signaling In Metabolic Regulation                                                                                           1.00000
## Glucagon Type Ligand Receptors                                                                                                       1.00000
## Glucocorticoid Biosynthesis                                                                                                          1.00000
## Gluconeogenesis                                                                                                                      1.00000
## Glucose Metabolism                                                                                                                   1.00000
## Glucuronidation                                                                                                                      1.00000
## Glutamate And Glutamine Metabolism                                                                                                   1.00000
## Glutamate Neurotransmitter Release Cycle                                                                                             1.00000
## Glutathione Conjugation                                                                                                              1.00000
## Glutathione Synthesis And Recycling                                                                                                  1.00000
## Glycerophospholipid Biosynthesis                                                                                                     1.00000
## Glycerophospholipid Catabolism                                                                                                       1.00000
## Glycogen Breakdown Glycogenolysis                                                                                                    1.00000
## Glycogen Metabolism                                                                                                                  1.00000
## Glycogen Storage Diseases                                                                                                            1.00000
## Glycogen Synthesis                                                                                                                   1.00000
## Glycolysis                                                                                                                           1.00000
## Glycosaminoglycan Metabolism                                                                                                         1.00000
## Glycosphingolipid Metabolism                                                                                                         1.00000
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.00000
## Golgi Associated Vesicle Biogenesis                                                                                                  1.00000
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  1.00000
## Golgi To Er Retrograde Transport                                                                                                     1.00000
## Gp1b Ix V Activation Signalling                                                                                                      1.00000
## Gpcr Ligand Binding                                                                                                                  1.00000
## Gpvi Mediated Activation Cascade                                                                                                     1.00000
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.00000
## Grb7 Events In Erbb2 Signaling                                                                                                       1.00000
## Growth Hormone Receptor Signaling                                                                                                    1.00000
## Hats Acetylate Histones                                                                                                              1.00000
## Hcmv Late Events                                                                                                                     1.00000
## Hdacs Deacetylate Histones                                                                                                           1.00000
## Hdl Assembly                                                                                                                         1.00000
## Hdl Clearance                                                                                                                        1.00000
## Hdl Remodeling                                                                                                                       1.00000
## Hdms Demethylate Histones                                                                                                            1.00000
## Hdr Through Homologous Recombination Hrr                                                                                             1.00000
## Hdr Through Mmej Alt Nhej                                                                                                            1.00000
## Hdr Through Single Strand Annealing Ssa                                                                                              1.00000
## Hedgehog Ligand Biogenesis                                                                                                           1.00000
## Hedgehog Off State                                                                                                                   1.00000
## Hedgehog On State                                                                                                                    1.00000
## Heme Biosynthesis                                                                                                                    1.00000
## Heme Degradation                                                                                                                     1.00000
## Hemostasis                                                                                                                           1.00000
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.00000
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.00000
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.00000
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.00000
## Histidine Catabolism                                                                                                                 1.00000
## Hiv Elongation Arrest And Recovery                                                                                                   1.00000
## Hiv Infection                                                                                                                        1.00000
## Hiv Life Cycle                                                                                                                       1.00000
## Hiv Transcription Elongation                                                                                                         1.00000
## Hiv Transcription Initiation                                                                                                         1.00000
## Homologous Dna Pairing And Strand Exchange                                                                                           1.00000
## Homology Directed Repair                                                                                                             1.00000
## Hormone Ligand Binding Receptors                                                                                                     1.00000
## Host Interactions Of Hiv Factors                                                                                                     1.00000
## Hs Gag Biosynthesis                                                                                                                  1.00000
## Hs Gag Degradation                                                                                                                   1.00000
## Hsf1 Activation                                                                                                                      1.00000
## Hsf1 Dependent Transactivation                                                                                                       1.00000
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.00000
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.00000
## Hyaluronan Biosynthesis And Export                                                                                                   1.00000
## Hyaluronan Metabolism                                                                                                                1.00000
## Hyaluronan Uptake And Degradation                                                                                                    1.00000
## Hydrolysis Of Lpc                                                                                                                    1.00000
## Ikba Variant Leads To Eda Id                                                                                                         1.00000
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.00000
## Inactivation Of Cdc42 And Rac1                                                                                                       1.00000
## Inactivation Of Csf3 G Csf Signaling                                                                                                 1.00000
## Incretin Synthesis Secretion And Inactivation                                                                                        1.00000
## Infection With Mycobacterium Tuberculosis                                                                                            1.00000
## Infectious Disease                                                                                                                   1.00000
## Influenza Infection                                                                                                                  1.00000
## Inhibition Of Dna Recombination At Telomere                                                                                          1.00000
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.00000
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.00000
## Initial Triggering Of Complement                                                                                                     1.00000
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        1.00000
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.00000
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.00000
## Innate Immune System                                                                                                                 1.00000
## Inositol Phosphate Metabolism                                                                                                        1.00000
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.00000
## Insulin Processing                                                                                                                   1.00000
## Insulin Receptor Recycling                                                                                                           1.00000
## Insulin Receptor Signalling Cascade                                                                                                  1.00000
## Integration Of Energy Metabolism                                                                                                     1.00000
## Integration Of Provirus                                                                                                              1.00000
## Integrin Cell Surface Interactions                                                                                                   1.00000
## Integrin Signaling                                                                                                                   1.00000
## Interaction Between L1 And Ankyrins                                                                                                  1.00000
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.00000
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.00000
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.00000
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.00000
## Interferon Alpha Beta Signaling                                                                                                      1.00000
## Interferon Signaling                                                                                                                 1.00000
## Interleukin 15 Signaling                                                                                                             1.00000
## Interleukin 2 Family Signaling                                                                                                       1.00000
## Interleukin 2 Signaling                                                                                                              1.00000
## Interleukin 20 Family Signaling                                                                                                      1.00000
## Interleukin 21 Signaling                                                                                                             1.00000
## Interleukin 23 Signaling                                                                                                             1.00000
## Interleukin 27 Signaling                                                                                                             1.00000
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.00000
## Interleukin 35 Signalling                                                                                                            1.00000
## Interleukin 36 Pathway                                                                                                               1.00000
## Interleukin 37 Signaling                                                                                                             1.00000
## Interleukin 7 Signaling                                                                                                              1.00000
## Interleukin 9 Signaling                                                                                                              1.00000
## Interleukin Receptor Shc Signaling                                                                                                   1.00000
## Intestinal Absorption                                                                                                                1.00000
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.00000
## Intra Golgi Traffic                                                                                                                  1.00000
## Intracellular Signaling By Second Messengers                                                                                         1.00000
## Intraflagellar Transport                                                                                                             1.00000
## Intrinsic Pathway For Apoptosis                                                                                                      1.00000
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00000
## Inwardly Rectifying K Channels                                                                                                       1.00000
## Ion Channel Transport                                                                                                                1.00000
## Ion Homeostasis                                                                                                                      1.00000
## Ion Transport By P Type Atpases                                                                                                      1.00000
## Ionotropic Activity Of Kainate Receptors                                                                                             1.00000
## Irak1 Recruits Ikk Complex                                                                                                           1.00000
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.00000
## Irak4 Deficiency Tlr2 4                                                                                                              1.00000
## Ire1alpha Activates Chaperones                                                                                                       1.00000
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.00000
## Iron Uptake And Transport                                                                                                            1.00000
## Irs Activation                                                                                                                       1.00000
## Irs Mediated Signalling                                                                                                              1.00000
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.00000
## Josephin Domain Dubs                                                                                                                 1.00000
## Keratan Sulfate Biosynthesis                                                                                                         1.00000
## Keratan Sulfate Degradation                                                                                                          1.00000
## Keratan Sulfate Keratin Metabolism                                                                                                   1.00000
## Keratinization                                                                                                                       1.00000
## Ketone Body Metabolism                                                                                                               1.00000
## Kinesins                                                                                                                             1.00000
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.00000
## Lagging Strand Synthesis                                                                                                             1.00000
## Laminin Interactions                                                                                                                 1.00000
## Late Endosomal Microautophagy                                                                                                        1.00000
## Lectin Pathway Of Complement Activation                                                                                              1.00000
## Leukotriene Receptors                                                                                                                1.00000
## Lgi Adam Interactions                                                                                                                1.00000
## Ligand Receptor Interactions                                                                                                         1.00000
## Linoleic Acid La Metabolism                                                                                                          1.00000
## Lipid Particle Organization                                                                                                          1.00000
## Lipophagy                                                                                                                            1.00000
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.00000
## Long Term Potentiation                                                                                                               1.00000
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.00000
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.00000
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.00000
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.00000
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.00000
## Lysine Catabolism                                                                                                                    1.00000
## Lysosome Vesicle Biogenesis                                                                                                          1.00000
## Lysosphingolipid And Lpa Receptors                                                                                                   1.00000
## M Phase                                                                                                                              1.00000
## Map2k And Mapk Activation                                                                                                            1.00000
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.00000
## Mapk Family Signaling Cascades                                                                                                       1.00000
## Mapk6 Mapk4 Signaling                                                                                                                1.00000
## Mastl Facilitates Mitotic Progression                                                                                                1.00000
## Maturation Of Nucleoprotein                                                                                                          1.00000
## Maturation Of Protein 3a                                                                                                             1.00000
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.00000
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.00000
## Meiosis                                                                                                                              1.00000
## Meiotic Recombination                                                                                                                1.00000
## Meiotic Synapsis                                                                                                                     1.00000
## Melanin Biosynthesis                                                                                                                 1.00000
## Membrane Trafficking                                                                                                                 1.00000
## Met Activates Pi3k Akt Signaling                                                                                                     1.00000
## Met Activates Ptk2 Signaling                                                                                                         1.00000
## Met Activates Ptpn11                                                                                                                 1.00000
## Met Activates Rap1 And Rac1                                                                                                          1.00000
## Met Activates Ras Signaling                                                                                                          1.00000
## Met Interacts With Tns Proteins                                                                                                      1.00000
## Met Promotes Cell Motility                                                                                                           1.00000
## Met Receptor Activation                                                                                                              1.00000
## Met Receptor Recycling                                                                                                               1.00000
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.00000
## Metabolism Of Amine Derived Hormones                                                                                                 1.00000
## Metabolism Of Amino Acids And Derivatives                                                                                            1.00000
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.00000
## Metabolism Of Carbohydrates                                                                                                          1.00000
## Metabolism Of Cofactors                                                                                                              1.00000
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.00000
## Metabolism Of Folate And Pterines                                                                                                    1.00000
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.00000
## Metabolism Of Lipids                                                                                                                 1.00000
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            1.00000
## Metabolism Of Nucleotides                                                                                                            1.00000
## Metabolism Of Polyamines                                                                                                             1.00000
## Metabolism Of Porphyrins                                                                                                             1.00000
## Metabolism Of Rna                                                                                                                    1.00000
## Metabolism Of Steroid Hormones                                                                                                       1.00000
## Metabolism Of Steroids                                                                                                               1.00000
## Metabolism Of Vitamins And Cofactors                                                                                                 1.00000
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.00000
## Metal Ion Slc Transporters                                                                                                           1.00000
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.00000
## Metalloprotease Dubs                                                                                                                 1.00000
## Metallothioneins Bind Metals                                                                                                         1.00000
## Methionine Salvage Pathway                                                                                                           1.00000
## Methylation                                                                                                                          1.00000
## Microrna Mirna Biogenesis                                                                                                            1.00000
## Mineralocorticoid Biosynthesis                                                                                                       1.00000
## Miro Gtpase Cycle                                                                                                                    1.00000
## Miscellaneous Substrates                                                                                                             1.00000
## Miscellaneous Transport And Binding Events                                                                                           1.00000
## Mismatch Repair                                                                                                                      1.00000
## Mitochondrial Calcium Ion Transport                                                                                                  1.00000
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.00000
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.00000
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.00000
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.00000
## Mitochondrial Protein Import                                                                                                         1.00000
## Mitochondrial Translation                                                                                                            1.00000
## Mitochondrial Trna Aminoacylation                                                                                                    1.00000
## Mitochondrial Uncoupling                                                                                                             1.00000
## Mitophagy                                                                                                                            1.00000
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.00000
## Mitotic G2 G2 M Phases                                                                                                               1.00000
## Mitotic Metaphase And Anaphase                                                                                                       1.00000
## Mitotic Prometaphase                                                                                                                 1.00000
## Mitotic Prophase                                                                                                                     1.00000
## Mitotic Spindle Checkpoint                                                                                                           1.00000
## Mitotic Telophase Cytokinesis                                                                                                        1.00000
## Modulation By Mtb Of Host Immune System                                                                                              1.00000
## Molecules Associated With Elastic Fibres                                                                                             1.00000
## Molybdenum Cofactor Biosynthesis                                                                                                     1.00000
## Mrna Capping                                                                                                                         1.00000
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.00000
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.00000
## Mrna Editing                                                                                                                         1.00000
## Mrna Editing C To U Conversion                                                                                                       1.00000
## Mrna Splicing                                                                                                                        1.00000
## Mrna Splicing Minor Pathway                                                                                                          1.00000
## Mtor Signalling                                                                                                                      1.00000
## Mtorc1 Mediated Signalling                                                                                                           1.00000
## Mucopolysaccharidoses                                                                                                                1.00000
## Multifunctional Anion Exchangers                                                                                                     1.00000
## Muscarinic Acetylcholine Receptors                                                                                                   1.00000
## Muscle Contraction                                                                                                                   1.00000
## Myoclonic Epilepsy Of Lafora                                                                                                         1.00000
## Myogenesis                                                                                                                           1.00000
## N Glycan Antennae Elongation                                                                                                         1.00000
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.00000
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.00000
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.00000
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.00000
## Nade Modulates Death Signalling                                                                                                      1.00000
## Ncam1 Interactions                                                                                                                   1.00000
## Nectin Necl Trans Heterodimerization                                                                                                 1.00000
## Neddylation                                                                                                                          1.00000
## Nef And Signal Transduction                                                                                                          1.00000
## Nef Mediated Cd4 Down Regulation                                                                                                     1.00000
## Nef Mediated Cd8 Down Regulation                                                                                                     1.00000
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.00000
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.00000
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.00000
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.00000
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.00000
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.00000
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.00000
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.00000
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.00000
## Negative Regulation Of Flt3                                                                                                          1.00000
## Negative Regulation Of Mapk Pathway                                                                                                  1.00000
## Negative Regulation Of Met Activity                                                                                                  1.00000
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.00000
## Negative Regulation Of Notch4 Signaling                                                                                              1.00000
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.00000
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.00000
## Nephrin Family Interactions                                                                                                          1.00000
## Nervous System Development                                                                                                           1.00000
## Netrin 1 Signaling                                                                                                                   1.00000
## Netrin Mediated Repulsion Signals                                                                                                    1.00000
## Neurexins And Neuroligins                                                                                                            1.00000
## Neurofascin Interactions                                                                                                             1.00000
## Neuronal System                                                                                                                      1.00000
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.00000
## Neurotransmitter Clearance                                                                                                           1.00000
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.00000
## Neurotransmitter Release Cycle                                                                                                       1.00000
## Neutrophil Degranulation                                                                                                             1.00000
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.00000
## Nf Kb Is Activated And Signals Survival                                                                                              1.00000
## Ngf Independant Trka Activation                                                                                                      1.00000
## Nicotinamide Salvaging                                                                                                               1.00000
## Nicotinate Metabolism                                                                                                                1.00000
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.00000
## Non Integrin Membrane Ecm Interactions                                                                                               1.00000
## Noncanonical Activation Of Notch3                                                                                                    1.00000
## Nonhomologous End Joining Nhej                                                                                                       1.00000
## Nonsense Mediated Decay Nmd                                                                                                          1.00000
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.00000
## Nostrin Mediated Enos Trafficking                                                                                                    1.00000
## Notch Hlh Transcription Pathway                                                                                                      1.00000
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.00000
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.00000
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.00000
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.00000
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.00000
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.00000
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.00000
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.00000
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.00000
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.00000
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.00000
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.00000
## Nrage Signals Death Through Jnk                                                                                                      1.00000
## Nrcam Interactions                                                                                                                   1.00000
## Nrif Signals Cell Death From The Nucleus                                                                                             1.00000
## Ns1 Mediated Effects On Host Pathways                                                                                                1.00000
## Ntrk2 Activates Rac1                                                                                                                 1.00000
## Nuclear Envelope Breakdown                                                                                                           1.00000
## Nuclear Envelope Ne Reassembly                                                                                                       1.00000
## Nuclear Import Of Rev Protein                                                                                                        1.00000
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.00000
## Nuclear Receptor Transcription Pathway                                                                                               1.00000
## Nuclear Signaling By Erbb4                                                                                                           1.00000
## Nucleobase Biosynthesis                                                                                                              1.00000
## Nucleobase Catabolism                                                                                                                1.00000
## Nucleotide Excision Repair                                                                                                           1.00000
## Nucleotide Like Purinergic Receptors                                                                                                 1.00000
## Nucleotide Salvage                                                                                                                   1.00000
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.00000
## Oas Antiviral Response                                                                                                               1.00000
## Olfactory Signaling Pathway                                                                                                          1.00000
## Oncogene Induced Senescence                                                                                                          1.00000
## Oncogenic Mapk Signaling                                                                                                             1.00000
## Opsins                                                                                                                               1.00000
## Orc1 Removal From Chromatin                                                                                                          1.00000
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.00000
## Organelle Biogenesis And Maintenance                                                                                                 1.00000
## Organic Anion Transport                                                                                                              1.00000
## Organic Anion Transporters                                                                                                           1.00000
## Organic Cation Anion Zwitterion Transport                                                                                            1.00000
## Organic Cation Transport                                                                                                             1.00000
## Other Interleukin Signaling                                                                                                          1.00000
## Other Semaphorin Interactions                                                                                                        1.00000
## Ovarian Tumor Domain Proteases                                                                                                       1.00000
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.00000
## P2y Receptors                                                                                                                        1.00000
## P38mapk Events                                                                                                                       1.00000
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.00000
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.00000
## P75ntr Recruits Signalling Complexes                                                                                                 1.00000
## P75ntr Regulates Axonogenesis                                                                                                        1.00000
## P75ntr Signals Via Nf Kb                                                                                                             1.00000
## Parasite Infection                                                                                                                   1.00000
## Passive Transport By Aquaporins                                                                                                      1.00000
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.00000
## Pecam1 Interactions                                                                                                                  1.00000
## Pentose Phosphate Pathway                                                                                                            1.00000
## Peptide Hormone Biosynthesis                                                                                                         1.00000
## Peptide Hormone Metabolism                                                                                                           1.00000
## Peroxisomal Lipid Metabolism                                                                                                         1.00000
## Peroxisomal Protein Import                                                                                                           1.00000
## Pexophagy                                                                                                                            1.00000
## Phase 0 Rapid Depolarisation                                                                                                         1.00000
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.00000
## Phase 2 Plateau Phase                                                                                                                1.00000
## Phase 3 Rapid Repolarisation                                                                                                         1.00000
## Phase 4 Resting Membrane Potential                                                                                                   1.00000
## Phase I Functionalization Of Compounds                                                                                               1.00000
## Phase Ii Conjugation Of Compounds                                                                                                    1.00000
## Phenylalanine And Tyrosine Metabolism                                                                                                1.00000
## Phenylalanine Metabolism                                                                                                             1.00000
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.00000
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.00000
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.00000
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.00000
## Phospholipid Metabolism                                                                                                              1.00000
## Phosphorylation Of Emi1                                                                                                              1.00000
## Phosphorylation Of The Apc C                                                                                                         1.00000
## Physiological Factors                                                                                                                1.00000
## Pi 3k Cascade Fgfr1                                                                                                                  1.00000
## Pi 3k Cascade Fgfr2                                                                                                                  1.00000
## Pi 3k Cascade Fgfr3                                                                                                                  1.00000
## Pi 3k Cascade Fgfr4                                                                                                                  1.00000
## Pi Metabolism                                                                                                                        1.00000
## Pi3k Akt Activation                                                                                                                  1.00000
## Pi3k Events In Erbb4 Signaling                                                                                                       1.00000
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.00000
## Pink1 Prkn Mediated Mitophagy                                                                                                        1.00000
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.00000
## Pka Activation In Glucagon Signalling                                                                                                1.00000
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.00000
## Pkmts Methylate Histone Lysines                                                                                                      1.00000
## Plasma Lipoprotein Assembly                                                                                                          1.00000
## Plasma Lipoprotein Remodeling                                                                                                        1.00000
## Platelet Activation Signaling And Aggregation                                                                                        1.00000
## Platelet Adhesion To Exposed Collagen                                                                                                1.00000
## Platelet Aggregation Plug Formation                                                                                                  1.00000
## Platelet Calcium Homeostasis                                                                                                         1.00000
## Platelet Homeostasis                                                                                                                 1.00000
## Platelet Sensitization By Ldl                                                                                                        1.00000
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.00000
## Polo Like Kinase Mediated Events                                                                                                     1.00000
## Polymerase Switching                                                                                                                 1.00000
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.00000
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.00000
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.00000
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.00000
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.00000
## Potassium Channels                                                                                                                   1.00000
## Potential Therapeutics For Sars                                                                                                      1.00000
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       1.00000
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.00000
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.00000
## Pre Notch Expression And Processing                                                                                                  1.00000
## Pre Notch Processing In Golgi                                                                                                        1.00000
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.00000
## Pregnenolone Biosynthesis                                                                                                            1.00000
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.00000
## Presynaptic Function Of Kainate Receptors                                                                                            1.00000
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.00000
## Processing And Activation Of Sumo                                                                                                    1.00000
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.00000
## Processing Of Capped Intronless Pre Mrna                                                                                             1.00000
## Processing Of Dna Double Strand Break Ends                                                                                           1.00000
## Processing Of Intronless Pre Mrnas                                                                                                   1.00000
## Processing Of Smdt1                                                                                                                  1.00000
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.00000
## Processive Synthesis On The Lagging Strand                                                                                           1.00000
## Prolactin Receptor Signaling                                                                                                         1.00000
## Prolonged Erk Activation Events                                                                                                      1.00000
## Propionyl Coa Catabolism                                                                                                             1.00000
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.00000
## Prostanoid Ligand Receptors                                                                                                          1.00000
## Protein Folding                                                                                                                      1.00000
## Protein Localization                                                                                                                 1.00000
## Protein Methylation                                                                                                                  1.00000
## Protein Protein Interactions At Synapses                                                                                             1.00000
## Protein Repair                                                                                                                       1.00000
## Protein Ubiquitination                                                                                                               1.00000
## Proton Coupled Monocarboxylate Transport                                                                                             1.00000
## Pten Regulation                                                                                                                      1.00000
## Ptk6 Expression                                                                                                                      1.00000
## Ptk6 Regulates Cell Cycle                                                                                                            1.00000
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.00000
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.00000
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.00000
## Purine Catabolism                                                                                                                    1.00000
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.00000
## Purine Salvage                                                                                                                       1.00000
## Pyrimidine Catabolism                                                                                                                1.00000
## Pyrimidine Salvage                                                                                                                   1.00000
## Pyruvate Metabolism                                                                                                                  1.00000
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.00000
## Ra Biosynthesis Pathway                                                                                                              1.00000
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.00000
## Rab Geranylgeranylation                                                                                                              1.00000
## Rab Regulation Of Trafficking                                                                                                        1.00000
## Rac1 Gtpase Cycle                                                                                                                    1.00000
## Rac2 Gtpase Cycle                                                                                                                    1.00000
## Rac3 Gtpase Cycle                                                                                                                    1.00000
## Raf Activation                                                                                                                       1.00000
## Rap1 Signalling                                                                                                                      1.00000
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.00000
## Ras Processing                                                                                                                       1.00000
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.00000
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.00000
## Receptor Mediated Mitophagy                                                                                                          1.00000
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.00000
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.00000
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.00000
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.00000
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.00000
## Recycling Of Bile Acids And Salts                                                                                                    1.00000
## Recycling Of Eif2 Gdp                                                                                                                1.00000
## Recycling Pathway Of L1                                                                                                              1.00000
## Reduction Of Cytosolic Ca Levels                                                                                                     1.00000
## Reelin Signalling Pathway                                                                                                            1.00000
## Regulated Proteolysis Of P75ntr                                                                                                      1.00000
## Regulation By C Flip                                                                                                                 1.00000
## Regulation Of Bach1 Activity                                                                                                         1.00000
## Regulation Of Beta Cell Development                                                                                                  1.00000
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.00000
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.00000
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.00000
## Regulation Of Expression Of Slits And Robos                                                                                          1.00000
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           1.00000
## Regulation Of Fzd By Ubiquitination                                                                                                  1.00000
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.00000
## Regulation Of Gene Expression In Beta Cells                                                                                          1.00000
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.00000
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.00000
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.00000
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.00000
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.00000
## Regulation Of Hmox1 Expression And Activity                                                                                          1.00000
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.00000
## Regulation Of Ifna Signaling                                                                                                         1.00000
## Regulation Of Ifng Signaling                                                                                                         1.00000
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.00000
## Regulation Of Insulin Secretion                                                                                                      1.00000
## Regulation Of Kit Signaling                                                                                                          1.00000
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.00000
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.00000
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.00000
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.00000
## Regulation Of Pten Gene Transcription                                                                                                1.00000
## Regulation Of Pten Localization                                                                                                      1.00000
## Regulation Of Pten Mrna Translation                                                                                                  1.00000
## Regulation Of Pten Stability And Activity                                                                                            1.00000
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.00000
## Regulation Of Ras By Gaps                                                                                                            1.00000
## Regulation Of Runx1 Expression And Activity                                                                                          1.00000
## Regulation Of Runx2 Expression And Activity                                                                                          1.00000
## Regulation Of Runx3 Expression And Activity                                                                                          1.00000
## Regulation Of Signaling By Cbl                                                                                                       1.00000
## Regulation Of Signaling By Nodal                                                                                                     1.00000
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.00000
## Regulation Of Tp53 Activity                                                                                                          1.00000
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.00000
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.00000
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.00000
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.00000
## Regulation Of Tp53 Expression And Degradation                                                                                        1.00000
## Relaxin Receptors                                                                                                                    1.00000
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.00000
## Release Of Hh Np From The Secreting Cell                                                                                             1.00000
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.00000
## Repression Of Wnt Target Genes                                                                                                       1.00000
## Reproduction                                                                                                                         1.00000
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.00000
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.00000
## Resolution Of D Loop Structures                                                                                                      1.00000
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.00000
## Resolution Of Sister Chromatid Cohesion                                                                                              1.00000
## Respiratory Electron Transport                                                                                                       1.00000
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.00000
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.00000
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.00000
## Response Of Mtb To Phagocytosis                                                                                                      1.00000
## Response To Metal Ions                                                                                                               1.00000
## Ret Signaling                                                                                                                        1.00000
## Retinoid Cycle Disease Events                                                                                                        1.00000
## Retrograde Neurotrophin Signalling                                                                                                   1.00000
## Retrograde Transport At The Trans Golgi Network                                                                                      1.00000
## Reversible Hydration Of Carbon Dioxide                                                                                               1.00000
## Rho Gtpase Cycle                                                                                                                     1.00000
## Rho Gtpase Effectors                                                                                                                 1.00000
## Rho Gtpases Activate Cit                                                                                                             1.00000
## Rho Gtpases Activate Formins                                                                                                         1.00000
## Rho Gtpases Activate Iqgaps                                                                                                          1.00000
## Rho Gtpases Activate Ktn1                                                                                                            1.00000
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.00000
## Rho Gtpases Activate Paks                                                                                                            1.00000
## Rho Gtpases Activate Pkns                                                                                                            1.00000
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.00000
## Rho Gtpases Activate Rocks                                                                                                           1.00000
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.00000
## Rhoa Gtpase Cycle                                                                                                                    1.00000
## Rhob Gtpase Cycle                                                                                                                    1.00000
## Rhobtb Gtpase Cycle                                                                                                                  1.00000
## Rhobtb1 Gtpase Cycle                                                                                                                 1.00000
## Rhobtb2 Gtpase Cycle                                                                                                                 1.00000
## Rhobtb3 Atpase Cycle                                                                                                                 1.00000
## Rhoc Gtpase Cycle                                                                                                                    1.00000
## Rhod Gtpase Cycle                                                                                                                    1.00000
## Rhof Gtpase Cycle                                                                                                                    1.00000
## Rhog Gtpase Cycle                                                                                                                    1.00000
## Rhoh Gtpase Cycle                                                                                                                    1.00000
## Rhoj Gtpase Cycle                                                                                                                    1.00000
## Rhoq Gtpase Cycle                                                                                                                    1.00000
## Rhot1 Gtpase Cycle                                                                                                                   1.00000
## Rhou Gtpase Cycle                                                                                                                    1.00000
## Rhov Gtpase Cycle                                                                                                                    1.00000
## Rna Polymerase I Promoter Escape                                                                                                     1.00000
## Rna Polymerase I Transcription                                                                                                       1.00000
## Rna Polymerase I Transcription Initiation                                                                                            1.00000
## Rna Polymerase I Transcription Termination                                                                                           1.00000
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.00000
## Rna Polymerase Ii Transcription Termination                                                                                          1.00000
## Rna Polymerase Iii Chain Elongation                                                                                                  1.00000
## Rna Polymerase Iii Transcription                                                                                                     1.00000
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.00000
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.00000
## Rna Polymerase Iii Transcription Termination                                                                                         1.00000
## Rnd1 Gtpase Cycle                                                                                                                    1.00000
## Rnd2 Gtpase Cycle                                                                                                                    1.00000
## Rnd3 Gtpase Cycle                                                                                                                    1.00000
## Robo Receptors Bind Akap5                                                                                                            1.00000
## Role Of Abl In Robo Slit Signaling                                                                                                   1.00000
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.00000
## Role Of Phospholipids In Phagocytosis                                                                                                1.00000
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.00000
## Rora Activates Gene Expression                                                                                                       1.00000
## Ros And Rns Production In Phagocytes                                                                                                 1.00000
## Rrna Modification In The Mitochondrion                                                                                               1.00000
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.00000
## Rrna Processing                                                                                                                      1.00000
## Rrna Processing In The Mitochondrion                                                                                                 1.00000
## Rsk Activation                                                                                                                       1.00000
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.00000
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.00000
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.00000
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.00000
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.00000
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.00000
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.00000
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.00000
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  1.00000
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.00000
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.00000
## Runx2 Regulates Bone Development                                                                                                     1.00000
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.00000
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.00000
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.00000
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.00000
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.00000
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.00000
## Runx3 Regulates Notch Signaling                                                                                                      1.00000
## Runx3 Regulates P14 Arf                                                                                                              1.00000
## Runx3 Regulates Wnt Signaling                                                                                                        1.00000
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.00000
## S Phase                                                                                                                              1.00000
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.00000
## Sars Cov 1 Infection                                                                                                                 1.00000
## Sars Cov 2 Infection                                                                                                                 1.00000
## Sars Cov Infections                                                                                                                  1.00000
## Scavenging By Class A Receptors                                                                                                      1.00000
## Scavenging By Class B Receptors                                                                                                      1.00000
## Scavenging By Class F Receptors                                                                                                      1.00000
## Scavenging Of Heme From Plasma                                                                                                       1.00000
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.00000
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.00000
## Selective Autophagy                                                                                                                  1.00000
## Selenoamino Acid Metabolism                                                                                                          1.00000
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.00000
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.00000
## Sema4d In Semaphorin Signaling                                                                                                       1.00000
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.00000
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.00000
## Semaphorin Interactions                                                                                                              1.00000
## Sensing Of Dna Double Strand Breaks                                                                                                  1.00000
## Sensory Perception                                                                                                                   1.00000
## Sensory Processing Of Sound                                                                                                          1.00000
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.00000
## Separation Of Sister Chromatids                                                                                                      1.00000
## Serine Biosynthesis                                                                                                                  1.00000
## Serotonin And Melatonin Biosynthesis                                                                                                 1.00000
## Serotonin Neurotransmitter Release Cycle                                                                                             1.00000
## Serotonin Receptors                                                                                                                  1.00000
## Shc Mediated Cascade Fgfr1                                                                                                           1.00000
## Shc Mediated Cascade Fgfr3                                                                                                           1.00000
## Shc Mediated Cascade Fgfr4                                                                                                           1.00000
## Shc Related Events Triggered By Igf1r                                                                                                1.00000
## Shc1 Events In Erbb4 Signaling                                                                                                       1.00000
## Signal Amplification                                                                                                                 1.00000
## Signal Attenuation                                                                                                                   1.00000
## Signal Regulatory Protein Family Interactions                                                                                        1.00000
## Signaling By Activin                                                                                                                 1.00000
## Signaling By Bmp                                                                                                                     1.00000
## Signaling By Braf And Raf Fusions                                                                                                    1.00000
## Signaling By Csf3 G Csf                                                                                                              1.00000
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.00000
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          1.00000
## Signaling By Erythropoietin                                                                                                          1.00000
## Signaling By Fgfr                                                                                                                    1.00000
## Signaling By Fgfr In Disease                                                                                                         1.00000
## Signaling By Fgfr1                                                                                                                   1.00000
## Signaling By Fgfr1 In Disease                                                                                                        1.00000
## Signaling By Fgfr2                                                                                                                   1.00000
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.00000
## Signaling By Fgfr2 In Disease                                                                                                        1.00000
## Signaling By Fgfr3                                                                                                                   1.00000
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.00000
## Signaling By Fgfr4                                                                                                                   1.00000
## Signaling By Fgfr4 In Disease                                                                                                        1.00000
## Signaling By Flt3 Fusion Proteins                                                                                                    1.00000
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.00000
## Signaling By Gpcr                                                                                                                    1.00000
## Signaling By Hedgehog                                                                                                                1.00000
## Signaling By Hippo                                                                                                                   1.00000
## Signaling By Insulin Receptor                                                                                                        1.00000
## Signaling By Kit In Disease                                                                                                          1.00000
## Signaling By Leptin                                                                                                                  1.00000
## Signaling By Lrp5 Mutants                                                                                                            1.00000
## Signaling By Mapk Mutants                                                                                                            1.00000
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.00000
## Signaling By Met                                                                                                                     1.00000
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.00000
## Signaling By Mras Complex Mutants                                                                                                    1.00000
## Signaling By Mst1                                                                                                                    1.00000
## Signaling By Nodal                                                                                                                   1.00000
## Signaling By Notch                                                                                                                   1.00000
## Signaling By Notch1                                                                                                                  1.00000
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.00000
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    1.00000
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.00000
## Signaling By Notch4                                                                                                                  1.00000
## Signaling By Ntrk2 Trkb                                                                                                              1.00000
## Signaling By Ntrk3 Trkc                                                                                                              1.00000
## Signaling By Nuclear Receptors                                                                                                       1.00000
## Signaling By Pdgf                                                                                                                    1.00000
## Signaling By Pdgfr In Disease                                                                                                        1.00000
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            1.00000
## Signaling By Receptor Tyrosine Kinases                                                                                               1.00000
## Signaling By Retinoic Acid                                                                                                           1.00000
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.00000
## Signaling By Rnf43 Mutants                                                                                                           1.00000
## Signaling By Robo Receptors                                                                                                          1.00000
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.00000
## Signaling By The B Cell Receptor Bcr                                                                                                 1.00000
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.00000
## Signaling By Vegf                                                                                                                    1.00000
## Signaling By Wnt                                                                                                                     1.00000
## Signaling By Wnt In Cancer                                                                                                           1.00000
## Signalling To Erks                                                                                                                   1.00000
## Signalling To P38 Via Rit And Rin                                                                                                    1.00000
## Signalling To Ras                                                                                                                    1.00000
## Sirt1 Negatively Regulates Rrna Expression                                                                                           1.00000
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.00000
## Slc Mediated Transmembrane Transport                                                                                                 1.00000
## Slc Transporter Disorders                                                                                                            1.00000
## Smac Xiap Regulated Apoptotic Response                                                                                               1.00000
## Small Interfering Rna Sirna Biogenesis                                                                                               1.00000
## Smooth Muscle Contraction                                                                                                            1.00000
## Snrnp Assembly                                                                                                                       1.00000
## Sodium Calcium Exchangers                                                                                                            1.00000
## Sodium Coupled Phosphate Cotransporters                                                                                              1.00000
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.00000
## Sodium Proton Exchangers                                                                                                             1.00000
## Sos Mediated Signalling                                                                                                              1.00000
## Sperm Motility And Taxes                                                                                                             1.00000
## Sphingolipid De Novo Biosynthesis                                                                                                    1.00000
## Sphingolipid Metabolism                                                                                                              1.00000
## Spry Regulation Of Fgf Signaling                                                                                                     1.00000
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.00000
## Stabilization Of P53                                                                                                                 1.00000
## Stat5 Activation                                                                                                                     1.00000
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.00000
## Striated Muscle Contraction                                                                                                          1.00000
## Sulfide Oxidation To Sulfate                                                                                                         1.00000
## Sulfur Amino Acid Metabolism                                                                                                         1.00000
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.00000
## Sumo Is Proteolytically Processed                                                                                                    1.00000
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.00000
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.00000
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.00000
## Sumoylation Of Dna Replication Proteins                                                                                              1.00000
## Sumoylation Of Immune Response Proteins                                                                                              1.00000
## Sumoylation Of Intracellular Receptors                                                                                               1.00000
## Sumoylation Of Rna Binding Proteins                                                                                                  1.00000
## Sumoylation Of Sumoylation Proteins                                                                                                  1.00000
## Sumoylation Of Transcription Factors                                                                                                 1.00000
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.00000
## Suppression Of Apoptosis                                                                                                             1.00000
## Suppression Of Phagosomal Maturation                                                                                                 1.00000
## Surfactant Metabolism                                                                                                                1.00000
## Switching Of Origins To A Post Replicative State                                                                                     1.00000
## Synaptic Adhesion Like Molecules                                                                                                     1.00000
## Syndecan Interactions                                                                                                                1.00000
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.00000
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    1.00000
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.00000
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.00000
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.00000
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.00000
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.00000
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.00000
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.00000
## Synthesis Of Diphthamide Eef2                                                                                                        1.00000
## Synthesis Of Dolichyl Phosphate                                                                                                      1.00000
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.00000
## Synthesis Of Gdp Mannose                                                                                                             1.00000
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.00000
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.00000
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.00000
## Synthesis Of Ketone Bodies                                                                                                           1.00000
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.00000
## Synthesis Of Lipoxins Lx                                                                                                             1.00000
## Synthesis Of Pa                                                                                                                      1.00000
## Synthesis Of Pc                                                                                                                      1.00000
## Synthesis Of Pe                                                                                                                      1.00000
## Synthesis Of Pg                                                                                                                      1.00000
## Synthesis Of Pi                                                                                                                      1.00000
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.00000
## Synthesis Of Pips At The Er Membrane                                                                                                 1.00000
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.00000
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.00000
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.00000
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   1.00000
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.00000
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.00000
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.00000
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.00000
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.00000
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                1.00000
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             1.00000
## Tachykinin Receptors Bind Tachykinins                                                                                                1.00000
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.00000
## Tandem Pore Domain Potassium Channels                                                                                                1.00000
## Tbc Rabgaps                                                                                                                          1.00000
## Tcf Dependent Signaling In Response To Wnt                                                                                           1.00000
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.00000
## Telomere C Strand Synthesis Initiation                                                                                               1.00000
## Telomere Extension By Telomerase                                                                                                     1.00000
## Telomere Maintenance                                                                                                                 1.00000
## Terminal Pathway Of Complement                                                                                                       1.00000
## Termination Of Translesion Dna Synthesis                                                                                             1.00000
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.00000
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.00000
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.00000
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.00000
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.00000
## The Activation Of Arylsulfatases                                                                                                     1.00000
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.00000
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.00000
## The Fatty Acid Cycling Model                                                                                                         1.00000
## The Nlrp3 Inflammasome                                                                                                               1.00000
## The Phototransduction Cascade                                                                                                        1.00000
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.00000
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.00000
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.00000
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.00000
## Thromboxane Signalling Through Tp Receptor                                                                                           1.00000
## Thyroxine Biosynthesis                                                                                                               1.00000
## Tie2 Signaling                                                                                                                       1.00000
## Tight Junction Interactions                                                                                                          1.00000
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 1.00000
## Tnfr1 Mediated Ceramide Production                                                                                                   1.00000
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.00000
## Tp53 Regulates Metabolic Genes                                                                                                       1.00000
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.00000
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.00000
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.00000
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.00000
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.00000
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.00000
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.00000
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               1.00000
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.00000
## Traf3 Dependent Irf Activation Pathway                                                                                               1.00000
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         1.00000
## Traf6 Mediated Irf7 Activation                                                                                                       1.00000
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.00000
## Traf6 Mediated Nf Kb Activation                                                                                                      1.00000
## Trafficking Of Ampa Receptors                                                                                                        1.00000
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.00000
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.00000
## Trail Signaling                                                                                                                      1.00000
## Trans Golgi Network Vesicle Budding                                                                                                  1.00000
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.00000
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 1.00000
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 1.00000
## Transcription Of The Hiv Genome                                                                                                      1.00000
## Transcriptional Regulation By E2f6                                                                                                   1.00000
## Transcriptional Regulation By Runx1                                                                                                  1.00000
## Transcriptional Regulation By Runx2                                                                                                  1.00000
## Transcriptional Regulation By Runx3                                                                                                  1.00000
## Transcriptional Regulation By Small Rnas                                                                                             1.00000
## Transcriptional Regulation By Tp53                                                                                                   1.00000
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.00000
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.00000
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.00000
## Transferrin Endocytosis And Recycling                                                                                                1.00000
## Translation                                                                                                                          1.00000
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.00000
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.00000
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.00000
## Translesion Synthesis By Polh                                                                                                        1.00000
## Translesion Synthesis By Polk                                                                                                        1.00000
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.00000
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.00000
## Transmission Across Chemical Synapses                                                                                                1.00000
## Transport And Synthesis Of Paps                                                                                                      1.00000
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.00000
## Transport Of Connexons To The Plasma Membrane                                                                                        1.00000
## Transport Of Fatty Acids                                                                                                             1.00000
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.00000
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.00000
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.00000
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.00000
## Transport Of Nucleotide Sugars                                                                                                       1.00000
## Transport Of Organic Anions                                                                                                          1.00000
## Transport Of Small Molecules                                                                                                         1.00000
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.00000
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.00000
## Transport To The Golgi And Subsequent Modification                                                                                   1.00000
## Trif Mediated Programmed Cell Death                                                                                                  1.00000
## Triglyceride Biosynthesis                                                                                                            1.00000
## Triglyceride Catabolism                                                                                                              1.00000
## Triglyceride Metabolism                                                                                                              1.00000
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.00000
## Trna Aminoacylation                                                                                                                  1.00000
## Trna Modification In The Mitochondrion                                                                                               1.00000
## Trna Modification In The Nucleus And Cytosol                                                                                         1.00000
## Trna Processing                                                                                                                      1.00000
## Trna Processing In The Mitochondrion                                                                                                 1.00000
## Trna Processing In The Nucleus                                                                                                       1.00000
## Trp Channels                                                                                                                         1.00000
## Tryptophan Catabolism                                                                                                                1.00000
## Type I Hemidesmosome Assembly                                                                                                        1.00000
## Tyrosine Catabolism                                                                                                                  1.00000
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.00000
## Ub Specific Processing Proteases                                                                                                     1.00000
## Ubiquinol Biosynthesis                                                                                                               1.00000
## Uch Proteinases                                                                                                                      1.00000
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.00000
## Unwinding Of Dna                                                                                                                     1.00000
## Uptake And Actions Of Bacterial Toxins                                                                                               1.00000
## Uptake And Function Of Anthrax Toxins                                                                                                1.00000
## Uptake And Function Of Diphtheria Toxin                                                                                              1.00000
## Urea Cycle                                                                                                                           1.00000
## Vasopressin Like Receptors                                                                                                           1.00000
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.00000
## Vegf Ligand Receptor Interactions                                                                                                    1.00000
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.00000
## Vegfr2 Mediated Vascular Permeability                                                                                                1.00000
## Vesicle Mediated Transport                                                                                                           1.00000
## Viral Messenger Rna Synthesis                                                                                                        1.00000
## Visual Phototransduction                                                                                                             1.00000
## Vitamin B1 Thiamin Metabolism                                                                                                        1.00000
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.00000
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.00000
## Vitamin C Ascorbate Metabolism                                                                                                       1.00000
## Vitamin D Calciferol Metabolism                                                                                                      1.00000
## Vitamins                                                                                                                             1.00000
## Vldl Assembly                                                                                                                        1.00000
## Vldl Clearance                                                                                                                       1.00000
## Voltage Gated Potassium Channels                                                                                                     1.00000
## Vxpx Cargo Targeting To Cilium                                                                                                       1.00000
## Wax And Plasmalogen Biosynthesis                                                                                                     1.00000
## Wnt Mediated Activation Of Dvl                                                                                                       1.00000
## Xenobiotics                                                                                                                          1.00000
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.00000
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.00000
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.00000
## Zinc Transporters                                                                                                                    1.00000
##                                                                                                                                       fdr
## Interleukin 10 Signaling                                                                                                             0.17
## Chemokine Receptors Bind Chemokines                                                                                                  1.00
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         1.00
## Cd163 Mediating An Anti Inflammatory Response                                                                                        1.00
## Interleukin 1 Processing                                                                                                             1.00
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               1.00
## Tnfs Bind Their Physiological Receptors                                                                                              1.00
## Interleukin 4 And Interleukin 13 Signaling                                                                                           1.00
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     1.00
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         1.00
## Mecp2 Regulates Transcription Factors                                                                                                1.00
## Clec7a Inflammasome Pathway                                                                                                          1.00
## Fibronectin Matrix Formation                                                                                                         1.00
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.00
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 1.00
## Creb Phosphorylation                                                                                                                 1.00
## Purinergic Signaling In Leishmaniasis Infection                                                                                      1.00
## Pyroptosis                                                                                                                           1.00
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         1.00
## Interleukin 18 Signaling                                                                                                             1.00
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    1.00
## Pd 1 Signaling                                                                                                                       1.00
## Extra Nuclear Estrogen Signaling                                                                                                     1.00
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.00
## Egfr Transactivation By Gastrin                                                                                                      1.00
## Mapk1 Erk2 Activation                                                                                                                1.00
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    1.00
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  1.00
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               1.00
## Akt Phosphorylates Targets In The Nucleus                                                                                            1.00
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             1.00
## Mapk3 Erk1 Activation                                                                                                                1.00
## Regulated Necrosis                                                                                                                   1.00
## Interleukin 6 Signaling                                                                                                              1.00
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     1.00
## Cd28 Dependent Vav1 Pathway                                                                                                          1.00
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    1.00
## Killing Mechanisms                                                                                                                   1.00
## Notch2 Intracellular Domain Regulates Transcription                                                                                  1.00
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             1.00
## Vldlr Internalisation And Degradation                                                                                                1.00
## Dissolution Of Fibrin Clot                                                                                                           1.00
## Erbb2 Activates Ptk6 Signaling                                                                                                       1.00
## Irf3 Mediated Induction Of Type I Ifn                                                                                                1.00
## Trafficking And Processing Of Endosomal Tlr                                                                                          1.00
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                1.00
## Ngf Stimulated Transcription                                                                                                         1.00
## Shc1 Events In Egfr Signaling                                                                                                        1.00
## Constitutive Signaling By Egfrviii                                                                                                   1.00
## Erbb2 Regulates Cell Motility                                                                                                        1.00
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             1.00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      1.00
## Wnt5a Dependent Internalization Of Fzd4                                                                                              1.00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           1.00
## Grb2 Events In Erbb2 Signaling                                                                                                       1.00
## Pi3k Events In Erbb2 Signaling                                                                                                       1.00
## Signaling By Erbb2 Ecd Mutants                                                                                                       1.00
## Sting Mediated Induction Of Host Immune Responses                                                                                    1.00
## Sumoylation Of Dna Methylation Proteins                                                                                              1.00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        1.00
## Gab1 Signalosome                                                                                                                     1.00
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                1.00
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      1.00
## Costimulation By The Cd28 Family                                                                                                     1.00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     1.00
## Ldl Clearance                                                                                                                        1.00
## Pka Mediated Phosphorylation Of Creb                                                                                                 1.00
## Ctla4 Inhibitory Signaling                                                                                                           1.00
## Inflammasomes                                                                                                                        1.00
## Signal Transduction By L1                                                                                                            1.00
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           1.00
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    1.00
## Shc1 Events In Erbb2 Signaling                                                                                                       1.00
## Ikk Complex Recruitment Mediated By Rip1                                                                                             1.00
## Raf Independent Mapk1 3 Activation                                                                                                   1.00
## Termination Of O Glycan Biosynthesis                                                                                                 1.00
## Interleukin 6 Family Signaling                                                                                                       1.00
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             1.00
## Signaling By Egfr In Cancer                                                                                                          1.00
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        1.00
## Dectin 2 Family                                                                                                                      1.00
## Signaling By Erbb2 In Cancer                                                                                                         1.00
## Wnt Ligand Biogenesis And Trafficking                                                                                                1.00
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     1.00
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                1.00
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     1.00
## Downregulation Of Erbb2 Signaling                                                                                                    1.00
## Nuclear Events Kinase And Transcription Factor Activation                                                                            1.00
## Ripk1 Mediated Regulated Necrosis                                                                                                    1.00
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         1.00
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             1.00
## Diseases Of Immune System                                                                                                            1.00
## Egfr Downregulation                                                                                                                  1.00
## Myd88 Independent Tlr4 Cascade                                                                                                       1.00
## Perk Regulates Gene Expression                                                                                                       1.00
## Regulation Of Mecp2 Expression And Activity                                                                                          1.00
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               1.00
## Activation Of Matrix Metalloproteinases                                                                                              1.00
## Cd28 Co Stimulation                                                                                                                  1.00
## Plasma Lipoprotein Clearance                                                                                                         1.00
## Sialic Acid Metabolism                                                                                                               1.00
## Signaling By Notch2                                                                                                                  1.00
## Peptide Ligand Binding Receptors                                                                                                     1.00
## Circadian Clock                                                                                                                      1.00
## Regulation Of Tnfr1 Signaling                                                                                                        1.00
## Interleukin 17 Signaling                                                                                                             1.00
## Nod1 2 Signaling Pathway                                                                                                             1.00
## Pi3k Akt Signaling In Cancer                                                                                                         1.00
## Ca Dependent Events                                                                                                                  1.00
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   1.00
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         1.00
## Generation Of Second Messenger Molecules                                                                                             1.00
## Senescence Associated Secretory Phenotype Sasp                                                                                       1.00
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    1.00
## Dag And Ip3 Signaling                                                                                                                1.00
## Negative Regulation Of The Pi3k Akt Network                                                                                          1.00
## Transcriptional Regulation By Ventx                                                                                                  1.00
## Signaling By Scf Kit                                                                                                                 1.00
## Sumoylation Of Transcription Cofactors                                                                                               1.00
## Tnf Signaling                                                                                                                        1.00
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           1.00
## Dap12 Interactions                                                                                                                   1.00
## Interleukin 12 Signaling                                                                                                             1.00
## Toll Like Receptor Cascades                                                                                                          1.00
## Heme Signaling                                                                                                                       1.00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.00
## Signaling By Egfr                                                                                                                    1.00
## Signaling By Erbb2                                                                                                                   1.00
## Signaling By Notch3                                                                                                                  1.00
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               1.00
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    1.00
## Fcgr3a Mediated Il10 Synthesis                                                                                                       1.00
## G Protein Mediated Events                                                                                                            1.00
## Signaling By Ptk6                                                                                                                    1.00
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               1.00
## Interleukin 12 Family Signaling                                                                                                      1.00
## Interleukin 1 Family Signaling                                                                                                       1.00
## Signaling By Erbb4                                                                                                                   1.00
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.00
## Ca2 Pathway                                                                                                                          1.00
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  1.00
## O Linked Glycosylation Of Mucins                                                                                                     1.00
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 1.00
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.00
## Asymmetric Localization Of Pcp Proteins                                                                                              1.00
## Collagen Degradation                                                                                                                 1.00
## Dna Methylation                                                                                                                      1.00
## Ncam Signaling For Neurite Out Growth                                                                                                1.00
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.00
## Transcriptional Regulation By Mecp2                                                                                                  1.00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.00
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.00
## Prc2 Methylates Histones And Dna                                                                                                     1.00
## Signaling By Interleukins                                                                                                            1.00
## Signaling By Tgf Beta Receptor Complex                                                                                               1.00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.00
## Ecm Proteoglycans                                                                                                                    1.00
## Rmts Methylate Histone Arginines                                                                                                     1.00
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              1.00
## G Alpha I Signalling Events                                                                                                          1.00
## C Type Lectin Receptors Clrs                                                                                                         1.00
## Collagen Formation                                                                                                                   1.00
## Esr Mediated Signaling                                                                                                               1.00
## Fceri Mediated Mapk Activation                                                                                                       1.00
## Hcmv Early Events                                                                                                                    1.00
## Opioid Signalling                                                                                                                    1.00
## Signaling By Ntrks                                                                                                                   1.00
## Transcriptional Regulation Of Granulopoiesis                                                                                         1.00
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.00
## Class B 2 Secretin Family Receptors                                                                                                  1.00
## Clathrin Mediated Endocytosis                                                                                                        1.00
## Clec7a Dectin 1 Signaling                                                                                                            1.00
## Eph Ephrin Signaling                                                                                                                 1.00
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             1.00
## Interferon Gamma Signaling                                                                                                           1.00
## Leishmania Infection                                                                                                                 1.00
## Mitochondrial Biogenesis                                                                                                             1.00
## Pcp Ce Pathway                                                                                                                       1.00
## Unfolded Protein Response Upr                                                                                                        1.00
## Amyloid Fiber Formation                                                                                                              1.00
## Cellular Senescence                                                                                                                  1.00
## Diseases Of Programmed Cell Death                                                                                                    1.00
## Hcmv Infection                                                                                                                       1.00
## Interleukin 1 Signaling                                                                                                              1.00
## O Linked Glycosylation                                                                                                               1.00
## Programmed Cell Death                                                                                                                1.00
## Signaling By Tgfb Family Members                                                                                                     1.00
## Stimuli Sensing Channels                                                                                                             1.00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   1.00
## Cell Surface Interactions At The Vascular Wall                                                                                       1.00
## Class A 1 Rhodopsin Like Receptors                                                                                                   1.00
## Cytokine Signaling In Immune System                                                                                                  1.00
## Death Receptor Signalling                                                                                                            1.00
## Degradation Of The Extracellular Matrix                                                                                              1.00
## L1cam Interactions                                                                                                                   1.00
## Mhc Class Ii Antigen Presentation                                                                                                    1.00
## Oxidative Stress Induced Senescence                                                                                                  1.00
## Response To Elevated Platelet Cytosolic Ca2                                                                                          1.00
## Sumoylation                                                                                                                          1.00
## Tcr Signaling                                                                                                                        1.00
## 2 Ltr Circle Formation                                                                                                               1.00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.00
## Abacavir Metabolism                                                                                                                  1.00
## Abacavir Transmembrane Transport                                                                                                     1.00
## Abacavir Transport And Metabolism                                                                                                    1.00
## Abc Family Proteins Mediated Transport                                                                                               1.00
## Abc Transporter Disorders                                                                                                            1.00
## Abc Transporters In Lipid Homeostasis                                                                                                1.00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.00
## Acetylcholine Binding And Downstream Events                                                                                          1.00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.00
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          1.00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.00
## Activation Of Atr In Response To Replication Stress                                                                                  1.00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.00
## Activation Of Bh3 Only Proteins                                                                                                      1.00
## Activation Of C3 And C5                                                                                                              1.00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 1.00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.00
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            1.00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.00
## Activation Of Rac1                                                                                                                   1.00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.00
## Activation Of Ras In B Cells                                                                                                         1.00
## Activation Of Smo                                                                                                                    1.00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.00
## Activation Of The Phototransduction Cascade                                                                                          1.00
## Activation Of The Pre Replicative Complex                                                                                            1.00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.00
## Activation Of Trka Receptors                                                                                                         1.00
## Acyl Chain Remodeling Of Cl                                                                                                          1.00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.00
## Acyl Chain Remodelling Of Pc                                                                                                         1.00
## Acyl Chain Remodelling Of Pe                                                                                                         1.00
## Acyl Chain Remodelling Of Pg                                                                                                         1.00
## Acyl Chain Remodelling Of Pi                                                                                                         1.00
## Acyl Chain Remodelling Of Ps                                                                                                         1.00
## Adaptive Immune System                                                                                                               1.00
## Adenylate Cyclase Activating Pathway                                                                                                 1.00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.00
## Adherens Junctions Interactions                                                                                                      1.00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.00
## Adrenoceptors                                                                                                                        1.00
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 1.00
## Aflatoxin Activation And Detoxification                                                                                              1.00
## Aggrephagy                                                                                                                           1.00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.00
## Alpha Defensins                                                                                                                      1.00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.00
## Alpha Oxidation Of Phytanate                                                                                                         1.00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.00
## Alternative Complement Activation                                                                                                    1.00
## Amine Ligand Binding Receptors                                                                                                       1.00
## Amino Acid Conjugation                                                                                                               1.00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.00
## Amino Acids Regulate Mtorc1                                                                                                          1.00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.00
## Anchoring Fibril Formation                                                                                                           1.00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.00
## Androgen Biosynthesis                                                                                                                1.00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             1.00
## Antigen Processing Cross Presentation                                                                                                1.00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.00
## Antimicrobial Peptides                                                                                                               1.00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.00
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         1.00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.00
## Apoptosis                                                                                                                            1.00
## Apoptosis Induced Dna Fragmentation                                                                                                  1.00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.00
## Apoptotic Execution Phase                                                                                                            1.00
## Apoptotic Factor Mediated Response                                                                                                   1.00
## Aquaporin Mediated Transport                                                                                                         1.00
## Arachidonate Production From Dag                                                                                                     1.00
## Arachidonic Acid Metabolism                                                                                                          1.00
## Arms Mediated Activation                                                                                                             1.00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.00
## Asparagine N Linked Glycosylation                                                                                                    1.00
## Aspartate And Asparagine Metabolism                                                                                                  1.00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.00
## Assembly Of The Hiv Virion                                                                                                           1.00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.00
## Assembly Of The Pre Replicative Complex                                                                                              1.00
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.00
## Attachment And Entry                                                                                                                 1.00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.00
## Attenuation Phase                                                                                                                    1.00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.00
## Aurka Activation By Tpx2                                                                                                             1.00
## Autophagy                                                                                                                            1.00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.00
## Base Excision Repair                                                                                                                 1.00
## Base Excision Repair Ap Site Formation                                                                                               1.00
## Basigin Interactions                                                                                                                 1.00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.00
## Beta Catenin Independent Wnt Signaling                                                                                               1.00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.00
## Beta Defensins                                                                                                                       1.00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         1.00
## Bicarbonate Transporters                                                                                                             1.00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.00
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   1.00
## Biological Oxidations                                                                                                                1.00
## Biosynthesis Of Epa Derived Spms                                                                                                     1.00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.00
## Biosynthesis Of Maresins                                                                                                             1.00
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              1.00
## Biotin Transport And Metabolism                                                                                                      1.00
## Blood Group Systems Biosynthesis                                                                                                     1.00
## Branched Chain Amino Acid Catabolism                                                                                                 1.00
## Budding And Maturation Of Hiv Virion                                                                                                 1.00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.00
## Butyrophilin Btn Family Interactions                                                                                                 1.00
## Ca2 Activated K Channels                                                                                                             1.00
## Calcineurin Activates Nfat                                                                                                           1.00
## Calcitonin Like Ligand Receptors                                                                                                     1.00
## Calnexin Calreticulin Cycle                                                                                                          1.00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.00
## Cardiac Conduction                                                                                                                   1.00
## Cargo Concentration In The Er                                                                                                        1.00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.00
## Carnitine Metabolism                                                                                                                 1.00
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        1.00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.00
## Cation Coupled Chloride Cotransporters                                                                                               1.00
## Cd209 Dc Sign Signaling                                                                                                              1.00
## Cd22 Mediated Bcr Regulation                                                                                                         1.00
## Cdc42 Gtpase Cycle                                                                                                                   1.00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.00
## Cell Cell Communication                                                                                                              1.00
## Cell Cell Junction Organization                                                                                                      1.00
## Cell Cycle                                                                                                                           1.00
## Cell Cycle Checkpoints                                                                                                               1.00
## Cell Cycle Mitotic                                                                                                                   1.00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.00
## Cell Extracellular Matrix Interactions                                                                                               1.00
## Cell Junction Organization                                                                                                           1.00
## Cellular Hexose Transport                                                                                                            1.00
## Cellular Response To Chemical Stress                                                                                                 1.00
## Cellular Response To Heat Stress                                                                                                     1.00
## Cellular Response To Hypoxia                                                                                                         1.00
## Cellular Response To Starvation                                                                                                      1.00
## Cellular Responses To External Stimuli                                                                                               1.00
## Cgmp Effects                                                                                                                         1.00
## Chaperone Mediated Autophagy                                                                                                         1.00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        1.00
## Chl1 Interactions                                                                                                                    1.00
## Cholesterol Biosynthesis                                                                                                             1.00
## Choline Catabolism                                                                                                                   1.00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.00
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.00
## Chromatin Modifying Enzymes                                                                                                          1.00
## Chromosome Maintenance                                                                                                               1.00
## Chylomicron Assembly                                                                                                                 1.00
## Chylomicron Clearance                                                                                                                1.00
## Chylomicron Remodeling                                                                                                               1.00
## Cilium Assembly                                                                                                                      1.00
## Citric Acid Cycle Tca Cycle                                                                                                          1.00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.00
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.00
## Coenzyme A Biosynthesis                                                                                                              1.00
## Cohesin Loading Onto Chromatin                                                                                                       1.00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.00
## Collagen Chain Trimerization                                                                                                         1.00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.00
## Complement Cascade                                                                                                                   1.00
## Complex I Biogenesis                                                                                                                 1.00
## Condensation Of Prometaphase Chromosomes                                                                                             1.00
## Condensation Of Prophase Chromosomes                                                                                                 1.00
## Conjugation Of Benzoate With Glycine                                                                                                 1.00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.00
## Copi Mediated Anterograde Transport                                                                                                  1.00
## Copii Mediated Vesicle Transport                                                                                                     1.00
## Creatine Metabolism                                                                                                                  1.00
## Creation Of C4 And C2 Activators                                                                                                     1.00
## Creb3 Factors Activate Genes                                                                                                         1.00
## Cristae Formation                                                                                                                    1.00
## Crmps In Sema3a Signaling                                                                                                            1.00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.00
## Crosslinking Of Collagen Fibrils                                                                                                     1.00
## Cs Ds Degradation                                                                                                                    1.00
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              1.00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.00
## Cyclin D Associated Events In G1                                                                                                     1.00
## Cyp2e1 Reactions                                                                                                                     1.00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.00
## Cytoprotection By Hmox1                                                                                                              1.00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.00
## Cytosolic Trna Aminoacylation                                                                                                        1.00
## Dap12 Signaling                                                                                                                      1.00
## Darpp 32 Events                                                                                                                      1.00
## Dcc Mediated Attractive Signaling                                                                                                    1.00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              1.00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.00
## Deadenylation Dependent Mrna Decay                                                                                                   1.00
## Deadenylation Of Mrna                                                                                                                1.00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       1.00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.00
## Defective Chst3 Causes Sedcjd                                                                                                        1.00
## Defective Chst6 Causes Mcdc1                                                                                                         1.00
## Defective Chsy1 Causes Tpbs                                                                                                          1.00
## Defective Csf2rb Causes Smdp5                                                                                                        1.00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.00
## Defective F9 Activation                                                                                                              1.00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.00
## Defective Lfng Causes Scdo3                                                                                                          1.00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.00
## Defects In Biotin Btn Metabolism                                                                                                     1.00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.00
## Defensins                                                                                                                            1.00
## Degradation Of Axin                                                                                                                  1.00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.00
## Degradation Of Cysteine And Homocysteine                                                                                             1.00
## Degradation Of Dvl                                                                                                                   1.00
## Degradation Of Gli1 By The Proteasome                                                                                                1.00
## Depolymerisation Of The Nuclear Lamina                                                                                               1.00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          1.00
## Dermatan Sulfate Biosynthesis                                                                                                        1.00
## Detoxification Of Reactive Oxygen Species                                                                                            1.00
## Deubiquitination                                                                                                                     1.00
## Developmental Biology                                                                                                                1.00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.00
## Digestion                                                                                                                            1.00
## Digestion And Absorption                                                                                                             1.00
## Digestion Of Dietary Carbohydrate                                                                                                    1.00
## Digestion Of Dietary Lipid                                                                                                           1.00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.00
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        1.00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.00
## Diseases Associated With Surfactant Metabolism                                                                                       1.00
## Diseases Of Base Excision Repair                                                                                                     1.00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.00
## Diseases Of Dna Repair                                                                                                               1.00
## Diseases Of Glycosylation                                                                                                            1.00
## Diseases Of Metabolism                                                                                                               1.00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     1.00
## Disinhibition Of Snare Formation                                                                                                     1.00
## Disorders Of Transmembrane Transporters                                                                                              1.00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.00
## Dna Damage Bypass                                                                                                                    1.00
## Dna Damage Recognition In Gg Ner                                                                                                     1.00
## Dna Damage Reversal                                                                                                                  1.00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.00
## Dna Double Strand Break Repair                                                                                                       1.00
## Dna Double Strand Break Response                                                                                                     1.00
## Dna Repair                                                                                                                           1.00
## Dna Replication                                                                                                                      1.00
## Dna Replication Initiation                                                                                                           1.00
## Dna Replication Pre Initiation                                                                                                       1.00
## Dna Strand Elongation                                                                                                                1.00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.00
## Dopamine Receptors                                                                                                                   1.00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.00
## Downregulation Of Erbb4 Signaling                                                                                                    1.00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.00
## Downstream Signal Transduction                                                                                                       1.00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.00
## Dscam Interactions                                                                                                                   1.00
## Dual Incision In Gg Ner                                                                                                              1.00
## Dual Incision In Tc Ner                                                                                                              1.00
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          1.00
## E2f Mediated Regulation Of Dna Replication                                                                                           1.00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.00
## Early Phase Of Hiv Life Cycle                                                                                                        1.00
## Effects Of Pip2 Hydrolysis                                                                                                           1.00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.00
## Eicosanoids                                                                                                                          1.00
## Elastic Fibre Formation                                                                                                              1.00
## Electric Transmission Across Gap Junctions                                                                                           1.00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.00
## Endogenous Sterols                                                                                                                   1.00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.00
## Endosomal Vacuolar Pathway                                                                                                           1.00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.00
## Enos Activation                                                                                                                      1.00
## Epha Mediated Growth Cone Collapse                                                                                                   1.00
## Ephb Mediated Forward Signaling                                                                                                      1.00
## Ephrin Signaling                                                                                                                     1.00
## Epigenetic Regulation Of Gene Expression                                                                                             1.00
## Er Quality Control Compartment Erqc                                                                                                  1.00
## Er To Golgi Anterograde Transport                                                                                                    1.00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.00
## Erk Mapk Targets                                                                                                                     1.00
## Erks Are Inactivated                                                                                                                 1.00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.00
## Erythropoietin Activates Ras                                                                                                         1.00
## Erythropoietin Activates Stat5                                                                                                       1.00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.00
## Estrogen Biosynthesis                                                                                                                1.00
## Estrogen Dependent Gene Expression                                                                                                   1.00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.00
## Ethanol Oxidation                                                                                                                    1.00
## Eukaryotic Translation Elongation                                                                                                    1.00
## Eukaryotic Translation Initiation                                                                                                    1.00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.00
## Extension Of Telomeres                                                                                                               1.00
## Extracellular Matrix Organization                                                                                                    1.00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.00
## Fanconi Anemia Pathway                                                                                                               1.00
## Fasl Cd95l Signaling                                                                                                                 1.00
## Fatty Acid Metabolism                                                                                                                1.00
## Fatty Acids                                                                                                                          1.00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.00
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.00
## Fceri Mediated Nf Kb Activation                                                                                                      1.00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.00
## Fcgr Activation                                                                                                                      1.00
## Fertilization                                                                                                                        1.00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.00
## Fgfr1 Mutant Receptor Activation                                                                                                     1.00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.00
## Fgfr2 Alternative Splicing                                                                                                           1.00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.00
## Flt3 Signaling                                                                                                                       1.00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.00
## Flt3 Signaling In Disease                                                                                                            1.00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.00
## Folding Of Actin By Cct Tric                                                                                                         1.00
## Formation Of Apoptosome                                                                                                              1.00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.00
## Formation Of Incision Complex In Gg Ner                                                                                              1.00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.00
## Formation Of The Cornified Envelope                                                                                                  1.00
## Formation Of The Early Elongation Complex                                                                                            1.00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.00
## Foxo Mediated Transcription                                                                                                          1.00
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      1.00
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      1.00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.00
## Free Fatty Acid Receptors                                                                                                            1.00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.00
## Fructose Catabolism                                                                                                                  1.00
## Fructose Metabolism                                                                                                                  1.00
## G Alpha 12 13 Signalling Events                                                                                                      1.00
## G Alpha Q Signalling Events                                                                                                          1.00
## G Alpha S Signalling Events                                                                                                          1.00
## G Alpha Z Signalling Events                                                                                                          1.00
## G Beta Gamma Signalling Through Cdc42                                                                                                1.00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.00
## G Protein Activation                                                                                                                 1.00
## G Protein Beta Gamma Signalling                                                                                                      1.00
## G0 And Early G1                                                                                                                      1.00
## G1 S Dna Damage Checkpoints                                                                                                          1.00
## G1 S Specific Transcription                                                                                                          1.00
## G2 M Checkpoints                                                                                                                     1.00
## G2 M Dna Damage Checkpoint                                                                                                           1.00
## G2 M Dna Replication Checkpoint                                                                                                      1.00
## G2 Phase                                                                                                                             1.00
## Gaba B Receptor Activation                                                                                                           1.00
## Gaba Receptor Activation                                                                                                             1.00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.00
## Galactose Catabolism                                                                                                                 1.00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.00
## Gap Junction Assembly                                                                                                                1.00
## Gap Junction Degradation                                                                                                             1.00
## Gap Junction Trafficking And Regulation                                                                                              1.00
## Gdp Fucose Biosynthesis                                                                                                              1.00
## Gene Silencing By Rna                                                                                                                1.00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.00
## Glucagon Type Ligand Receptors                                                                                                       1.00
## Glucocorticoid Biosynthesis                                                                                                          1.00
## Gluconeogenesis                                                                                                                      1.00
## Glucose Metabolism                                                                                                                   1.00
## Glucuronidation                                                                                                                      1.00
## Glutamate And Glutamine Metabolism                                                                                                   1.00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.00
## Glutathione Conjugation                                                                                                              1.00
## Glutathione Synthesis And Recycling                                                                                                  1.00
## Glycerophospholipid Biosynthesis                                                                                                     1.00
## Glycerophospholipid Catabolism                                                                                                       1.00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.00
## Glycogen Metabolism                                                                                                                  1.00
## Glycogen Storage Diseases                                                                                                            1.00
## Glycogen Synthesis                                                                                                                   1.00
## Glycolysis                                                                                                                           1.00
## Glycosaminoglycan Metabolism                                                                                                         1.00
## Glycosphingolipid Metabolism                                                                                                         1.00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.00
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  1.00
## Golgi To Er Retrograde Transport                                                                                                     1.00
## Gp1b Ix V Activation Signalling                                                                                                      1.00
## Gpcr Ligand Binding                                                                                                                  1.00
## Gpvi Mediated Activation Cascade                                                                                                     1.00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.00
## Growth Hormone Receptor Signaling                                                                                                    1.00
## Hats Acetylate Histones                                                                                                              1.00
## Hcmv Late Events                                                                                                                     1.00
## Hdacs Deacetylate Histones                                                                                                           1.00
## Hdl Assembly                                                                                                                         1.00
## Hdl Clearance                                                                                                                        1.00
## Hdl Remodeling                                                                                                                       1.00
## Hdms Demethylate Histones                                                                                                            1.00
## Hdr Through Homologous Recombination Hrr                                                                                             1.00
## Hdr Through Mmej Alt Nhej                                                                                                            1.00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.00
## Hedgehog Ligand Biogenesis                                                                                                           1.00
## Hedgehog Off State                                                                                                                   1.00
## Hedgehog On State                                                                                                                    1.00
## Heme Biosynthesis                                                                                                                    1.00
## Heme Degradation                                                                                                                     1.00
## Hemostasis                                                                                                                           1.00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.00
## Histidine Catabolism                                                                                                                 1.00
## Hiv Elongation Arrest And Recovery                                                                                                   1.00
## Hiv Infection                                                                                                                        1.00
## Hiv Life Cycle                                                                                                                       1.00
## Hiv Transcription Elongation                                                                                                         1.00
## Hiv Transcription Initiation                                                                                                         1.00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.00
## Homology Directed Repair                                                                                                             1.00
## Hormone Ligand Binding Receptors                                                                                                     1.00
## Host Interactions Of Hiv Factors                                                                                                     1.00
## Hs Gag Biosynthesis                                                                                                                  1.00
## Hs Gag Degradation                                                                                                                   1.00
## Hsf1 Activation                                                                                                                      1.00
## Hsf1 Dependent Transactivation                                                                                                       1.00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.00
## Hyaluronan Biosynthesis And Export                                                                                                   1.00
## Hyaluronan Metabolism                                                                                                                1.00
## Hyaluronan Uptake And Degradation                                                                                                    1.00
## Hydrolysis Of Lpc                                                                                                                    1.00
## Ikba Variant Leads To Eda Id                                                                                                         1.00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.00
## Inactivation Of Cdc42 And Rac1                                                                                                       1.00
## Inactivation Of Csf3 G Csf Signaling                                                                                                 1.00
## Incretin Synthesis Secretion And Inactivation                                                                                        1.00
## Infection With Mycobacterium Tuberculosis                                                                                            1.00
## Infectious Disease                                                                                                                   1.00
## Influenza Infection                                                                                                                  1.00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.00
## Initial Triggering Of Complement                                                                                                     1.00
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        1.00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.00
## Innate Immune System                                                                                                                 1.00
## Inositol Phosphate Metabolism                                                                                                        1.00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.00
## Insulin Processing                                                                                                                   1.00
## Insulin Receptor Recycling                                                                                                           1.00
## Insulin Receptor Signalling Cascade                                                                                                  1.00
## Integration Of Energy Metabolism                                                                                                     1.00
## Integration Of Provirus                                                                                                              1.00
## Integrin Cell Surface Interactions                                                                                                   1.00
## Integrin Signaling                                                                                                                   1.00
## Interaction Between L1 And Ankyrins                                                                                                  1.00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.00
## Interferon Alpha Beta Signaling                                                                                                      1.00
## Interferon Signaling                                                                                                                 1.00
## Interleukin 15 Signaling                                                                                                             1.00
## Interleukin 2 Family Signaling                                                                                                       1.00
## Interleukin 2 Signaling                                                                                                              1.00
## Interleukin 20 Family Signaling                                                                                                      1.00
## Interleukin 21 Signaling                                                                                                             1.00
## Interleukin 23 Signaling                                                                                                             1.00
## Interleukin 27 Signaling                                                                                                             1.00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.00
## Interleukin 35 Signalling                                                                                                            1.00
## Interleukin 36 Pathway                                                                                                               1.00
## Interleukin 37 Signaling                                                                                                             1.00
## Interleukin 7 Signaling                                                                                                              1.00
## Interleukin 9 Signaling                                                                                                              1.00
## Interleukin Receptor Shc Signaling                                                                                                   1.00
## Intestinal Absorption                                                                                                                1.00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.00
## Intra Golgi Traffic                                                                                                                  1.00
## Intracellular Signaling By Second Messengers                                                                                         1.00
## Intraflagellar Transport                                                                                                             1.00
## Intrinsic Pathway For Apoptosis                                                                                                      1.00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00
## Inwardly Rectifying K Channels                                                                                                       1.00
## Ion Channel Transport                                                                                                                1.00
## Ion Homeostasis                                                                                                                      1.00
## Ion Transport By P Type Atpases                                                                                                      1.00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.00
## Irak1 Recruits Ikk Complex                                                                                                           1.00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.00
## Irak4 Deficiency Tlr2 4                                                                                                              1.00
## Ire1alpha Activates Chaperones                                                                                                       1.00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.00
## Iron Uptake And Transport                                                                                                            1.00
## Irs Activation                                                                                                                       1.00
## Irs Mediated Signalling                                                                                                              1.00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.00
## Josephin Domain Dubs                                                                                                                 1.00
## Keratan Sulfate Biosynthesis                                                                                                         1.00
## Keratan Sulfate Degradation                                                                                                          1.00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.00
## Keratinization                                                                                                                       1.00
## Ketone Body Metabolism                                                                                                               1.00
## Kinesins                                                                                                                             1.00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.00
## Lagging Strand Synthesis                                                                                                             1.00
## Laminin Interactions                                                                                                                 1.00
## Late Endosomal Microautophagy                                                                                                        1.00
## Lectin Pathway Of Complement Activation                                                                                              1.00
## Leukotriene Receptors                                                                                                                1.00
## Lgi Adam Interactions                                                                                                                1.00
## Ligand Receptor Interactions                                                                                                         1.00
## Linoleic Acid La Metabolism                                                                                                          1.00
## Lipid Particle Organization                                                                                                          1.00
## Lipophagy                                                                                                                            1.00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.00
## Long Term Potentiation                                                                                                               1.00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.00
## Lysine Catabolism                                                                                                                    1.00
## Lysosome Vesicle Biogenesis                                                                                                          1.00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.00
## M Phase                                                                                                                              1.00
## Map2k And Mapk Activation                                                                                                            1.00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.00
## Mapk Family Signaling Cascades                                                                                                       1.00
## Mapk6 Mapk4 Signaling                                                                                                                1.00
## Mastl Facilitates Mitotic Progression                                                                                                1.00
## Maturation Of Nucleoprotein                                                                                                          1.00
## Maturation Of Protein 3a                                                                                                             1.00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.00
## Meiosis                                                                                                                              1.00
## Meiotic Recombination                                                                                                                1.00
## Meiotic Synapsis                                                                                                                     1.00
## Melanin Biosynthesis                                                                                                                 1.00
## Membrane Trafficking                                                                                                                 1.00
## Met Activates Pi3k Akt Signaling                                                                                                     1.00
## Met Activates Ptk2 Signaling                                                                                                         1.00
## Met Activates Ptpn11                                                                                                                 1.00
## Met Activates Rap1 And Rac1                                                                                                          1.00
## Met Activates Ras Signaling                                                                                                          1.00
## Met Interacts With Tns Proteins                                                                                                      1.00
## Met Promotes Cell Motility                                                                                                           1.00
## Met Receptor Activation                                                                                                              1.00
## Met Receptor Recycling                                                                                                               1.00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.00
## Metabolism Of Amine Derived Hormones                                                                                                 1.00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.00
## Metabolism Of Carbohydrates                                                                                                          1.00
## Metabolism Of Cofactors                                                                                                              1.00
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.00
## Metabolism Of Folate And Pterines                                                                                                    1.00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.00
## Metabolism Of Lipids                                                                                                                 1.00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            1.00
## Metabolism Of Nucleotides                                                                                                            1.00
## Metabolism Of Polyamines                                                                                                             1.00
## Metabolism Of Porphyrins                                                                                                             1.00
## Metabolism Of Rna                                                                                                                    1.00
## Metabolism Of Steroid Hormones                                                                                                       1.00
## Metabolism Of Steroids                                                                                                               1.00
## Metabolism Of Vitamins And Cofactors                                                                                                 1.00
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.00
## Metal Ion Slc Transporters                                                                                                           1.00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.00
## Metalloprotease Dubs                                                                                                                 1.00
## Metallothioneins Bind Metals                                                                                                         1.00
## Methionine Salvage Pathway                                                                                                           1.00
## Methylation                                                                                                                          1.00
## Microrna Mirna Biogenesis                                                                                                            1.00
## Mineralocorticoid Biosynthesis                                                                                                       1.00
## Miro Gtpase Cycle                                                                                                                    1.00
## Miscellaneous Substrates                                                                                                             1.00
## Miscellaneous Transport And Binding Events                                                                                           1.00
## Mismatch Repair                                                                                                                      1.00
## Mitochondrial Calcium Ion Transport                                                                                                  1.00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.00
## Mitochondrial Protein Import                                                                                                         1.00
## Mitochondrial Translation                                                                                                            1.00
## Mitochondrial Trna Aminoacylation                                                                                                    1.00
## Mitochondrial Uncoupling                                                                                                             1.00
## Mitophagy                                                                                                                            1.00
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.00
## Mitotic G2 G2 M Phases                                                                                                               1.00
## Mitotic Metaphase And Anaphase                                                                                                       1.00
## Mitotic Prometaphase                                                                                                                 1.00
## Mitotic Prophase                                                                                                                     1.00
## Mitotic Spindle Checkpoint                                                                                                           1.00
## Mitotic Telophase Cytokinesis                                                                                                        1.00
## Modulation By Mtb Of Host Immune System                                                                                              1.00
## Molecules Associated With Elastic Fibres                                                                                             1.00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.00
## Mrna Capping                                                                                                                         1.00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.00
## Mrna Editing                                                                                                                         1.00
## Mrna Editing C To U Conversion                                                                                                       1.00
## Mrna Splicing                                                                                                                        1.00
## Mrna Splicing Minor Pathway                                                                                                          1.00
## Mtor Signalling                                                                                                                      1.00
## Mtorc1 Mediated Signalling                                                                                                           1.00
## Mucopolysaccharidoses                                                                                                                1.00
## Multifunctional Anion Exchangers                                                                                                     1.00
## Muscarinic Acetylcholine Receptors                                                                                                   1.00
## Muscle Contraction                                                                                                                   1.00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.00
## Myogenesis                                                                                                                           1.00
## N Glycan Antennae Elongation                                                                                                         1.00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.00
## Nade Modulates Death Signalling                                                                                                      1.00
## Ncam1 Interactions                                                                                                                   1.00
## Nectin Necl Trans Heterodimerization                                                                                                 1.00
## Neddylation                                                                                                                          1.00
## Nef And Signal Transduction                                                                                                          1.00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.00
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.00
## Negative Regulation Of Flt3                                                                                                          1.00
## Negative Regulation Of Mapk Pathway                                                                                                  1.00
## Negative Regulation Of Met Activity                                                                                                  1.00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.00
## Negative Regulation Of Notch4 Signaling                                                                                              1.00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.00
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.00
## Nephrin Family Interactions                                                                                                          1.00
## Nervous System Development                                                                                                           1.00
## Netrin 1 Signaling                                                                                                                   1.00
## Netrin Mediated Repulsion Signals                                                                                                    1.00
## Neurexins And Neuroligins                                                                                                            1.00
## Neurofascin Interactions                                                                                                             1.00
## Neuronal System                                                                                                                      1.00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.00
## Neurotransmitter Clearance                                                                                                           1.00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.00
## Neurotransmitter Release Cycle                                                                                                       1.00
## Neutrophil Degranulation                                                                                                             1.00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.00
## Nf Kb Is Activated And Signals Survival                                                                                              1.00
## Ngf Independant Trka Activation                                                                                                      1.00
## Nicotinamide Salvaging                                                                                                               1.00
## Nicotinate Metabolism                                                                                                                1.00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.00
## Non Integrin Membrane Ecm Interactions                                                                                               1.00
## Noncanonical Activation Of Notch3                                                                                                    1.00
## Nonhomologous End Joining Nhej                                                                                                       1.00
## Nonsense Mediated Decay Nmd                                                                                                          1.00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.00
## Nostrin Mediated Enos Trafficking                                                                                                    1.00
## Notch Hlh Transcription Pathway                                                                                                      1.00
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.00
## Nrage Signals Death Through Jnk                                                                                                      1.00
## Nrcam Interactions                                                                                                                   1.00
## Nrif Signals Cell Death From The Nucleus                                                                                             1.00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.00
## Ntrk2 Activates Rac1                                                                                                                 1.00
## Nuclear Envelope Breakdown                                                                                                           1.00
## Nuclear Envelope Ne Reassembly                                                                                                       1.00
## Nuclear Import Of Rev Protein                                                                                                        1.00
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.00
## Nuclear Receptor Transcription Pathway                                                                                               1.00
## Nuclear Signaling By Erbb4                                                                                                           1.00
## Nucleobase Biosynthesis                                                                                                              1.00
## Nucleobase Catabolism                                                                                                                1.00
## Nucleotide Excision Repair                                                                                                           1.00
## Nucleotide Like Purinergic Receptors                                                                                                 1.00
## Nucleotide Salvage                                                                                                                   1.00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.00
## Oas Antiviral Response                                                                                                               1.00
## Olfactory Signaling Pathway                                                                                                          1.00
## Oncogene Induced Senescence                                                                                                          1.00
## Oncogenic Mapk Signaling                                                                                                             1.00
## Opsins                                                                                                                               1.00
## Orc1 Removal From Chromatin                                                                                                          1.00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.00
## Organelle Biogenesis And Maintenance                                                                                                 1.00
## Organic Anion Transport                                                                                                              1.00
## Organic Anion Transporters                                                                                                           1.00
## Organic Cation Anion Zwitterion Transport                                                                                            1.00
## Organic Cation Transport                                                                                                             1.00
## Other Interleukin Signaling                                                                                                          1.00
## Other Semaphorin Interactions                                                                                                        1.00
## Ovarian Tumor Domain Proteases                                                                                                       1.00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.00
## P2y Receptors                                                                                                                        1.00
## P38mapk Events                                                                                                                       1.00
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.00
## P75ntr Recruits Signalling Complexes                                                                                                 1.00
## P75ntr Regulates Axonogenesis                                                                                                        1.00
## P75ntr Signals Via Nf Kb                                                                                                             1.00
## Parasite Infection                                                                                                                   1.00
## Passive Transport By Aquaporins                                                                                                      1.00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.00
## Pecam1 Interactions                                                                                                                  1.00
## Pentose Phosphate Pathway                                                                                                            1.00
## Peptide Hormone Biosynthesis                                                                                                         1.00
## Peptide Hormone Metabolism                                                                                                           1.00
## Peroxisomal Lipid Metabolism                                                                                                         1.00
## Peroxisomal Protein Import                                                                                                           1.00
## Pexophagy                                                                                                                            1.00
## Phase 0 Rapid Depolarisation                                                                                                         1.00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.00
## Phase 2 Plateau Phase                                                                                                                1.00
## Phase 3 Rapid Repolarisation                                                                                                         1.00
## Phase 4 Resting Membrane Potential                                                                                                   1.00
## Phase I Functionalization Of Compounds                                                                                               1.00
## Phase Ii Conjugation Of Compounds                                                                                                    1.00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.00
## Phenylalanine Metabolism                                                                                                             1.00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.00
## Phospholipid Metabolism                                                                                                              1.00
## Phosphorylation Of Emi1                                                                                                              1.00
## Phosphorylation Of The Apc C                                                                                                         1.00
## Physiological Factors                                                                                                                1.00
## Pi 3k Cascade Fgfr1                                                                                                                  1.00
## Pi 3k Cascade Fgfr2                                                                                                                  1.00
## Pi 3k Cascade Fgfr3                                                                                                                  1.00
## Pi 3k Cascade Fgfr4                                                                                                                  1.00
## Pi Metabolism                                                                                                                        1.00
## Pi3k Akt Activation                                                                                                                  1.00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.00
## Pink1 Prkn Mediated Mitophagy                                                                                                        1.00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.00
## Pka Activation In Glucagon Signalling                                                                                                1.00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.00
## Pkmts Methylate Histone Lysines                                                                                                      1.00
## Plasma Lipoprotein Assembly                                                                                                          1.00
## Plasma Lipoprotein Remodeling                                                                                                        1.00
## Platelet Activation Signaling And Aggregation                                                                                        1.00
## Platelet Adhesion To Exposed Collagen                                                                                                1.00
## Platelet Aggregation Plug Formation                                                                                                  1.00
## Platelet Calcium Homeostasis                                                                                                         1.00
## Platelet Homeostasis                                                                                                                 1.00
## Platelet Sensitization By Ldl                                                                                                        1.00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.00
## Polo Like Kinase Mediated Events                                                                                                     1.00
## Polymerase Switching                                                                                                                 1.00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.00
## Potassium Channels                                                                                                                   1.00
## Potential Therapeutics For Sars                                                                                                      1.00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       1.00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.00
## Pre Notch Expression And Processing                                                                                                  1.00
## Pre Notch Processing In Golgi                                                                                                        1.00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.00
## Pregnenolone Biosynthesis                                                                                                            1.00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.00
## Presynaptic Function Of Kainate Receptors                                                                                            1.00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.00
## Processing And Activation Of Sumo                                                                                                    1.00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.00
## Processing Of Dna Double Strand Break Ends                                                                                           1.00
## Processing Of Intronless Pre Mrnas                                                                                                   1.00
## Processing Of Smdt1                                                                                                                  1.00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.00
## Processive Synthesis On The Lagging Strand                                                                                           1.00
## Prolactin Receptor Signaling                                                                                                         1.00
## Prolonged Erk Activation Events                                                                                                      1.00
## Propionyl Coa Catabolism                                                                                                             1.00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.00
## Prostanoid Ligand Receptors                                                                                                          1.00
## Protein Folding                                                                                                                      1.00
## Protein Localization                                                                                                                 1.00
## Protein Methylation                                                                                                                  1.00
## Protein Protein Interactions At Synapses                                                                                             1.00
## Protein Repair                                                                                                                       1.00
## Protein Ubiquitination                                                                                                               1.00
## Proton Coupled Monocarboxylate Transport                                                                                             1.00
## Pten Regulation                                                                                                                      1.00
## Ptk6 Expression                                                                                                                      1.00
## Ptk6 Regulates Cell Cycle                                                                                                            1.00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.00
## Purine Catabolism                                                                                                                    1.00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.00
## Purine Salvage                                                                                                                       1.00
## Pyrimidine Catabolism                                                                                                                1.00
## Pyrimidine Salvage                                                                                                                   1.00
## Pyruvate Metabolism                                                                                                                  1.00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.00
## Ra Biosynthesis Pathway                                                                                                              1.00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.00
## Rab Geranylgeranylation                                                                                                              1.00
## Rab Regulation Of Trafficking                                                                                                        1.00
## Rac1 Gtpase Cycle                                                                                                                    1.00
## Rac2 Gtpase Cycle                                                                                                                    1.00
## Rac3 Gtpase Cycle                                                                                                                    1.00
## Raf Activation                                                                                                                       1.00
## Rap1 Signalling                                                                                                                      1.00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.00
## Ras Processing                                                                                                                       1.00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.00
## Receptor Mediated Mitophagy                                                                                                          1.00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.00
## Recycling Of Bile Acids And Salts                                                                                                    1.00
## Recycling Of Eif2 Gdp                                                                                                                1.00
## Recycling Pathway Of L1                                                                                                              1.00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.00
## Reelin Signalling Pathway                                                                                                            1.00
## Regulated Proteolysis Of P75ntr                                                                                                      1.00
## Regulation By C Flip                                                                                                                 1.00
## Regulation Of Bach1 Activity                                                                                                         1.00
## Regulation Of Beta Cell Development                                                                                                  1.00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.00
## Regulation Of Expression Of Slits And Robos                                                                                          1.00
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           1.00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.00
## Regulation Of Ifna Signaling                                                                                                         1.00
## Regulation Of Ifng Signaling                                                                                                         1.00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.00
## Regulation Of Insulin Secretion                                                                                                      1.00
## Regulation Of Kit Signaling                                                                                                          1.00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.00
## Regulation Of Pten Gene Transcription                                                                                                1.00
## Regulation Of Pten Localization                                                                                                      1.00
## Regulation Of Pten Mrna Translation                                                                                                  1.00
## Regulation Of Pten Stability And Activity                                                                                            1.00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.00
## Regulation Of Ras By Gaps                                                                                                            1.00
## Regulation Of Runx1 Expression And Activity                                                                                          1.00
## Regulation Of Runx2 Expression And Activity                                                                                          1.00
## Regulation Of Runx3 Expression And Activity                                                                                          1.00
## Regulation Of Signaling By Cbl                                                                                                       1.00
## Regulation Of Signaling By Nodal                                                                                                     1.00
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.00
## Regulation Of Tp53 Activity                                                                                                          1.00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.00
## Regulation Of Tp53 Expression And Degradation                                                                                        1.00
## Relaxin Receptors                                                                                                                    1.00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.00
## Release Of Hh Np From The Secreting Cell                                                                                             1.00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.00
## Repression Of Wnt Target Genes                                                                                                       1.00
## Reproduction                                                                                                                         1.00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.00
## Resolution Of D Loop Structures                                                                                                      1.00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.00
## Respiratory Electron Transport                                                                                                       1.00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.00
## Response Of Mtb To Phagocytosis                                                                                                      1.00
## Response To Metal Ions                                                                                                               1.00
## Ret Signaling                                                                                                                        1.00
## Retinoid Cycle Disease Events                                                                                                        1.00
## Retrograde Neurotrophin Signalling                                                                                                   1.00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.00
## Rho Gtpase Cycle                                                                                                                     1.00
## Rho Gtpase Effectors                                                                                                                 1.00
## Rho Gtpases Activate Cit                                                                                                             1.00
## Rho Gtpases Activate Formins                                                                                                         1.00
## Rho Gtpases Activate Iqgaps                                                                                                          1.00
## Rho Gtpases Activate Ktn1                                                                                                            1.00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.00
## Rho Gtpases Activate Paks                                                                                                            1.00
## Rho Gtpases Activate Pkns                                                                                                            1.00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.00
## Rho Gtpases Activate Rocks                                                                                                           1.00
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.00
## Rhoa Gtpase Cycle                                                                                                                    1.00
## Rhob Gtpase Cycle                                                                                                                    1.00
## Rhobtb Gtpase Cycle                                                                                                                  1.00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.00
## Rhobtb3 Atpase Cycle                                                                                                                 1.00
## Rhoc Gtpase Cycle                                                                                                                    1.00
## Rhod Gtpase Cycle                                                                                                                    1.00
## Rhof Gtpase Cycle                                                                                                                    1.00
## Rhog Gtpase Cycle                                                                                                                    1.00
## Rhoh Gtpase Cycle                                                                                                                    1.00
## Rhoj Gtpase Cycle                                                                                                                    1.00
## Rhoq Gtpase Cycle                                                                                                                    1.00
## Rhot1 Gtpase Cycle                                                                                                                   1.00
## Rhou Gtpase Cycle                                                                                                                    1.00
## Rhov Gtpase Cycle                                                                                                                    1.00
## Rna Polymerase I Promoter Escape                                                                                                     1.00
## Rna Polymerase I Transcription                                                                                                       1.00
## Rna Polymerase I Transcription Initiation                                                                                            1.00
## Rna Polymerase I Transcription Termination                                                                                           1.00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.00
## Rna Polymerase Ii Transcription Termination                                                                                          1.00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.00
## Rna Polymerase Iii Transcription                                                                                                     1.00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.00
## Rna Polymerase Iii Transcription Termination                                                                                         1.00
## Rnd1 Gtpase Cycle                                                                                                                    1.00
## Rnd2 Gtpase Cycle                                                                                                                    1.00
## Rnd3 Gtpase Cycle                                                                                                                    1.00
## Robo Receptors Bind Akap5                                                                                                            1.00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.00
## Role Of Phospholipids In Phagocytosis                                                                                                1.00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.00
## Rora Activates Gene Expression                                                                                                       1.00
## Ros And Rns Production In Phagocytes                                                                                                 1.00
## Rrna Modification In The Mitochondrion                                                                                               1.00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.00
## Rrna Processing                                                                                                                      1.00
## Rrna Processing In The Mitochondrion                                                                                                 1.00
## Rsk Activation                                                                                                                       1.00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  1.00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.00
## Runx2 Regulates Bone Development                                                                                                     1.00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.00
## Runx3 Regulates Notch Signaling                                                                                                      1.00
## Runx3 Regulates P14 Arf                                                                                                              1.00
## Runx3 Regulates Wnt Signaling                                                                                                        1.00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.00
## S Phase                                                                                                                              1.00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.00
## Sars Cov 1 Infection                                                                                                                 1.00
## Sars Cov 2 Infection                                                                                                                 1.00
## Sars Cov Infections                                                                                                                  1.00
## Scavenging By Class A Receptors                                                                                                      1.00
## Scavenging By Class B Receptors                                                                                                      1.00
## Scavenging By Class F Receptors                                                                                                      1.00
## Scavenging Of Heme From Plasma                                                                                                       1.00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.00
## Selective Autophagy                                                                                                                  1.00
## Selenoamino Acid Metabolism                                                                                                          1.00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.00
## Sema4d In Semaphorin Signaling                                                                                                       1.00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.00
## Semaphorin Interactions                                                                                                              1.00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.00
## Sensory Perception                                                                                                                   1.00
## Sensory Processing Of Sound                                                                                                          1.00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.00
## Separation Of Sister Chromatids                                                                                                      1.00
## Serine Biosynthesis                                                                                                                  1.00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.00
## Serotonin Receptors                                                                                                                  1.00
## Shc Mediated Cascade Fgfr1                                                                                                           1.00
## Shc Mediated Cascade Fgfr3                                                                                                           1.00
## Shc Mediated Cascade Fgfr4                                                                                                           1.00
## Shc Related Events Triggered By Igf1r                                                                                                1.00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.00
## Signal Amplification                                                                                                                 1.00
## Signal Attenuation                                                                                                                   1.00
## Signal Regulatory Protein Family Interactions                                                                                        1.00
## Signaling By Activin                                                                                                                 1.00
## Signaling By Bmp                                                                                                                     1.00
## Signaling By Braf And Raf Fusions                                                                                                    1.00
## Signaling By Csf3 G Csf                                                                                                              1.00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.00
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          1.00
## Signaling By Erythropoietin                                                                                                          1.00
## Signaling By Fgfr                                                                                                                    1.00
## Signaling By Fgfr In Disease                                                                                                         1.00
## Signaling By Fgfr1                                                                                                                   1.00
## Signaling By Fgfr1 In Disease                                                                                                        1.00
## Signaling By Fgfr2                                                                                                                   1.00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.00
## Signaling By Fgfr2 In Disease                                                                                                        1.00
## Signaling By Fgfr3                                                                                                                   1.00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.00
## Signaling By Fgfr4                                                                                                                   1.00
## Signaling By Fgfr4 In Disease                                                                                                        1.00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.00
## Signaling By Gpcr                                                                                                                    1.00
## Signaling By Hedgehog                                                                                                                1.00
## Signaling By Hippo                                                                                                                   1.00
## Signaling By Insulin Receptor                                                                                                        1.00
## Signaling By Kit In Disease                                                                                                          1.00
## Signaling By Leptin                                                                                                                  1.00
## Signaling By Lrp5 Mutants                                                                                                            1.00
## Signaling By Mapk Mutants                                                                                                            1.00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.00
## Signaling By Met                                                                                                                     1.00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.00
## Signaling By Mras Complex Mutants                                                                                                    1.00
## Signaling By Mst1                                                                                                                    1.00
## Signaling By Nodal                                                                                                                   1.00
## Signaling By Notch                                                                                                                   1.00
## Signaling By Notch1                                                                                                                  1.00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.00
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    1.00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.00
## Signaling By Notch4                                                                                                                  1.00
## Signaling By Ntrk2 Trkb                                                                                                              1.00
## Signaling By Ntrk3 Trkc                                                                                                              1.00
## Signaling By Nuclear Receptors                                                                                                       1.00
## Signaling By Pdgf                                                                                                                    1.00
## Signaling By Pdgfr In Disease                                                                                                        1.00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            1.00
## Signaling By Receptor Tyrosine Kinases                                                                                               1.00
## Signaling By Retinoic Acid                                                                                                           1.00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.00
## Signaling By Rnf43 Mutants                                                                                                           1.00
## Signaling By Robo Receptors                                                                                                          1.00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.00
## Signaling By Vegf                                                                                                                    1.00
## Signaling By Wnt                                                                                                                     1.00
## Signaling By Wnt In Cancer                                                                                                           1.00
## Signalling To Erks                                                                                                                   1.00
## Signalling To P38 Via Rit And Rin                                                                                                    1.00
## Signalling To Ras                                                                                                                    1.00
## Sirt1 Negatively Regulates Rrna Expression                                                                                           1.00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.00
## Slc Mediated Transmembrane Transport                                                                                                 1.00
## Slc Transporter Disorders                                                                                                            1.00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.00
## Smooth Muscle Contraction                                                                                                            1.00
## Snrnp Assembly                                                                                                                       1.00
## Sodium Calcium Exchangers                                                                                                            1.00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.00
## Sodium Proton Exchangers                                                                                                             1.00
## Sos Mediated Signalling                                                                                                              1.00
## Sperm Motility And Taxes                                                                                                             1.00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.00
## Sphingolipid Metabolism                                                                                                              1.00
## Spry Regulation Of Fgf Signaling                                                                                                     1.00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.00
## Stabilization Of P53                                                                                                                 1.00
## Stat5 Activation                                                                                                                     1.00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.00
## Striated Muscle Contraction                                                                                                          1.00
## Sulfide Oxidation To Sulfate                                                                                                         1.00
## Sulfur Amino Acid Metabolism                                                                                                         1.00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.00
## Sumo Is Proteolytically Processed                                                                                                    1.00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.00
## Sumoylation Of Dna Replication Proteins                                                                                              1.00
## Sumoylation Of Immune Response Proteins                                                                                              1.00
## Sumoylation Of Intracellular Receptors                                                                                               1.00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.00
## Sumoylation Of Transcription Factors                                                                                                 1.00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.00
## Suppression Of Apoptosis                                                                                                             1.00
## Suppression Of Phagosomal Maturation                                                                                                 1.00
## Surfactant Metabolism                                                                                                                1.00
## Switching Of Origins To A Post Replicative State                                                                                     1.00
## Synaptic Adhesion Like Molecules                                                                                                     1.00
## Syndecan Interactions                                                                                                                1.00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    1.00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.00
## Synthesis Of Diphthamide Eef2                                                                                                        1.00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.00
## Synthesis Of Gdp Mannose                                                                                                             1.00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.00
## Synthesis Of Ketone Bodies                                                                                                           1.00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.00
## Synthesis Of Lipoxins Lx                                                                                                             1.00
## Synthesis Of Pa                                                                                                                      1.00
## Synthesis Of Pc                                                                                                                      1.00
## Synthesis Of Pe                                                                                                                      1.00
## Synthesis Of Pg                                                                                                                      1.00
## Synthesis Of Pi                                                                                                                      1.00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   1.00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                1.00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             1.00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.00
## Tandem Pore Domain Potassium Channels                                                                                                1.00
## Tbc Rabgaps                                                                                                                          1.00
## Tcf Dependent Signaling In Response To Wnt                                                                                           1.00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.00
## Telomere C Strand Synthesis Initiation                                                                                               1.00
## Telomere Extension By Telomerase                                                                                                     1.00
## Telomere Maintenance                                                                                                                 1.00
## Terminal Pathway Of Complement                                                                                                       1.00
## Termination Of Translesion Dna Synthesis                                                                                             1.00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.00
## The Activation Of Arylsulfatases                                                                                                     1.00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.00
## The Fatty Acid Cycling Model                                                                                                         1.00
## The Nlrp3 Inflammasome                                                                                                               1.00
## The Phototransduction Cascade                                                                                                        1.00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.00
## Thyroxine Biosynthesis                                                                                                               1.00
## Tie2 Signaling                                                                                                                       1.00
## Tight Junction Interactions                                                                                                          1.00
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 1.00
## Tnfr1 Mediated Ceramide Production                                                                                                   1.00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.00
## Tp53 Regulates Metabolic Genes                                                                                                       1.00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.00
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               1.00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         1.00
## Traf6 Mediated Irf7 Activation                                                                                                       1.00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.00
## Traf6 Mediated Nf Kb Activation                                                                                                      1.00
## Trafficking Of Ampa Receptors                                                                                                        1.00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.00
## Trail Signaling                                                                                                                      1.00
## Trans Golgi Network Vesicle Budding                                                                                                  1.00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.00
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 1.00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 1.00
## Transcription Of The Hiv Genome                                                                                                      1.00
## Transcriptional Regulation By E2f6                                                                                                   1.00
## Transcriptional Regulation By Runx1                                                                                                  1.00
## Transcriptional Regulation By Runx2                                                                                                  1.00
## Transcriptional Regulation By Runx3                                                                                                  1.00
## Transcriptional Regulation By Small Rnas                                                                                             1.00
## Transcriptional Regulation By Tp53                                                                                                   1.00
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.00
## Transferrin Endocytosis And Recycling                                                                                                1.00
## Translation                                                                                                                          1.00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.00
## Translesion Synthesis By Polh                                                                                                        1.00
## Translesion Synthesis By Polk                                                                                                        1.00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.00
## Transmission Across Chemical Synapses                                                                                                1.00
## Transport And Synthesis Of Paps                                                                                                      1.00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.00
## Transport Of Fatty Acids                                                                                                             1.00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.00
## Transport Of Nucleotide Sugars                                                                                                       1.00
## Transport Of Organic Anions                                                                                                          1.00
## Transport Of Small Molecules                                                                                                         1.00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.00
## Transport To The Golgi And Subsequent Modification                                                                                   1.00
## Trif Mediated Programmed Cell Death                                                                                                  1.00
## Triglyceride Biosynthesis                                                                                                            1.00
## Triglyceride Catabolism                                                                                                              1.00
## Triglyceride Metabolism                                                                                                              1.00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.00
## Trna Aminoacylation                                                                                                                  1.00
## Trna Modification In The Mitochondrion                                                                                               1.00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.00
## Trna Processing                                                                                                                      1.00
## Trna Processing In The Mitochondrion                                                                                                 1.00
## Trna Processing In The Nucleus                                                                                                       1.00
## Trp Channels                                                                                                                         1.00
## Tryptophan Catabolism                                                                                                                1.00
## Type I Hemidesmosome Assembly                                                                                                        1.00
## Tyrosine Catabolism                                                                                                                  1.00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.00
## Ub Specific Processing Proteases                                                                                                     1.00
## Ubiquinol Biosynthesis                                                                                                               1.00
## Uch Proteinases                                                                                                                      1.00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.00
## Unwinding Of Dna                                                                                                                     1.00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.00
## Uptake And Function Of Anthrax Toxins                                                                                                1.00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.00
## Urea Cycle                                                                                                                           1.00
## Vasopressin Like Receptors                                                                                                           1.00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.00
## Vegf Ligand Receptor Interactions                                                                                                    1.00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.00
## Vegfr2 Mediated Vascular Permeability                                                                                                1.00
## Vesicle Mediated Transport                                                                                                           1.00
## Viral Messenger Rna Synthesis                                                                                                        1.00
## Visual Phototransduction                                                                                                             1.00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.00
## Vitamin C Ascorbate Metabolism                                                                                                       1.00
## Vitamin D Calciferol Metabolism                                                                                                      1.00
## Vitamins                                                                                                                             1.00
## Vldl Assembly                                                                                                                        1.00
## Vldl Clearance                                                                                                                       1.00
## Voltage Gated Potassium Channels                                                                                                     1.00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.00
## Wnt Mediated Activation Of Dvl                                                                                                       1.00
## Xenobiotics                                                                                                                          1.00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.00
## Zinc Transporters                                                                                                                    1.00
##                                                                                                                                      signature
## Interleukin 10 Signaling                                                                                                                    45
## Chemokine Receptors Bind Chemokines                                                                                                         45
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                45
## Cd163 Mediating An Anti Inflammatory Response                                                                                               45
## Interleukin 1 Processing                                                                                                                    45
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                      45
## Tnfs Bind Their Physiological Receptors                                                                                                     45
## Interleukin 4 And Interleukin 13 Signaling                                                                                                  45
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                            45
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                45
## Mecp2 Regulates Transcription Factors                                                                                                       45
## Clec7a Inflammasome Pathway                                                                                                                 45
## Fibronectin Matrix Formation                                                                                                                45
## Ptk6 Promotes Hif1a Stabilization                                                                                                           45
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                        45
## Creb Phosphorylation                                                                                                                        45
## Purinergic Signaling In Leishmaniasis Infection                                                                                             45
## Pyroptosis                                                                                                                                  45
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                45
## Interleukin 18 Signaling                                                                                                                    45
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                           45
## Pd 1 Signaling                                                                                                                              45
## Extra Nuclear Estrogen Signaling                                                                                                            45
## Egfr Interacts With Phospholipase C Gamma                                                                                                   45
## Egfr Transactivation By Gastrin                                                                                                             45
## Mapk1 Erk2 Activation                                                                                                                       45
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                           45
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                         45
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                      45
## Akt Phosphorylates Targets In The Nucleus                                                                                                   45
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                    45
## Mapk3 Erk1 Activation                                                                                                                       45
## Regulated Necrosis                                                                                                                          45
## Interleukin 6 Signaling                                                                                                                     45
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                            45
## Cd28 Dependent Vav1 Pathway                                                                                                                 45
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                           45
## Killing Mechanisms                                                                                                                          45
## Notch2 Intracellular Domain Regulates Transcription                                                                                         45
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                    45
## Vldlr Internalisation And Degradation                                                                                                       45
## Dissolution Of Fibrin Clot                                                                                                                  45
## Erbb2 Activates Ptk6 Signaling                                                                                                              45
## Irf3 Mediated Induction Of Type I Ifn                                                                                                       45
## Trafficking And Processing Of Endosomal Tlr                                                                                                 45
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                       45
## Ngf Stimulated Transcription                                                                                                                45
## Shc1 Events In Egfr Signaling                                                                                                               45
## Constitutive Signaling By Egfrviii                                                                                                          45
## Erbb2 Regulates Cell Motility                                                                                                               45
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                    45
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                             45
## Wnt5a Dependent Internalization Of Fzd4                                                                                                     45
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                  45
## Grb2 Events In Erbb2 Signaling                                                                                                              45
## Pi3k Events In Erbb2 Signaling                                                                                                              45
## Signaling By Erbb2 Ecd Mutants                                                                                                              45
## Sting Mediated Induction Of Host Immune Responses                                                                                           45
## Sumoylation Of Dna Methylation Proteins                                                                                                     45
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                               45
## Gab1 Signalosome                                                                                                                            45
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                       45
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                             45
## Costimulation By The Cd28 Family                                                                                                            45
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                            45
## Ldl Clearance                                                                                                                               45
## Pka Mediated Phosphorylation Of Creb                                                                                                        45
## Ctla4 Inhibitory Signaling                                                                                                                  45
## Inflammasomes                                                                                                                               45
## Signal Transduction By L1                                                                                                                   45
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                  45
## Cd28 Dependent Pi3k Akt Signaling                                                                                                           45
## Shc1 Events In Erbb2 Signaling                                                                                                              45
## Ikk Complex Recruitment Mediated By Rip1                                                                                                    45
## Raf Independent Mapk1 3 Activation                                                                                                          45
## Termination Of O Glycan Biosynthesis                                                                                                        45
## Interleukin 6 Family Signaling                                                                                                              45
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                    45
## Signaling By Egfr In Cancer                                                                                                                 45
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                               45
## Dectin 2 Family                                                                                                                             45
## Signaling By Erbb2 In Cancer                                                                                                                45
## Wnt Ligand Biogenesis And Trafficking                                                                                                       45
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                            45
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                       45
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                            45
## Downregulation Of Erbb2 Signaling                                                                                                           45
## Nuclear Events Kinase And Transcription Factor Activation                                                                                   45
## Ripk1 Mediated Regulated Necrosis                                                                                                           45
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                45
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                    45
## Diseases Of Immune System                                                                                                                   45
## Egfr Downregulation                                                                                                                         45
## Myd88 Independent Tlr4 Cascade                                                                                                              45
## Perk Regulates Gene Expression                                                                                                              45
## Regulation Of Mecp2 Expression And Activity                                                                                                 45
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                      45
## Activation Of Matrix Metalloproteinases                                                                                                     45
## Cd28 Co Stimulation                                                                                                                         45
## Plasma Lipoprotein Clearance                                                                                                                45
## Sialic Acid Metabolism                                                                                                                      45
## Signaling By Notch2                                                                                                                         45
## Peptide Ligand Binding Receptors                                                                                                            45
## Circadian Clock                                                                                                                             45
## Regulation Of Tnfr1 Signaling                                                                                                               45
## Interleukin 17 Signaling                                                                                                                    45
## Nod1 2 Signaling Pathway                                                                                                                    45
## Pi3k Akt Signaling In Cancer                                                                                                                45
## Ca Dependent Events                                                                                                                         45
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                          45
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                45
## Generation Of Second Messenger Molecules                                                                                                    45
## Senescence Associated Secretory Phenotype Sasp                                                                                              45
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                           45
## Dag And Ip3 Signaling                                                                                                                       45
## Negative Regulation Of The Pi3k Akt Network                                                                                                 45
## Transcriptional Regulation By Ventx                                                                                                         45
## Signaling By Scf Kit                                                                                                                        45
## Sumoylation Of Transcription Cofactors                                                                                                      45
## Tnf Signaling                                                                                                                               45
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                  45
## Dap12 Interactions                                                                                                                          45
## Interleukin 12 Signaling                                                                                                                    45
## Toll Like Receptor Cascades                                                                                                                 45
## Heme Signaling                                                                                                                              45
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                     45
## Signaling By Egfr                                                                                                                           45
## Signaling By Erbb2                                                                                                                          45
## Signaling By Notch3                                                                                                                         45
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                      45
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                           45
## Fcgr3a Mediated Il10 Synthesis                                                                                                              45
## G Protein Mediated Events                                                                                                                   45
## Signaling By Ptk6                                                                                                                           45
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                      45
## Interleukin 12 Family Signaling                                                                                                             45
## Interleukin 1 Family Signaling                                                                                                              45
## Signaling By Erbb4                                                                                                                          45
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                45
## Ca2 Pathway                                                                                                                                 45
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                         45
## O Linked Glycosylation Of Mucins                                                                                                            45
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                        45
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                            45
## Asymmetric Localization Of Pcp Proteins                                                                                                     45
## Collagen Degradation                                                                                                                        45
## Dna Methylation                                                                                                                             45
## Ncam Signaling For Neurite Out Growth                                                                                                       45
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                             45
## Transcriptional Regulation By Mecp2                                                                                                         45
## Diseases Associated With O Glycosylation Of Proteins                                                                                        45
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                        45
## Prc2 Methylates Histones And Dna                                                                                                            45
## Signaling By Interleukins                                                                                                                   45
## Signaling By Tgf Beta Receptor Complex                                                                                                      45
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                          45
## Ecm Proteoglycans                                                                                                                           45
## Rmts Methylate Histone Arginines                                                                                                            45
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                     45
## G Alpha I Signalling Events                                                                                                                 45
## C Type Lectin Receptors Clrs                                                                                                                45
## Collagen Formation                                                                                                                          45
## Esr Mediated Signaling                                                                                                                      45
## Fceri Mediated Mapk Activation                                                                                                              45
## Hcmv Early Events                                                                                                                           45
## Opioid Signalling                                                                                                                           45
## Signaling By Ntrks                                                                                                                          45
## Transcriptional Regulation Of Granulopoiesis                                                                                                45
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                        45
## Class B 2 Secretin Family Receptors                                                                                                         45
## Clathrin Mediated Endocytosis                                                                                                               45
## Clec7a Dectin 1 Signaling                                                                                                                   45
## Eph Ephrin Signaling                                                                                                                        45
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                    45
## Interferon Gamma Signaling                                                                                                                  45
## Leishmania Infection                                                                                                                        45
## Mitochondrial Biogenesis                                                                                                                    45
## Pcp Ce Pathway                                                                                                                              45
## Unfolded Protein Response Upr                                                                                                               45
## Amyloid Fiber Formation                                                                                                                     45
## Cellular Senescence                                                                                                                         45
## Diseases Of Programmed Cell Death                                                                                                           45
## Hcmv Infection                                                                                                                              45
## Interleukin 1 Signaling                                                                                                                     45
## O Linked Glycosylation                                                                                                                      45
## Programmed Cell Death                                                                                                                       45
## Signaling By Tgfb Family Members                                                                                                            45
## Stimuli Sensing Channels                                                                                                                    45
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                          45
## Cell Surface Interactions At The Vascular Wall                                                                                              45
## Class A 1 Rhodopsin Like Receptors                                                                                                          45
## Cytokine Signaling In Immune System                                                                                                         45
## Death Receptor Signalling                                                                                                                   45
## Degradation Of The Extracellular Matrix                                                                                                     45
## L1cam Interactions                                                                                                                          45
## Mhc Class Ii Antigen Presentation                                                                                                           45
## Oxidative Stress Induced Senescence                                                                                                         45
## Response To Elevated Platelet Cytosolic Ca2                                                                                                 45
## Sumoylation                                                                                                                                 45
## Tcr Signaling                                                                                                                               45
## 2 Ltr Circle Formation                                                                                                                      45
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                             45
## Abacavir Metabolism                                                                                                                         45
## Abacavir Transmembrane Transport                                                                                                            45
## Abacavir Transport And Metabolism                                                                                                           45
## Abc Family Proteins Mediated Transport                                                                                                      45
## Abc Transporter Disorders                                                                                                                   45
## Abc Transporters In Lipid Homeostasis                                                                                                       45
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                            45
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                 45
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                               45
## Acetylcholine Binding And Downstream Events                                                                                                 45
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                      45
## Acetylcholine Neurotransmitter Release Cycle                                                                                                45
## Acetylcholine Regulates Insulin Secretion                                                                                                   45
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                         45
## Activated Notch1 Transmits Signal To The Nucleus                                                                                            45
## Activated Ntrk2 Signals Through Cdk5                                                                                                        45
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                               45
## Activated Ntrk2 Signals Through Fyn                                                                                                         45
## Activated Ntrk2 Signals Through Pi3k                                                                                                        45
## Activated Ntrk2 Signals Through Ras                                                                                                         45
## Activated Ntrk3 Signals Through Pi3k                                                                                                        45
## Activated Ntrk3 Signals Through Ras                                                                                                         45
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                               45
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                 45
## Activation Of Ampk Downstream Of Nmdars                                                                                                     45
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                        45
## Activation Of Atr In Response To Replication Stress                                                                                         45
## Activation Of Bad And Translocation To Mitochondria                                                                                         45
## Activation Of Bh3 Only Proteins                                                                                                             45
## Activation Of C3 And C5                                                                                                                     45
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                 45
## Activation Of Gene Expression By Srebf Srebp                                                                                                45
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                        45
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                      45
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                   45
## Activation Of Noxa And Translocation To Mitochondria                                                                                        45
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                        45
## Activation Of Puma And Translocation To Mitochondria                                                                                        45
## Activation Of Rac1                                                                                                                          45
## Activation Of Rac1 Downstream Of Nmdars                                                                                                     45
## Activation Of Ras In B Cells                                                                                                                45
## Activation Of Smo                                                                                                                           45
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                       45
## Activation Of The Phototransduction Cascade                                                                                                 45
## Activation Of The Pre Replicative Complex                                                                                                   45
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                45
## Activation Of Trka Receptors                                                                                                                45
## Acyl Chain Remodeling Of Cl                                                                                                                 45
## Acyl Chain Remodeling Of Dag And Tag                                                                                                        45
## Acyl Chain Remodelling Of Pc                                                                                                                45
## Acyl Chain Remodelling Of Pe                                                                                                                45
## Acyl Chain Remodelling Of Pg                                                                                                                45
## Acyl Chain Remodelling Of Pi                                                                                                                45
## Acyl Chain Remodelling Of Ps                                                                                                                45
## Adaptive Immune System                                                                                                                      45
## Adenylate Cyclase Activating Pathway                                                                                                        45
## Adenylate Cyclase Inhibitory Pathway                                                                                                        45
## Adherens Junctions Interactions                                                                                                             45
## Adp Signalling Through P2y Purinoceptor 1                                                                                                   45
## Adp Signalling Through P2y Purinoceptor 12                                                                                                  45
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                         45
## Adrenoceptors                                                                                                                               45
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                        45
## Aflatoxin Activation And Detoxification                                                                                                     45
## Aggrephagy                                                                                                                                  45
## Akt Phosphorylates Targets In The Cytosol                                                                                                   45
## Alpha Defensins                                                                                                                             45
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                  45
## Alpha Oxidation Of Phytanate                                                                                                                45
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                    45
## Alternative Complement Activation                                                                                                           45
## Amine Ligand Binding Receptors                                                                                                              45
## Amino Acid Conjugation                                                                                                                      45
## Amino Acid Transport Across The Plasma Membrane                                                                                             45
## Amino Acids Regulate Mtorc1                                                                                                                 45
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                    45
## Anchoring Fibril Formation                                                                                                                  45
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                          45
## Androgen Biosynthesis                                                                                                                       45
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                            45
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                    45
## Antigen Processing Cross Presentation                                                                                                       45
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                    45
## Antimicrobial Peptides                                                                                                                      45
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                 45
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                45
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                    45
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                           45
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                     45
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                      45
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                             45
## Apoptosis                                                                                                                                   45
## Apoptosis Induced Dna Fragmentation                                                                                                         45
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                45
## Apoptotic Cleavage Of Cellular Proteins                                                                                                     45
## Apoptotic Execution Phase                                                                                                                   45
## Apoptotic Factor Mediated Response                                                                                                          45
## Aquaporin Mediated Transport                                                                                                                45
## Arachidonate Production From Dag                                                                                                            45
## Arachidonic Acid Metabolism                                                                                                                 45
## Arms Mediated Activation                                                                                                                    45
## Aryl Hydrocarbon Receptor Signalling                                                                                                        45
## Asparagine N Linked Glycosylation                                                                                                           45
## Aspartate And Asparagine Metabolism                                                                                                         45
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                    45
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                            45
## Assembly Of The Hiv Virion                                                                                                                  45
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                    45
## Assembly Of The Pre Replicative Complex                                                                                                     45
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                            45
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                   45
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                        45
## Attachment And Entry                                                                                                                        45
## Attachment Of Gpi Anchor To Upar                                                                                                            45
## Attenuation Phase                                                                                                                           45
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                   45
## Aurka Activation By Tpx2                                                                                                                    45
## Autophagy                                                                                                                                   45
## B Wich Complex Positively Regulates Rrna Expression                                                                                         45
## Base Excision Repair                                                                                                                        45
## Base Excision Repair Ap Site Formation                                                                                                      45
## Basigin Interactions                                                                                                                        45
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                   45
## Beta Catenin Independent Wnt Signaling                                                                                                      45
## Beta Catenin Phosphorylation Cascade                                                                                                        45
## Beta Defensins                                                                                                                              45
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                45
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                          45
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                              45
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                           45
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                              45
## Beta Oxidation Of Pristanoyl Coa                                                                                                            45
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                               45
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                45
## Bicarbonate Transporters                                                                                                                    45
## Bile Acid And Bile Salt Metabolism                                                                                                          45
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                        45
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                          45
## Biological Oxidations                                                                                                                       45
## Biosynthesis Of Epa Derived Spms                                                                                                            45
## Biosynthesis Of Maresin Like Spms                                                                                                           45
## Biosynthesis Of Maresins                                                                                                                    45
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                     45
## Biotin Transport And Metabolism                                                                                                             45
## Blood Group Systems Biosynthesis                                                                                                            45
## Branched Chain Amino Acid Catabolism                                                                                                        45
## Budding And Maturation Of Hiv Virion                                                                                                        45
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                 45
## Butyrophilin Btn Family Interactions                                                                                                        45
## Ca2 Activated K Channels                                                                                                                    45
## Calcineurin Activates Nfat                                                                                                                  45
## Calcitonin Like Ligand Receptors                                                                                                            45
## Calnexin Calreticulin Cycle                                                                                                                 45
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                 45
## Cardiac Conduction                                                                                                                          45
## Cargo Concentration In The Er                                                                                                               45
## Cargo Trafficking To The Periciliary Membrane                                                                                               45
## Carnitine Metabolism                                                                                                                        45
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                            45
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                        45
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                               45
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                          45
## Cation Coupled Chloride Cotransporters                                                                                                      45
## Cd209 Dc Sign Signaling                                                                                                                     45
## Cd22 Mediated Bcr Regulation                                                                                                                45
## Cdc42 Gtpase Cycle                                                                                                                          45
## Cdc6 Association With The Orc Origin Complex                                                                                                45
## Cell Cell Communication                                                                                                                     45
## Cell Cell Junction Organization                                                                                                             45
## Cell Cycle                                                                                                                                  45
## Cell Cycle Checkpoints                                                                                                                      45
## Cell Cycle Mitotic                                                                                                                          45
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                               45
## Cell Extracellular Matrix Interactions                                                                                                      45
## Cell Junction Organization                                                                                                                  45
## Cellular Hexose Transport                                                                                                                   45
## Cellular Response To Chemical Stress                                                                                                        45
## Cellular Response To Heat Stress                                                                                                            45
## Cellular Response To Hypoxia                                                                                                                45
## Cellular Response To Starvation                                                                                                             45
## Cellular Responses To External Stimuli                                                                                                      45
## Cgmp Effects                                                                                                                                45
## Chaperone Mediated Autophagy                                                                                                                45
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                               45
## Chl1 Interactions                                                                                                                           45
## Cholesterol Biosynthesis                                                                                                                    45
## Choline Catabolism                                                                                                                          45
## Chondroitin Sulfate Biosynthesis                                                                                                            45
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                             45
## Chrebp Activates Metabolic Gene Expression                                                                                                  45
## Chromatin Modifying Enzymes                                                                                                                 45
## Chromosome Maintenance                                                                                                                      45
## Chylomicron Assembly                                                                                                                        45
## Chylomicron Clearance                                                                                                                       45
## Chylomicron Remodeling                                                                                                                      45
## Cilium Assembly                                                                                                                             45
## Citric Acid Cycle Tca Cycle                                                                                                                 45
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                        45
## Class I Mhc Mediated Antigen Processing Presentation                                                                                        45
## Class I Peroxisomal Membrane Protein Import                                                                                                 45
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                     45
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                          45
## Coenzyme A Biosynthesis                                                                                                                     45
## Cohesin Loading Onto Chromatin                                                                                                              45
## Collagen Biosynthesis And Modifying Enzymes                                                                                                 45
## Collagen Chain Trimerization                                                                                                                45
## Common Pathway Of Fibrin Clot Formation                                                                                                     45
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                  45
## Complement Cascade                                                                                                                          45
## Complex I Biogenesis                                                                                                                        45
## Condensation Of Prometaphase Chromosomes                                                                                                    45
## Condensation Of Prophase Chromosomes                                                                                                        45
## Conjugation Of Benzoate With Glycine                                                                                                        45
## Constitutive Signaling By Overexpressed Erbb2                                                                                               45
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                  45
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                            45
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                          45
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                               45
## Copi Independent Golgi To Er Retrograde Traffic                                                                                             45
## Copi Mediated Anterograde Transport                                                                                                         45
## Copii Mediated Vesicle Transport                                                                                                            45
## Creatine Metabolism                                                                                                                         45
## Creation Of C4 And C2 Activators                                                                                                            45
## Creb3 Factors Activate Genes                                                                                                                45
## Cristae Formation                                                                                                                           45
## Crmps In Sema3a Signaling                                                                                                                   45
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                             45
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                  45
## Crosslinking Of Collagen Fibrils                                                                                                            45
## Cs Ds Degradation                                                                                                                           45
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                     45
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                            45
## Cyclin D Associated Events In G1                                                                                                            45
## Cyp2e1 Reactions                                                                                                                            45
## Cytochrome C Mediated Apoptotic Response                                                                                                    45
## Cytochrome P450 Arranged By Substrate Type                                                                                                  45
## Cytoprotection By Hmox1                                                                                                                     45
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                      45
## Cytosolic Sulfonation Of Small Molecules                                                                                                    45
## Cytosolic Trna Aminoacylation                                                                                                               45
## Dap12 Signaling                                                                                                                             45
## Darpp 32 Events                                                                                                                             45
## Dcc Mediated Attractive Signaling                                                                                                           45
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                     45
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                    45
## Deadenylation Dependent Mrna Decay                                                                                                          45
## Deadenylation Of Mrna                                                                                                                       45
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                              45
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                 45
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                 45
## Defective Cftr Causes Cystic Fibrosis                                                                                                       45
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                        45
## Defective Chst3 Causes Sedcjd                                                                                                               45
## Defective Chst6 Causes Mcdc1                                                                                                                45
## Defective Chsy1 Causes Tpbs                                                                                                                 45
## Defective Csf2rb Causes Smdp5                                                                                                               45
## Defective Ext2 Causes Exostoses 2                                                                                                           45
## Defective F9 Activation                                                                                                                     45
## Defective Factor Ix Causes Hemophilia B                                                                                                     45
## Defective Factor Viii Causes Hemophilia A                                                                                                   45
## Defective Lfng Causes Scdo3                                                                                                                 45
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                 45
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                   45
## Defects In Biotin Btn Metabolism                                                                                                            45
## Defects In Cobalamin B12 Metabolism                                                                                                         45
## Defects In Vitamin And Cofactor Metabolism                                                                                                  45
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                    45
## Defensins                                                                                                                                   45
## Degradation Of Axin                                                                                                                         45
## Degradation Of Beta Catenin By The Destruction Complex                                                                                      45
## Degradation Of Cysteine And Homocysteine                                                                                                    45
## Degradation Of Dvl                                                                                                                          45
## Degradation Of Gli1 By The Proteasome                                                                                                       45
## Depolymerisation Of The Nuclear Lamina                                                                                                      45
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                            45
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                 45
## Dermatan Sulfate Biosynthesis                                                                                                               45
## Detoxification Of Reactive Oxygen Species                                                                                                   45
## Deubiquitination                                                                                                                            45
## Developmental Biology                                                                                                                       45
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                               45
## Digestion                                                                                                                                   45
## Digestion And Absorption                                                                                                                    45
## Digestion Of Dietary Carbohydrate                                                                                                           45
## Digestion Of Dietary Lipid                                                                                                                  45
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                              45
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                       45
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                               45
## Diseases Associated With N Glycosylation Of Proteins                                                                                        45
## Diseases Associated With Surfactant Metabolism                                                                                              45
## Diseases Of Base Excision Repair                                                                                                            45
## Diseases Of Carbohydrate Metabolism                                                                                                         45
## Diseases Of Dna Repair                                                                                                                      45
## Diseases Of Glycosylation                                                                                                                   45
## Diseases Of Metabolism                                                                                                                      45
## Diseases Of Mismatch Repair Mmr                                                                                                             45
## Diseases Of Mitotic Cell Cycle                                                                                                              45
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                            45
## Disinhibition Of Snare Formation                                                                                                            45
## Disorders Of Transmembrane Transporters                                                                                                     45
## Displacement Of Dna Glycosylase By Apex1                                                                                                    45
## Dna Damage Bypass                                                                                                                           45
## Dna Damage Recognition In Gg Ner                                                                                                            45
## Dna Damage Reversal                                                                                                                         45
## Dna Damage Telomere Stress Induced Senescence                                                                                               45
## Dna Double Strand Break Repair                                                                                                              45
## Dna Double Strand Break Response                                                                                                            45
## Dna Repair                                                                                                                                  45
## Dna Replication                                                                                                                             45
## Dna Replication Initiation                                                                                                                  45
## Dna Replication Pre Initiation                                                                                                              45
## Dna Strand Elongation                                                                                                                       45
## Dopamine Neurotransmitter Release Cycle                                                                                                     45
## Dopamine Receptors                                                                                                                          45
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                     45
## Downregulation Of Erbb4 Signaling                                                                                                           45
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                    45
## Downregulation Of Tgf Beta Receptor Signaling                                                                                               45
## Downstream Signal Transduction                                                                                                              45
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                          45
## Downstream Signaling Of Activated Fgfr1                                                                                                     45
## Downstream Signaling Of Activated Fgfr2                                                                                                     45
## Downstream Signaling Of Activated Fgfr3                                                                                                     45
## Downstream Signaling Of Activated Fgfr4                                                                                                     45
## Dscam Interactions                                                                                                                          45
## Dual Incision In Gg Ner                                                                                                                     45
## Dual Incision In Tc Ner                                                                                                                     45
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                 45
## E2f Mediated Regulation Of Dna Replication                                                                                                  45
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                           45
## Early Phase Of Hiv Life Cycle                                                                                                               45
## Effects Of Pip2 Hydrolysis                                                                                                                  45
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                              45
## Eicosanoid Ligand Binding Receptors                                                                                                         45
## Eicosanoids                                                                                                                                 45
## Elastic Fibre Formation                                                                                                                     45
## Electric Transmission Across Gap Junctions                                                                                                  45
## Elevation Of Cytosolic Ca2 Levels                                                                                                           45
## Endogenous Sterols                                                                                                                          45
## Endosomal Sorting Complex Required For Transport Escrt                                                                                      45
## Endosomal Vacuolar Pathway                                                                                                                  45
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                            45
## Enos Activation                                                                                                                             45
## Epha Mediated Growth Cone Collapse                                                                                                          45
## Ephb Mediated Forward Signaling                                                                                                             45
## Ephrin Signaling                                                                                                                            45
## Epigenetic Regulation Of Gene Expression                                                                                                    45
## Er Quality Control Compartment Erqc                                                                                                         45
## Er To Golgi Anterograde Transport                                                                                                           45
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                 45
## Erk Mapk Targets                                                                                                                            45
## Erks Are Inactivated                                                                                                                        45
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                      45
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                      45
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                     45
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                         45
## Erythropoietin Activates Ras                                                                                                                45
## Erythropoietin Activates Stat5                                                                                                              45
## Establishment Of Sister Chromatid Cohesion                                                                                                  45
## Estrogen Biosynthesis                                                                                                                       45
## Estrogen Dependent Gene Expression                                                                                                          45
## Estrogen Stimulated Signaling Through Prkcz                                                                                                 45
## Ethanol Oxidation                                                                                                                           45
## Eukaryotic Translation Elongation                                                                                                           45
## Eukaryotic Translation Initiation                                                                                                           45
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                             45
## Extension Of Telomeres                                                                                                                      45
## Extracellular Matrix Organization                                                                                                           45
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                  45
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                       45
## Fanconi Anemia Pathway                                                                                                                      45
## Fasl Cd95l Signaling                                                                                                                        45
## Fatty Acid Metabolism                                                                                                                       45
## Fatty Acids                                                                                                                                 45
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                 45
## Fatty Acyl Coa Biosynthesis                                                                                                                 45
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                          45
## Fc Epsilon Receptor Fceri Signaling                                                                                                         45
## Fceri Mediated Ca 2 Mobilization                                                                                                            45
## Fceri Mediated Nf Kb Activation                                                                                                             45
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                45
## Fcgr Activation                                                                                                                             45
## Fertilization                                                                                                                               45
## Fgfr1 Ligand Binding And Activation                                                                                                         45
## Fgfr1 Mutant Receptor Activation                                                                                                            45
## Fgfr1b Ligand Binding And Activation                                                                                                        45
## Fgfr1c Ligand Binding And Activation                                                                                                        45
## Fgfr2 Alternative Splicing                                                                                                                  45
## Fgfr2 Ligand Binding And Activation                                                                                                         45
## Fgfr2 Mutant Receptor Activation                                                                                                            45
## Fgfr2b Ligand Binding And Activation                                                                                                        45
## Fgfr2c Ligand Binding And Activation                                                                                                        45
## Fgfr3 Ligand Binding And Activation                                                                                                         45
## Fgfr3b Ligand Binding And Activation                                                                                                        45
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                        45
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                              45
## Flt3 Signaling                                                                                                                              45
## Flt3 Signaling By Cbl Mutants                                                                                                               45
## Flt3 Signaling In Disease                                                                                                                   45
## Flt3 Signaling Through Src Family Kinases                                                                                                   45
## Folding Of Actin By Cct Tric                                                                                                                45
## Formation Of Apoptosome                                                                                                                     45
## Formation Of Atp By Chemiosmotic Coupling                                                                                                   45
## Formation Of Fibrin Clot Clotting Cascade                                                                                                   45
## Formation Of Incision Complex In Gg Ner                                                                                                     45
## Formation Of Rna Pol Ii Elongation Complex                                                                                                  45
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                45
## Formation Of Tc Ner Pre Incision Complex                                                                                                    45
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                   45
## Formation Of The Cornified Envelope                                                                                                         45
## Formation Of The Early Elongation Complex                                                                                                   45
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                      45
## Formation Of Xylulose 5 Phosphate                                                                                                           45
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                        45
## Foxo Mediated Transcription                                                                                                                 45
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                             45
## Foxo Mediated Transcription Of Cell Death Genes                                                                                             45
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                45
## Free Fatty Acid Receptors                                                                                                                   45
## Free Fatty Acids Regulate Insulin Secretion                                                                                                 45
## Frs Mediated Fgfr1 Signaling                                                                                                                45
## Frs Mediated Fgfr2 Signaling                                                                                                                45
## Frs Mediated Fgfr3 Signaling                                                                                                                45
## Frs Mediated Fgfr4 Signaling                                                                                                                45
## Fructose Catabolism                                                                                                                         45
## Fructose Metabolism                                                                                                                         45
## G Alpha 12 13 Signalling Events                                                                                                             45
## G Alpha Q Signalling Events                                                                                                                 45
## G Alpha S Signalling Events                                                                                                                 45
## G Alpha Z Signalling Events                                                                                                                 45
## G Beta Gamma Signalling Through Cdc42                                                                                                       45
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                   45
## G Protein Activation                                                                                                                        45
## G Protein Beta Gamma Signalling                                                                                                             45
## G0 And Early G1                                                                                                                             45
## G1 S Dna Damage Checkpoints                                                                                                                 45
## G1 S Specific Transcription                                                                                                                 45
## G2 M Checkpoints                                                                                                                            45
## G2 M Dna Damage Checkpoint                                                                                                                  45
## G2 M Dna Replication Checkpoint                                                                                                             45
## G2 Phase                                                                                                                                    45
## Gaba B Receptor Activation                                                                                                                  45
## Gaba Receptor Activation                                                                                                                    45
## Gaba Synthesis Release Reuptake And Degradation                                                                                             45
## Galactose Catabolism                                                                                                                        45
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                         45
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                       45
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                     45
## Gap Junction Assembly                                                                                                                       45
## Gap Junction Degradation                                                                                                                    45
## Gap Junction Trafficking And Regulation                                                                                                     45
## Gdp Fucose Biosynthesis                                                                                                                     45
## Gene Silencing By Rna                                                                                                                       45
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                 45
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                             45
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                    45
## Glucagon Signaling In Metabolic Regulation                                                                                                  45
## Glucagon Type Ligand Receptors                                                                                                              45
## Glucocorticoid Biosynthesis                                                                                                                 45
## Gluconeogenesis                                                                                                                             45
## Glucose Metabolism                                                                                                                          45
## Glucuronidation                                                                                                                             45
## Glutamate And Glutamine Metabolism                                                                                                          45
## Glutamate Neurotransmitter Release Cycle                                                                                                    45
## Glutathione Conjugation                                                                                                                     45
## Glutathione Synthesis And Recycling                                                                                                         45
## Glycerophospholipid Biosynthesis                                                                                                            45
## Glycerophospholipid Catabolism                                                                                                              45
## Glycogen Breakdown Glycogenolysis                                                                                                           45
## Glycogen Metabolism                                                                                                                         45
## Glycogen Storage Diseases                                                                                                                   45
## Glycogen Synthesis                                                                                                                          45
## Glycolysis                                                                                                                                  45
## Glycosaminoglycan Metabolism                                                                                                                45
## Glycosphingolipid Metabolism                                                                                                                45
## Glyoxylate Metabolism And Glycine Degradation                                                                                               45
## Golgi Associated Vesicle Biogenesis                                                                                                         45
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                         45
## Golgi To Er Retrograde Transport                                                                                                            45
## Gp1b Ix V Activation Signalling                                                                                                             45
## Gpcr Ligand Binding                                                                                                                         45
## Gpvi Mediated Activation Cascade                                                                                                            45
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                   45
## Grb7 Events In Erbb2 Signaling                                                                                                              45
## Growth Hormone Receptor Signaling                                                                                                           45
## Hats Acetylate Histones                                                                                                                     45
## Hcmv Late Events                                                                                                                            45
## Hdacs Deacetylate Histones                                                                                                                  45
## Hdl Assembly                                                                                                                                45
## Hdl Clearance                                                                                                                               45
## Hdl Remodeling                                                                                                                              45
## Hdms Demethylate Histones                                                                                                                   45
## Hdr Through Homologous Recombination Hrr                                                                                                    45
## Hdr Through Mmej Alt Nhej                                                                                                                   45
## Hdr Through Single Strand Annealing Ssa                                                                                                     45
## Hedgehog Ligand Biogenesis                                                                                                                  45
## Hedgehog Off State                                                                                                                          45
## Hedgehog On State                                                                                                                           45
## Heme Biosynthesis                                                                                                                           45
## Heme Degradation                                                                                                                            45
## Hemostasis                                                                                                                                  45
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                   45
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                  45
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                     45
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                      45
## Histidine Catabolism                                                                                                                        45
## Hiv Elongation Arrest And Recovery                                                                                                          45
## Hiv Infection                                                                                                                               45
## Hiv Life Cycle                                                                                                                              45
## Hiv Transcription Elongation                                                                                                                45
## Hiv Transcription Initiation                                                                                                                45
## Homologous Dna Pairing And Strand Exchange                                                                                                  45
## Homology Directed Repair                                                                                                                    45
## Hormone Ligand Binding Receptors                                                                                                            45
## Host Interactions Of Hiv Factors                                                                                                            45
## Hs Gag Biosynthesis                                                                                                                         45
## Hs Gag Degradation                                                                                                                          45
## Hsf1 Activation                                                                                                                             45
## Hsf1 Dependent Transactivation                                                                                                              45
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                     45
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                        45
## Hyaluronan Biosynthesis And Export                                                                                                          45
## Hyaluronan Metabolism                                                                                                                       45
## Hyaluronan Uptake And Degradation                                                                                                           45
## Hydrolysis Of Lpc                                                                                                                           45
## Ikba Variant Leads To Eda Id                                                                                                                45
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                             45
## Inactivation Of Cdc42 And Rac1                                                                                                              45
## Inactivation Of Csf3 G Csf Signaling                                                                                                        45
## Incretin Synthesis Secretion And Inactivation                                                                                               45
## Infection With Mycobacterium Tuberculosis                                                                                                   45
## Infectious Disease                                                                                                                          45
## Influenza Infection                                                                                                                         45
## Inhibition Of Dna Recombination At Telomere                                                                                                 45
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                             45
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                 45
## Initial Triggering Of Complement                                                                                                            45
## Initiation Of Nuclear Envelope Ne Reformation                                                                                               45
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                               45
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                45
## Innate Immune System                                                                                                                        45
## Inositol Phosphate Metabolism                                                                                                               45
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                 45
## Insulin Processing                                                                                                                          45
## Insulin Receptor Recycling                                                                                                                  45
## Insulin Receptor Signalling Cascade                                                                                                         45
## Integration Of Energy Metabolism                                                                                                            45
## Integration Of Provirus                                                                                                                     45
## Integrin Cell Surface Interactions                                                                                                          45
## Integrin Signaling                                                                                                                          45
## Interaction Between L1 And Ankyrins                                                                                                         45
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                       45
## Interactions Of Rev With Host Cellular Proteins                                                                                             45
## Interactions Of Vpr With Host Cellular Proteins                                                                                             45
## Interconversion Of Nucleotide Di And Triphosphates                                                                                          45
## Interferon Alpha Beta Signaling                                                                                                             45
## Interferon Signaling                                                                                                                        45
## Interleukin 15 Signaling                                                                                                                    45
## Interleukin 2 Family Signaling                                                                                                              45
## Interleukin 2 Signaling                                                                                                                     45
## Interleukin 20 Family Signaling                                                                                                             45
## Interleukin 21 Signaling                                                                                                                    45
## Interleukin 23 Signaling                                                                                                                    45
## Interleukin 27 Signaling                                                                                                                    45
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                            45
## Interleukin 35 Signalling                                                                                                                   45
## Interleukin 36 Pathway                                                                                                                      45
## Interleukin 37 Signaling                                                                                                                    45
## Interleukin 7 Signaling                                                                                                                     45
## Interleukin 9 Signaling                                                                                                                     45
## Interleukin Receptor Shc Signaling                                                                                                          45
## Intestinal Absorption                                                                                                                       45
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                              45
## Intra Golgi Traffic                                                                                                                         45
## Intracellular Signaling By Second Messengers                                                                                                45
## Intraflagellar Transport                                                                                                                    45
## Intrinsic Pathway For Apoptosis                                                                                                             45
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                  45
## Inwardly Rectifying K Channels                                                                                                              45
## Ion Channel Transport                                                                                                                       45
## Ion Homeostasis                                                                                                                             45
## Ion Transport By P Type Atpases                                                                                                             45
## Ionotropic Activity Of Kainate Receptors                                                                                                    45
## Irak1 Recruits Ikk Complex                                                                                                                  45
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                   45
## Irak4 Deficiency Tlr2 4                                                                                                                     45
## Ire1alpha Activates Chaperones                                                                                                              45
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                      45
## Iron Uptake And Transport                                                                                                                   45
## Irs Activation                                                                                                                              45
## Irs Mediated Signalling                                                                                                                     45
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                           45
## Josephin Domain Dubs                                                                                                                        45
## Keratan Sulfate Biosynthesis                                                                                                                45
## Keratan Sulfate Degradation                                                                                                                 45
## Keratan Sulfate Keratin Metabolism                                                                                                          45
## Keratinization                                                                                                                              45
## Ketone Body Metabolism                                                                                                                      45
## Kinesins                                                                                                                                    45
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                      45
## Lagging Strand Synthesis                                                                                                                    45
## Laminin Interactions                                                                                                                        45
## Late Endosomal Microautophagy                                                                                                               45
## Lectin Pathway Of Complement Activation                                                                                                     45
## Leukotriene Receptors                                                                                                                       45
## Lgi Adam Interactions                                                                                                                       45
## Ligand Receptor Interactions                                                                                                                45
## Linoleic Acid La Metabolism                                                                                                                 45
## Lipid Particle Organization                                                                                                                 45
## Lipophagy                                                                                                                                   45
## Listeria Monocytogenes Entry Into Host Cells                                                                                                45
## Long Term Potentiation                                                                                                                      45
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                  45
## Loss Of Function Of Smad2 3 In Cancer                                                                                                       45
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                      45
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                      45
## Ltc4 Cysltr Mediated Il4 Production                                                                                                         45
## Lysine Catabolism                                                                                                                           45
## Lysosome Vesicle Biogenesis                                                                                                                 45
## Lysosphingolipid And Lpa Receptors                                                                                                          45
## M Phase                                                                                                                                     45
## Map2k And Mapk Activation                                                                                                                   45
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                    45
## Mapk Family Signaling Cascades                                                                                                              45
## Mapk6 Mapk4 Signaling                                                                                                                       45
## Mastl Facilitates Mitotic Progression                                                                                                       45
## Maturation Of Nucleoprotein                                                                                                                 45
## Maturation Of Protein 3a                                                                                                                    45
## Maturation Of Sars Cov 1 Spike Protein                                                                                                      45
## Maturation Of Sars Cov 2 Spike Protein                                                                                                      45
## Meiosis                                                                                                                                     45
## Meiotic Recombination                                                                                                                       45
## Meiotic Synapsis                                                                                                                            45
## Melanin Biosynthesis                                                                                                                        45
## Membrane Trafficking                                                                                                                        45
## Met Activates Pi3k Akt Signaling                                                                                                            45
## Met Activates Ptk2 Signaling                                                                                                                45
## Met Activates Ptpn11                                                                                                                        45
## Met Activates Rap1 And Rac1                                                                                                                 45
## Met Activates Ras Signaling                                                                                                                 45
## Met Interacts With Tns Proteins                                                                                                             45
## Met Promotes Cell Motility                                                                                                                  45
## Met Receptor Activation                                                                                                                     45
## Met Receptor Recycling                                                                                                                      45
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                         45
## Metabolism Of Amine Derived Hormones                                                                                                        45
## Metabolism Of Amino Acids And Derivatives                                                                                                   45
## Metabolism Of Angiotensinogen To Angiotensins                                                                                               45
## Metabolism Of Carbohydrates                                                                                                                 45
## Metabolism Of Cofactors                                                                                                                     45
## Metabolism Of Fat Soluble Vitamins                                                                                                          45
## Metabolism Of Folate And Pterines                                                                                                           45
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                            45
## Metabolism Of Lipids                                                                                                                        45
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                   45
## Metabolism Of Nucleotides                                                                                                                   45
## Metabolism Of Polyamines                                                                                                                    45
## Metabolism Of Porphyrins                                                                                                                    45
## Metabolism Of Rna                                                                                                                           45
## Metabolism Of Steroid Hormones                                                                                                              45
## Metabolism Of Steroids                                                                                                                      45
## Metabolism Of Vitamins And Cofactors                                                                                                        45
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                          45
## Metal Ion Slc Transporters                                                                                                                  45
## Metal Sequestration By Antimicrobial Proteins                                                                                               45
## Metalloprotease Dubs                                                                                                                        45
## Metallothioneins Bind Metals                                                                                                                45
## Methionine Salvage Pathway                                                                                                                  45
## Methylation                                                                                                                                 45
## Microrna Mirna Biogenesis                                                                                                                   45
## Mineralocorticoid Biosynthesis                                                                                                              45
## Miro Gtpase Cycle                                                                                                                           45
## Miscellaneous Substrates                                                                                                                    45
## Miscellaneous Transport And Binding Events                                                                                                  45
## Mismatch Repair                                                                                                                             45
## Mitochondrial Calcium Ion Transport                                                                                                         45
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                     45
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                            45
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                          45
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                45
## Mitochondrial Protein Import                                                                                                                45
## Mitochondrial Translation                                                                                                                   45
## Mitochondrial Trna Aminoacylation                                                                                                           45
## Mitochondrial Uncoupling                                                                                                                    45
## Mitophagy                                                                                                                                   45
## Mitotic G1 Phase And G1 S Transition                                                                                                        45
## Mitotic G2 G2 M Phases                                                                                                                      45
## Mitotic Metaphase And Anaphase                                                                                                              45
## Mitotic Prometaphase                                                                                                                        45
## Mitotic Prophase                                                                                                                            45
## Mitotic Spindle Checkpoint                                                                                                                  45
## Mitotic Telophase Cytokinesis                                                                                                               45
## Modulation By Mtb Of Host Immune System                                                                                                     45
## Molecules Associated With Elastic Fibres                                                                                                    45
## Molybdenum Cofactor Biosynthesis                                                                                                            45
## Mrna Capping                                                                                                                                45
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                        45
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                        45
## Mrna Editing                                                                                                                                45
## Mrna Editing C To U Conversion                                                                                                              45
## Mrna Splicing                                                                                                                               45
## Mrna Splicing Minor Pathway                                                                                                                 45
## Mtor Signalling                                                                                                                             45
## Mtorc1 Mediated Signalling                                                                                                                  45
## Mucopolysaccharidoses                                                                                                                       45
## Multifunctional Anion Exchangers                                                                                                            45
## Muscarinic Acetylcholine Receptors                                                                                                          45
## Muscle Contraction                                                                                                                          45
## Myoclonic Epilepsy Of Lafora                                                                                                                45
## Myogenesis                                                                                                                                  45
## N Glycan Antennae Elongation                                                                                                                45
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                      45
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                           45
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                 45
## Na Cl Dependent Neurotransmitter Transporters                                                                                               45
## Nade Modulates Death Signalling                                                                                                             45
## Ncam1 Interactions                                                                                                                          45
## Nectin Necl Trans Heterodimerization                                                                                                        45
## Neddylation                                                                                                                                 45
## Nef And Signal Transduction                                                                                                                 45
## Nef Mediated Cd4 Down Regulation                                                                                                            45
## Nef Mediated Cd8 Down Regulation                                                                                                            45
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                  45
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                              45
## Negative Epigenetic Regulation Of Rrna Expression                                                                                           45
## Negative Feedback Regulation Of Mapk Pathway                                                                                                45
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                  45
## Negative Regulation Of Fgfr1 Signaling                                                                                                      45
## Negative Regulation Of Fgfr2 Signaling                                                                                                      45
## Negative Regulation Of Fgfr3 Signaling                                                                                                      45
## Negative Regulation Of Fgfr4 Signaling                                                                                                      45
## Negative Regulation Of Flt3                                                                                                                 45
## Negative Regulation Of Mapk Pathway                                                                                                         45
## Negative Regulation Of Met Activity                                                                                                         45
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                         45
## Negative Regulation Of Notch4 Signaling                                                                                                     45
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                  45
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                45
## Nephrin Family Interactions                                                                                                                 45
## Nervous System Development                                                                                                                  45
## Netrin 1 Signaling                                                                                                                          45
## Netrin Mediated Repulsion Signals                                                                                                           45
## Neurexins And Neuroligins                                                                                                                   45
## Neurofascin Interactions                                                                                                                    45
## Neuronal System                                                                                                                             45
## Neurotoxicity Of Clostridium Toxins                                                                                                         45
## Neurotransmitter Clearance                                                                                                                  45
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                             45
## Neurotransmitter Release Cycle                                                                                                              45
## Neutrophil Degranulation                                                                                                                    45
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                    45
## Nf Kb Is Activated And Signals Survival                                                                                                     45
## Ngf Independant Trka Activation                                                                                                             45
## Nicotinamide Salvaging                                                                                                                      45
## Nicotinate Metabolism                                                                                                                       45
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                   45
## Non Integrin Membrane Ecm Interactions                                                                                                      45
## Noncanonical Activation Of Notch3                                                                                                           45
## Nonhomologous End Joining Nhej                                                                                                              45
## Nonsense Mediated Decay Nmd                                                                                                                 45
## Norepinephrine Neurotransmitter Release Cycle                                                                                               45
## Nostrin Mediated Enos Trafficking                                                                                                           45
## Notch Hlh Transcription Pathway                                                                                                             45
## Notch1 Intracellular Domain Regulates Transcription                                                                                         45
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Notch3 Intracellular Domain Regulates Transcription                                                                                         45
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Notch4 Intracellular Domain Regulates Transcription                                                                                         45
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                          45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                              45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                  45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                            45
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                       45
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                            45
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                             45
## Nrage Signals Death Through Jnk                                                                                                             45
## Nrcam Interactions                                                                                                                          45
## Nrif Signals Cell Death From The Nucleus                                                                                                    45
## Ns1 Mediated Effects On Host Pathways                                                                                                       45
## Ntrk2 Activates Rac1                                                                                                                        45
## Nuclear Envelope Breakdown                                                                                                                  45
## Nuclear Envelope Ne Reassembly                                                                                                              45
## Nuclear Import Of Rev Protein                                                                                                               45
## Nuclear Pore Complex Npc Disassembly                                                                                                        45
## Nuclear Receptor Transcription Pathway                                                                                                      45
## Nuclear Signaling By Erbb4                                                                                                                  45
## Nucleobase Biosynthesis                                                                                                                     45
## Nucleobase Catabolism                                                                                                                       45
## Nucleotide Excision Repair                                                                                                                  45
## Nucleotide Like Purinergic Receptors                                                                                                        45
## Nucleotide Salvage                                                                                                                          45
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                           45
## Oas Antiviral Response                                                                                                                      45
## Olfactory Signaling Pathway                                                                                                                 45
## Oncogene Induced Senescence                                                                                                                 45
## Oncogenic Mapk Signaling                                                                                                                    45
## Opsins                                                                                                                                      45
## Orc1 Removal From Chromatin                                                                                                                 45
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                     45
## Organelle Biogenesis And Maintenance                                                                                                        45
## Organic Anion Transport                                                                                                                     45
## Organic Anion Transporters                                                                                                                  45
## Organic Cation Anion Zwitterion Transport                                                                                                   45
## Organic Cation Transport                                                                                                                    45
## Other Interleukin Signaling                                                                                                                 45
## Other Semaphorin Interactions                                                                                                               45
## Ovarian Tumor Domain Proteases                                                                                                              45
## P130cas Linkage To Mapk Signaling For Integrins                                                                                             45
## P2y Receptors                                                                                                                               45
## P38mapk Events                                                                                                                              45
## P75 Ntr Receptor Mediated Signalling                                                                                                        45
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                              45
## P75ntr Recruits Signalling Complexes                                                                                                        45
## P75ntr Regulates Axonogenesis                                                                                                               45
## P75ntr Signals Via Nf Kb                                                                                                                    45
## Parasite Infection                                                                                                                          45
## Passive Transport By Aquaporins                                                                                                             45
## Pcna Dependent Long Patch Base Excision Repair                                                                                              45
## Pecam1 Interactions                                                                                                                         45
## Pentose Phosphate Pathway                                                                                                                   45
## Peptide Hormone Biosynthesis                                                                                                                45
## Peptide Hormone Metabolism                                                                                                                  45
## Peroxisomal Lipid Metabolism                                                                                                                45
## Peroxisomal Protein Import                                                                                                                  45
## Pexophagy                                                                                                                                   45
## Phase 0 Rapid Depolarisation                                                                                                                45
## Phase 1 Inactivation Of Fast Na Channels                                                                                                    45
## Phase 2 Plateau Phase                                                                                                                       45
## Phase 3 Rapid Repolarisation                                                                                                                45
## Phase 4 Resting Membrane Potential                                                                                                          45
## Phase I Functionalization Of Compounds                                                                                                      45
## Phase Ii Conjugation Of Compounds                                                                                                           45
## Phenylalanine And Tyrosine Metabolism                                                                                                       45
## Phenylalanine Metabolism                                                                                                                    45
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                               45
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                  45
## Phospholipase C Mediated Cascade Fgfr2                                                                                                      45
## Phospholipase C Mediated Cascade Fgfr4                                                                                                      45
## Phospholipid Metabolism                                                                                                                     45
## Phosphorylation Of Emi1                                                                                                                     45
## Phosphorylation Of The Apc C                                                                                                                45
## Physiological Factors                                                                                                                       45
## Pi 3k Cascade Fgfr1                                                                                                                         45
## Pi 3k Cascade Fgfr2                                                                                                                         45
## Pi 3k Cascade Fgfr3                                                                                                                         45
## Pi 3k Cascade Fgfr4                                                                                                                         45
## Pi Metabolism                                                                                                                               45
## Pi3k Akt Activation                                                                                                                         45
## Pi3k Events In Erbb4 Signaling                                                                                                              45
## Pi5p Regulates Tp53 Acetylation                                                                                                             45
## Pink1 Prkn Mediated Mitophagy                                                                                                               45
## Piwi Interacting Rna Pirna Biogenesis                                                                                                       45
## Pka Activation In Glucagon Signalling                                                                                                       45
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                       45
## Pkmts Methylate Histone Lysines                                                                                                             45
## Plasma Lipoprotein Assembly                                                                                                                 45
## Plasma Lipoprotein Remodeling                                                                                                               45
## Platelet Activation Signaling And Aggregation                                                                                               45
## Platelet Adhesion To Exposed Collagen                                                                                                       45
## Platelet Aggregation Plug Formation                                                                                                         45
## Platelet Calcium Homeostasis                                                                                                                45
## Platelet Homeostasis                                                                                                                        45
## Platelet Sensitization By Ldl                                                                                                               45
## Polb Dependent Long Patch Base Excision Repair                                                                                              45
## Polo Like Kinase Mediated Events                                                                                                            45
## Polymerase Switching                                                                                                                        45
## Polymerase Switching On The C Strand Of The Telomere                                                                                        45
## Positive Epigenetic Regulation Of Rrna Expression                                                                                           45
## Post Chaperonin Tubulin Folding Pathway                                                                                                     45
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                          45
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                            45
## Potassium Channels                                                                                                                          45
## Potential Therapeutics For Sars                                                                                                             45
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                              45
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                             45
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                    45
## Pre Notch Expression And Processing                                                                                                         45
## Pre Notch Processing In Golgi                                                                                                               45
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                           45
## Pregnenolone Biosynthesis                                                                                                                   45
## Presynaptic Depolarization And Calcium Channel Opening                                                                                      45
## Presynaptic Function Of Kainate Receptors                                                                                                   45
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                   45
## Processing And Activation Of Sumo                                                                                                           45
## Processing Of Capped Intron Containing Pre Mrna                                                                                             45
## Processing Of Capped Intronless Pre Mrna                                                                                                    45
## Processing Of Dna Double Strand Break Ends                                                                                                  45
## Processing Of Intronless Pre Mrnas                                                                                                          45
## Processing Of Smdt1                                                                                                                         45
## Processive Synthesis On The C Strand Of The Telomere                                                                                        45
## Processive Synthesis On The Lagging Strand                                                                                                  45
## Prolactin Receptor Signaling                                                                                                                45
## Prolonged Erk Activation Events                                                                                                             45
## Propionyl Coa Catabolism                                                                                                                    45
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                       45
## Prostanoid Ligand Receptors                                                                                                                 45
## Protein Folding                                                                                                                             45
## Protein Localization                                                                                                                        45
## Protein Methylation                                                                                                                         45
## Protein Protein Interactions At Synapses                                                                                                    45
## Protein Repair                                                                                                                              45
## Protein Ubiquitination                                                                                                                      45
## Proton Coupled Monocarboxylate Transport                                                                                                    45
## Pten Regulation                                                                                                                             45
## Ptk6 Expression                                                                                                                             45
## Ptk6 Regulates Cell Cycle                                                                                                                   45
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                          45
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                       45
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                       45
## Purine Catabolism                                                                                                                           45
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                            45
## Purine Salvage                                                                                                                              45
## Pyrimidine Catabolism                                                                                                                       45
## Pyrimidine Salvage                                                                                                                          45
## Pyruvate Metabolism                                                                                                                         45
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                               45
## Ra Biosynthesis Pathway                                                                                                                     45
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                       45
## Rab Geranylgeranylation                                                                                                                     45
## Rab Regulation Of Trafficking                                                                                                               45
## Rac1 Gtpase Cycle                                                                                                                           45
## Rac2 Gtpase Cycle                                                                                                                           45
## Rac3 Gtpase Cycle                                                                                                                           45
## Raf Activation                                                                                                                              45
## Rap1 Signalling                                                                                                                             45
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                        45
## Ras Processing                                                                                                                              45
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                   45
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                45
## Receptor Mediated Mitophagy                                                                                                                 45
## Receptor Type Tyrosine Protein Phosphatases                                                                                                 45
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                      45
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                            45
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                    45
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                  45
## Recycling Of Bile Acids And Salts                                                                                                           45
## Recycling Of Eif2 Gdp                                                                                                                       45
## Recycling Pathway Of L1                                                                                                                     45
## Reduction Of Cytosolic Ca Levels                                                                                                            45
## Reelin Signalling Pathway                                                                                                                   45
## Regulated Proteolysis Of P75ntr                                                                                                             45
## Regulation By C Flip                                                                                                                        45
## Regulation Of Bach1 Activity                                                                                                                45
## Regulation Of Beta Cell Development                                                                                                         45
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                       45
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                 45
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                          45
## Regulation Of Expression Of Slits And Robos                                                                                                 45
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                  45
## Regulation Of Fzd By Ubiquitination                                                                                                         45
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                   45
## Regulation Of Gene Expression In Beta Cells                                                                                                 45
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                           45
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                               45
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                          45
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                 45
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                            45
## Regulation Of Hmox1 Expression And Activity                                                                                                 45
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                             45
## Regulation Of Ifna Signaling                                                                                                                45
## Regulation Of Ifng Signaling                                                                                                                45
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                      45
## Regulation Of Insulin Secretion                                                                                                             45
## Regulation Of Kit Signaling                                                                                                                 45
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                 45
## Regulation Of Localization Of Foxo Transcription Factors                                                                                    45
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                         45
## Regulation Of Plk1 Activity At G2 M Transition                                                                                              45
## Regulation Of Pten Gene Transcription                                                                                                       45
## Regulation Of Pten Localization                                                                                                             45
## Regulation Of Pten Mrna Translation                                                                                                         45
## Regulation Of Pten Stability And Activity                                                                                                   45
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                            45
## Regulation Of Ras By Gaps                                                                                                                   45
## Regulation Of Runx1 Expression And Activity                                                                                                 45
## Regulation Of Runx2 Expression And Activity                                                                                                 45
## Regulation Of Runx3 Expression And Activity                                                                                                 45
## Regulation Of Signaling By Cbl                                                                                                              45
## Regulation Of Signaling By Nodal                                                                                                            45
## Regulation Of Tlr By Endogenous Ligand                                                                                                      45
## Regulation Of Tp53 Activity                                                                                                                 45
## Regulation Of Tp53 Activity Through Acetylation                                                                                             45
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                             45
## Regulation Of Tp53 Activity Through Methylation                                                                                             45
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                         45
## Regulation Of Tp53 Expression And Degradation                                                                                               45
## Relaxin Receptors                                                                                                                           45
## Release Of Apoptotic Factors From The Mitochondria                                                                                          45
## Release Of Hh Np From The Secreting Cell                                                                                                    45
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                       45
## Repression Of Wnt Target Genes                                                                                                              45
## Reproduction                                                                                                                                45
## Resolution Of Abasic Sites Ap Sites                                                                                                         45
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                45
## Resolution Of D Loop Structures                                                                                                             45
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                           45
## Resolution Of Sister Chromatid Cohesion                                                                                                     45
## Respiratory Electron Transport                                                                                                              45
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                            45
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                  45
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                           45
## Response Of Mtb To Phagocytosis                                                                                                             45
## Response To Metal Ions                                                                                                                      45
## Ret Signaling                                                                                                                               45
## Retinoid Cycle Disease Events                                                                                                               45
## Retrograde Neurotrophin Signalling                                                                                                          45
## Retrograde Transport At The Trans Golgi Network                                                                                             45
## Reversible Hydration Of Carbon Dioxide                                                                                                      45
## Rho Gtpase Cycle                                                                                                                            45
## Rho Gtpase Effectors                                                                                                                        45
## Rho Gtpases Activate Cit                                                                                                                    45
## Rho Gtpases Activate Formins                                                                                                                45
## Rho Gtpases Activate Iqgaps                                                                                                                 45
## Rho Gtpases Activate Ktn1                                                                                                                   45
## Rho Gtpases Activate Nadph Oxidases                                                                                                         45
## Rho Gtpases Activate Paks                                                                                                                   45
## Rho Gtpases Activate Pkns                                                                                                                   45
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                45
## Rho Gtpases Activate Rocks                                                                                                                  45
## Rho Gtpases Activate Wasps And Waves                                                                                                        45
## Rhoa Gtpase Cycle                                                                                                                           45
## Rhob Gtpase Cycle                                                                                                                           45
## Rhobtb Gtpase Cycle                                                                                                                         45
## Rhobtb1 Gtpase Cycle                                                                                                                        45
## Rhobtb2 Gtpase Cycle                                                                                                                        45
## Rhobtb3 Atpase Cycle                                                                                                                        45
## Rhoc Gtpase Cycle                                                                                                                           45
## Rhod Gtpase Cycle                                                                                                                           45
## Rhof Gtpase Cycle                                                                                                                           45
## Rhog Gtpase Cycle                                                                                                                           45
## Rhoh Gtpase Cycle                                                                                                                           45
## Rhoj Gtpase Cycle                                                                                                                           45
## Rhoq Gtpase Cycle                                                                                                                           45
## Rhot1 Gtpase Cycle                                                                                                                          45
## Rhou Gtpase Cycle                                                                                                                           45
## Rhov Gtpase Cycle                                                                                                                           45
## Rna Polymerase I Promoter Escape                                                                                                            45
## Rna Polymerase I Transcription                                                                                                              45
## Rna Polymerase I Transcription Initiation                                                                                                   45
## Rna Polymerase I Transcription Termination                                                                                                  45
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                   45
## Rna Polymerase Ii Transcription Termination                                                                                                 45
## Rna Polymerase Iii Chain Elongation                                                                                                         45
## Rna Polymerase Iii Transcription                                                                                                            45
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                            45
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                            45
## Rna Polymerase Iii Transcription Termination                                                                                                45
## Rnd1 Gtpase Cycle                                                                                                                           45
## Rnd2 Gtpase Cycle                                                                                                                           45
## Rnd3 Gtpase Cycle                                                                                                                           45
## Robo Receptors Bind Akap5                                                                                                                   45
## Role Of Abl In Robo Slit Signaling                                                                                                          45
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                               45
## Role Of Phospholipids In Phagocytosis                                                                                                       45
## Role Of Second Messengers In Netrin 1 Signaling                                                                                             45
## Rora Activates Gene Expression                                                                                                              45
## Ros And Rns Production In Phagocytes                                                                                                        45
## Rrna Modification In The Mitochondrion                                                                                                      45
## Rrna Modification In The Nucleus And Cytosol                                                                                                45
## Rrna Processing                                                                                                                             45
## Rrna Processing In The Mitochondrion                                                                                                        45
## Rsk Activation                                                                                                                              45
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                   45
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                          45
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                    45
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                 45
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                       45
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                            45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                  45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                         45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                         45
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                    45
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                            45
## Runx2 Regulates Bone Development                                                                                                            45
## Runx2 Regulates Chondrocyte Maturation                                                                                                      45
## Runx2 Regulates Genes Involved In Cell Migration                                                                                            45
## Runx2 Regulates Osteoblast Differentiation                                                                                                  45
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                   45
## Runx3 Regulates Cdkn1a Transcription                                                                                                        45
## Runx3 Regulates Immune Response And Cell Migration                                                                                          45
## Runx3 Regulates Notch Signaling                                                                                                             45
## Runx3 Regulates P14 Arf                                                                                                                     45
## Runx3 Regulates Wnt Signaling                                                                                                               45
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                 45
## S Phase                                                                                                                                     45
## Sars Cov 1 Genome Replication And Transcription                                                                                             45
## Sars Cov 1 Infection                                                                                                                        45
## Sars Cov 2 Infection                                                                                                                        45
## Sars Cov Infections                                                                                                                         45
## Scavenging By Class A Receptors                                                                                                             45
## Scavenging By Class B Receptors                                                                                                             45
## Scavenging By Class F Receptors                                                                                                             45
## Scavenging Of Heme From Plasma                                                                                                              45
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                    45
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                             45
## Selective Autophagy                                                                                                                         45
## Selenoamino Acid Metabolism                                                                                                                 45
## Sema3a Pak Dependent Axon Repulsion                                                                                                         45
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                           45
## Sema4d In Semaphorin Signaling                                                                                                              45
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                      45
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                 45
## Semaphorin Interactions                                                                                                                     45
## Sensing Of Dna Double Strand Breaks                                                                                                         45
## Sensory Perception                                                                                                                          45
## Sensory Processing Of Sound                                                                                                                 45
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                              45
## Separation Of Sister Chromatids                                                                                                             45
## Serine Biosynthesis                                                                                                                         45
## Serotonin And Melatonin Biosynthesis                                                                                                        45
## Serotonin Neurotransmitter Release Cycle                                                                                                    45
## Serotonin Receptors                                                                                                                         45
## Shc Mediated Cascade Fgfr1                                                                                                                  45
## Shc Mediated Cascade Fgfr3                                                                                                                  45
## Shc Mediated Cascade Fgfr4                                                                                                                  45
## Shc Related Events Triggered By Igf1r                                                                                                       45
## Shc1 Events In Erbb4 Signaling                                                                                                              45
## Signal Amplification                                                                                                                        45
## Signal Attenuation                                                                                                                          45
## Signal Regulatory Protein Family Interactions                                                                                               45
## Signaling By Activin                                                                                                                        45
## Signaling By Bmp                                                                                                                            45
## Signaling By Braf And Raf Fusions                                                                                                           45
## Signaling By Csf3 G Csf                                                                                                                     45
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                    45
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                 45
## Signaling By Erythropoietin                                                                                                                 45
## Signaling By Fgfr                                                                                                                           45
## Signaling By Fgfr In Disease                                                                                                                45
## Signaling By Fgfr1                                                                                                                          45
## Signaling By Fgfr1 In Disease                                                                                                               45
## Signaling By Fgfr2                                                                                                                          45
## Signaling By Fgfr2 Iiia Tm                                                                                                                  45
## Signaling By Fgfr2 In Disease                                                                                                               45
## Signaling By Fgfr3                                                                                                                          45
## Signaling By Fgfr3 Fusions In Cancer                                                                                                        45
## Signaling By Fgfr4                                                                                                                          45
## Signaling By Fgfr4 In Disease                                                                                                               45
## Signaling By Flt3 Fusion Proteins                                                                                                           45
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                       45
## Signaling By Gpcr                                                                                                                           45
## Signaling By Hedgehog                                                                                                                       45
## Signaling By Hippo                                                                                                                          45
## Signaling By Insulin Receptor                                                                                                               45
## Signaling By Kit In Disease                                                                                                                 45
## Signaling By Leptin                                                                                                                         45
## Signaling By Lrp5 Mutants                                                                                                                   45
## Signaling By Mapk Mutants                                                                                                                   45
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                  45
## Signaling By Met                                                                                                                            45
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                          45
## Signaling By Mras Complex Mutants                                                                                                           45
## Signaling By Mst1                                                                                                                           45
## Signaling By Nodal                                                                                                                          45
## Signaling By Notch                                                                                                                          45
## Signaling By Notch1                                                                                                                         45
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                             45
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                           45
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                           45
## Signaling By Notch4                                                                                                                         45
## Signaling By Ntrk2 Trkb                                                                                                                     45
## Signaling By Ntrk3 Trkc                                                                                                                     45
## Signaling By Nuclear Receptors                                                                                                              45
## Signaling By Pdgf                                                                                                                           45
## Signaling By Pdgfr In Disease                                                                                                               45
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                   45
## Signaling By Receptor Tyrosine Kinases                                                                                                      45
## Signaling By Retinoic Acid                                                                                                                  45
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                           45
## Signaling By Rnf43 Mutants                                                                                                                  45
## Signaling By Robo Receptors                                                                                                                 45
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                            45
## Signaling By The B Cell Receptor Bcr                                                                                                        45
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                             45
## Signaling By Vegf                                                                                                                           45
## Signaling By Wnt                                                                                                                            45
## Signaling By Wnt In Cancer                                                                                                                  45
## Signalling To Erks                                                                                                                          45
## Signalling To P38 Via Rit And Rin                                                                                                           45
## Signalling To Ras                                                                                                                           45
## Sirt1 Negatively Regulates Rrna Expression                                                                                                  45
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                        45
## Slc Mediated Transmembrane Transport                                                                                                        45
## Slc Transporter Disorders                                                                                                                   45
## Smac Xiap Regulated Apoptotic Response                                                                                                      45
## Small Interfering Rna Sirna Biogenesis                                                                                                      45
## Smooth Muscle Contraction                                                                                                                   45
## Snrnp Assembly                                                                                                                              45
## Sodium Calcium Exchangers                                                                                                                   45
## Sodium Coupled Phosphate Cotransporters                                                                                                     45
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                 45
## Sodium Proton Exchangers                                                                                                                    45
## Sos Mediated Signalling                                                                                                                     45
## Sperm Motility And Taxes                                                                                                                    45
## Sphingolipid De Novo Biosynthesis                                                                                                           45
## Sphingolipid Metabolism                                                                                                                     45
## Spry Regulation Of Fgf Signaling                                                                                                            45
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                 45
## Stabilization Of P53                                                                                                                        45
## Stat5 Activation                                                                                                                            45
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                             45
## Striated Muscle Contraction                                                                                                                 45
## Sulfide Oxidation To Sulfate                                                                                                                45
## Sulfur Amino Acid Metabolism                                                                                                                45
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                          45
## Sumo Is Proteolytically Processed                                                                                                           45
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                45
## Sumoylation Of Chromatin Organization Proteins                                                                                              45
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                      45
## Sumoylation Of Dna Replication Proteins                                                                                                     45
## Sumoylation Of Immune Response Proteins                                                                                                     45
## Sumoylation Of Intracellular Receptors                                                                                                      45
## Sumoylation Of Rna Binding Proteins                                                                                                         45
## Sumoylation Of Sumoylation Proteins                                                                                                         45
## Sumoylation Of Transcription Factors                                                                                                        45
## Sumoylation Of Ubiquitinylation Proteins                                                                                                    45
## Suppression Of Apoptosis                                                                                                                    45
## Suppression Of Phagosomal Maturation                                                                                                        45
## Surfactant Metabolism                                                                                                                       45
## Switching Of Origins To A Post Replicative State                                                                                            45
## Synaptic Adhesion Like Molecules                                                                                                            45
## Syndecan Interactions                                                                                                                       45
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                           45
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                           45
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                       45
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                       45
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                    45
## Synthesis Of Bile Acids And Bile Salts                                                                                                      45
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                            45
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                            45
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                        45
## Synthesis Of Diphthamide Eef2                                                                                                               45
## Synthesis Of Dolichyl Phosphate                                                                                                             45
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                               45
## Synthesis Of Gdp Mannose                                                                                                                    45
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                               45
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                  45
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                     45
## Synthesis Of Ketone Bodies                                                                                                                  45
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                  45
## Synthesis Of Lipoxins Lx                                                                                                                    45
## Synthesis Of Pa                                                                                                                             45
## Synthesis Of Pc                                                                                                                             45
## Synthesis Of Pe                                                                                                                             45
## Synthesis Of Pg                                                                                                                             45
## Synthesis Of Pi                                                                                                                             45
## Synthesis Of Pips At The Early Endosome Membrane                                                                                            45
## Synthesis Of Pips At The Er Membrane                                                                                                        45
## Synthesis Of Pips At The Golgi Membrane                                                                                                     45
## Synthesis Of Pips At The Late Endosome Membrane                                                                                             45
## Synthesis Of Pips At The Plasma Membrane                                                                                                    45
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                          45
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                  45
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                       45
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                45
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                  45
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                              45
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                       45
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                    45
## Tachykinin Receptors Bind Tachykinins                                                                                                       45
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                       45
## Tandem Pore Domain Potassium Channels                                                                                                       45
## Tbc Rabgaps                                                                                                                                 45
## Tcf Dependent Signaling In Response To Wnt                                                                                                  45
## Telomere C Strand Lagging Strand Synthesis                                                                                                  45
## Telomere C Strand Synthesis Initiation                                                                                                      45
## Telomere Extension By Telomerase                                                                                                            45
## Telomere Maintenance                                                                                                                        45
## Terminal Pathway Of Complement                                                                                                              45
## Termination Of Translesion Dna Synthesis                                                                                                    45
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                          45
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                             45
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                45
## Tgf Beta Receptor Signaling Activates Smads                                                                                                 45
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                     45
## The Activation Of Arylsulfatases                                                                                                            45
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                        45
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                45
## The Fatty Acid Cycling Model                                                                                                                45
## The Nlrp3 Inflammasome                                                                                                                      45
## The Phototransduction Cascade                                                                                                               45
## The Retinoid Cycle In Cones Daylight Vision                                                                                                 45
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                   45
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                               45
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                             45
## Thromboxane Signalling Through Tp Receptor                                                                                                  45
## Thyroxine Biosynthesis                                                                                                                      45
## Tie2 Signaling                                                                                                                              45
## Tight Junction Interactions                                                                                                                 45
## Tnfr1 Induced Proapoptotic Signaling                                                                                                        45
## Tnfr1 Mediated Ceramide Production                                                                                                          45
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                     45
## Tp53 Regulates Metabolic Genes                                                                                                              45
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                            45
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                             45
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                            45
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                            45
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                 45
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                      45
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                      45
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                      45
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain        45
## Traf3 Dependent Irf Activation Pathway                                                                                                      45
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                45
## Traf6 Mediated Irf7 Activation                                                                                                              45
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                     45
## Traf6 Mediated Nf Kb Activation                                                                                                             45
## Trafficking Of Ampa Receptors                                                                                                               45
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                              45
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                         45
## Trail Signaling                                                                                                                             45
## Trans Golgi Network Vesicle Budding                                                                                                         45
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                     45
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                        45
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                        45
## Transcription Of The Hiv Genome                                                                                                             45
## Transcriptional Regulation By E2f6                                                                                                          45
## Transcriptional Regulation By Runx1                                                                                                         45
## Transcriptional Regulation By Runx2                                                                                                         45
## Transcriptional Regulation By Runx3                                                                                                         45
## Transcriptional Regulation By Small Rnas                                                                                                    45
## Transcriptional Regulation By Tp53                                                                                                          45
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                        45
## Transcriptional Regulation Of Testis Differentiation                                                                                        45
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                               45
## Transferrin Endocytosis And Recycling                                                                                                       45
## Translation                                                                                                                                 45
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                              45
## Translation Of Sars Cov 1 Structural Proteins                                                                                               45
## Translation Of Sars Cov 2 Structural Proteins                                                                                               45
## Translesion Synthesis By Polh                                                                                                               45
## Translesion Synthesis By Polk                                                                                                               45
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                          45
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                        45
## Transmission Across Chemical Synapses                                                                                                       45
## Transport And Synthesis Of Paps                                                                                                             45
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                    45
## Transport Of Connexons To The Plasma Membrane                                                                                               45
## Transport Of Fatty Acids                                                                                                                    45
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                         45
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                               45
## Transport Of Mature Transcript To Cytoplasm                                                                                                 45
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                    45
## Transport Of Nucleotide Sugars                                                                                                              45
## Transport Of Organic Anions                                                                                                                 45
## Transport Of Small Molecules                                                                                                                45
## Transport Of The Slbp Dependant Mature Mrna                                                                                                 45
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                     45
## Transport To The Golgi And Subsequent Modification                                                                                          45
## Trif Mediated Programmed Cell Death                                                                                                         45
## Triglyceride Biosynthesis                                                                                                                   45
## Triglyceride Catabolism                                                                                                                     45
## Triglyceride Metabolism                                                                                                                     45
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                       45
## Trna Aminoacylation                                                                                                                         45
## Trna Modification In The Mitochondrion                                                                                                      45
## Trna Modification In The Nucleus And Cytosol                                                                                                45
## Trna Processing                                                                                                                             45
## Trna Processing In The Mitochondrion                                                                                                        45
## Trna Processing In The Nucleus                                                                                                              45
## Trp Channels                                                                                                                                45
## Tryptophan Catabolism                                                                                                                       45
## Type I Hemidesmosome Assembly                                                                                                               45
## Tyrosine Catabolism                                                                                                                         45
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                         45
## Ub Specific Processing Proteases                                                                                                            45
## Ubiquinol Biosynthesis                                                                                                                      45
## Uch Proteinases                                                                                                                             45
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                               45
## Unwinding Of Dna                                                                                                                            45
## Uptake And Actions Of Bacterial Toxins                                                                                                      45
## Uptake And Function Of Anthrax Toxins                                                                                                       45
## Uptake And Function Of Diphtheria Toxin                                                                                                     45
## Urea Cycle                                                                                                                                  45
## Vasopressin Like Receptors                                                                                                                  45
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                45
## Vegf Ligand Receptor Interactions                                                                                                           45
## Vegfr2 Mediated Cell Proliferation                                                                                                          45
## Vegfr2 Mediated Vascular Permeability                                                                                                       45
## Vesicle Mediated Transport                                                                                                                  45
## Viral Messenger Rna Synthesis                                                                                                               45
## Visual Phototransduction                                                                                                                    45
## Vitamin B1 Thiamin Metabolism                                                                                                               45
## Vitamin B2 Riboflavin Metabolism                                                                                                            45
## Vitamin B5 Pantothenate Metabolism                                                                                                          45
## Vitamin C Ascorbate Metabolism                                                                                                              45
## Vitamin D Calciferol Metabolism                                                                                                             45
## Vitamins                                                                                                                                    45
## Vldl Assembly                                                                                                                               45
## Vldl Clearance                                                                                                                              45
## Voltage Gated Potassium Channels                                                                                                            45
## Vxpx Cargo Targeting To Cilium                                                                                                              45
## Wax And Plasmalogen Biosynthesis                                                                                                            45
## Wnt Mediated Activation Of Dvl                                                                                                              45
## Xenobiotics                                                                                                                                 45
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                               45
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                    45
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                             45
## Zinc Transporters                                                                                                                           45
##                                                                                                                                      geneset
## Interleukin 10 Signaling                                                                                                                  46
## Chemokine Receptors Bind Chemokines                                                                                                       58
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              17
## Cd163 Mediating An Anti Inflammatory Response                                                                                              9
## Interleukin 1 Processing                                                                                                                   9
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    24
## Tnfs Bind Their Physiological Receptors                                                                                                   29
## Interleukin 4 And Interleukin 13 Signaling                                                                                               111
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          18
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              19
## Mecp2 Regulates Transcription Factors                                                                                                      5
## Clec7a Inflammasome Pathway                                                                                                                6
## Fibronectin Matrix Formation                                                                                                               6
## Ptk6 Promotes Hif1a Stabilization                                                                                                          6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       6
## Creb Phosphorylation                                                                                                                       7
## Purinergic Signaling In Leishmaniasis Infection                                                                                           26
## Pyroptosis                                                                                                                                27
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               8
## Interleukin 18 Signaling                                                                                                                   8
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          8
## Pd 1 Signaling                                                                                                                            28
## Extra Nuclear Estrogen Signaling                                                                                                          75
## Egfr Interacts With Phospholipase C Gamma                                                                                                  9
## Egfr Transactivation By Gastrin                                                                                                            9
## Mapk1 Erk2 Activation                                                                                                                      9
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                        101
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       31
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    10
## Akt Phosphorylates Targets In The Nucleus                                                                                                 10
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  10
## Mapk3 Erk1 Activation                                                                                                                     10
## Regulated Necrosis                                                                                                                        56
## Interleukin 6 Signaling                                                                                                                   11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          11
## Cd28 Dependent Vav1 Pathway                                                                                                               12
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         12
## Killing Mechanisms                                                                                                                        12
## Notch2 Intracellular Domain Regulates Transcription                                                                                       12
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  12
## Vldlr Internalisation And Degradation                                                                                                     12
## Dissolution Of Fibrin Clot                                                                                                                13
## Erbb2 Activates Ptk6 Signaling                                                                                                            13
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     13
## Trafficking And Processing Of Endosomal Tlr                                                                                               13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     13
## Ngf Stimulated Transcription                                                                                                              39
## Shc1 Events In Egfr Signaling                                                                                                             14
## Constitutive Signaling By Egfrviii                                                                                                        15
## Erbb2 Regulates Cell Motility                                                                                                             15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           15
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   15
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                16
## Grb2 Events In Erbb2 Signaling                                                                                                            16
## Pi3k Events In Erbb2 Signaling                                                                                                            16
## Signaling By Erbb2 Ecd Mutants                                                                                                            16
## Sting Mediated Induction Of Host Immune Responses                                                                                         16
## Sumoylation Of Dna Methylation Proteins                                                                                                   16
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             17
## Gab1 Signalosome                                                                                                                          17
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     17
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           18
## Costimulation By The Cd28 Family                                                                                                          74
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          19
## Ldl Clearance                                                                                                                             19
## Pka Mediated Phosphorylation Of Creb                                                                                                      20
## Ctla4 Inhibitory Signaling                                                                                                                21
## Inflammasomes                                                                                                                             21
## Signal Transduction By L1                                                                                                                 21
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                21
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         22
## Shc1 Events In Erbb2 Signaling                                                                                                            22
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23
## Raf Independent Mapk1 3 Activation                                                                                                        23
## Termination Of O Glycan Biosynthesis                                                                                                      23
## Interleukin 6 Family Signaling                                                                                                            24
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               25
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  56
## Signaling By Egfr In Cancer                                                                                                               25
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             26
## Dectin 2 Family                                                                                                                           26
## Signaling By Erbb2 In Cancer                                                                                                              26
## Wnt Ligand Biogenesis And Trafficking                                                                                                     26
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          27
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          28
## Downregulation Of Erbb2 Signaling                                                                                                         29
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 61
## Ripk1 Mediated Regulated Necrosis                                                                                                         29
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              63
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  30
## Diseases Of Immune System                                                                                                                 31
## Egfr Downregulation                                                                                                                       31
## Myd88 Independent Tlr4 Cascade                                                                                                            97
## Perk Regulates Gene Expression                                                                                                            32
## Regulation Of Mecp2 Expression And Activity                                                                                               32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    32
## Activation Of Matrix Metalloproteinases                                                                                                   33
## Cd28 Co Stimulation                                                                                                                       33
## Plasma Lipoprotein Clearance                                                                                                              33
## Sialic Acid Metabolism                                                                                                                    33
## Signaling By Notch2                                                                                                                       33
## Peptide Ligand Binding Receptors                                                                                                         198
## Circadian Clock                                                                                                                           70
## Regulation Of Tnfr1 Signaling                                                                                                             35
## Interleukin 17 Signaling                                                                                                                  71
## Nod1 2 Signaling Pathway                                                                                                                  36
## Pi3k Akt Signaling In Cancer                                                                                                             105
## Ca Dependent Events                                                                                                                       37
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        38
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              38
## Generation Of Second Messenger Molecules                                                                                                  39
## Senescence Associated Secretory Phenotype Sasp                                                                                           112
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         78
## Dag And Ip3 Signaling                                                                                                                     41
## Negative Regulation Of The Pi3k Akt Network                                                                                              113
## Transcriptional Regulation By Ventx                                                                                                       41
## Signaling By Scf Kit                                                                                                                      43
## Sumoylation Of Transcription Cofactors                                                                                                    43
## Tnf Signaling                                                                                                                             44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                44
## Dap12 Interactions                                                                                                                        45
## Interleukin 12 Signaling                                                                                                                  47
## Toll Like Receptor Cascades                                                                                                              155
## Heme Signaling                                                                                                                            48
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                  124
## Signaling By Egfr                                                                                                                         50
## Signaling By Erbb2                                                                                                                        50
## Signaling By Notch3                                                                                                                       49
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    51
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         94
## Fcgr3a Mediated Il10 Synthesis                                                                                                            95
## G Protein Mediated Events                                                                                                                 54
## Signaling By Ptk6                                                                                                                         54
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    55
## Interleukin 12 Family Signaling                                                                                                           57
## Interleukin 1 Family Signaling                                                                                                           140
## Signaling By Erbb4                                                                                                                        58
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              61
## Ca2 Pathway                                                                                                                               62
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                      105
## O Linked Glycosylation Of Mucins                                                                                                          62
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                     103
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          62
## Asymmetric Localization Of Pcp Proteins                                                                                                   64
## Collagen Degradation                                                                                                                      64
## Dna Methylation                                                                                                                           65
## Ncam Signaling For Neurite Out Growth                                                                                                     63
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           63
## Transcriptional Regulation By Mecp2                                                                                                       63
## Diseases Associated With O Glycosylation Of Proteins                                                                                      68
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      71
## Prc2 Methylates Histones And Dna                                                                                                          73
## Signaling By Interleukins                                                                                                                463
## Signaling By Tgf Beta Receptor Complex                                                                                                    73
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        78
## Ecm Proteoglycans                                                                                                                         76
## Rmts Methylate Histone Arginines                                                                                                          79
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                  133
## G Alpha I Signalling Events                                                                                                              314
## C Type Lectin Receptors Clrs                                                                                                             140
## Collagen Formation                                                                                                                        90
## Esr Mediated Signaling                                                                                                                   221
## Fceri Mediated Mapk Activation                                                                                                            87
## Hcmv Early Events                                                                                                                        138
## Opioid Signalling                                                                                                                         90
## Signaling By Ntrks                                                                                                                       134
## Transcriptional Regulation Of Granulopoiesis                                                                                              90
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      94
## Class B 2 Secretin Family Receptors                                                                                                       94
## Clathrin Mediated Endocytosis                                                                                                            145
## Clec7a Dectin 1 Signaling                                                                                                                100
## Eph Ephrin Signaling                                                                                                                      92
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                 191
## Interferon Gamma Signaling                                                                                                                93
## Leishmania Infection                                                                                                                     308
## Mitochondrial Biogenesis                                                                                                                  94
## Pcp Ce Pathway                                                                                                                            92
## Unfolded Protein Response Upr                                                                                                             92
## Amyloid Fiber Formation                                                                                                                  110
## Cellular Senescence                                                                                                                      198
## Diseases Of Programmed Cell Death                                                                                                        102
## Hcmv Infection                                                                                                                           162
## Interleukin 1 Signaling                                                                                                                  102
## O Linked Glycosylation                                                                                                                   111
## Programmed Cell Death                                                                                                                    208
## Signaling By Tgfb Family Members                                                                                                         102
## Stimuli Sensing Channels                                                                                                                 106
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                       223
## Cell Surface Interactions At The Vascular Wall                                                                                           194
## Class A 1 Rhodopsin Like Receptors                                                                                                       331
## Cytokine Signaling In Immune System                                                                                                      719
## Death Receptor Signalling                                                                                                                141
## Degradation Of The Extracellular Matrix                                                                                                  140
## L1cam Interactions                                                                                                                       121
## Mhc Class Ii Antigen Presentation                                                                                                        126
## Oxidative Stress Induced Senescence                                                                                                      126
## Response To Elevated Platelet Cytosolic Ca2                                                                                              132
## Sumoylation                                                                                                                              187
## Tcr Signaling                                                                                                                            124
## 2 Ltr Circle Formation                                                                                                                     7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           26
## Abacavir Metabolism                                                                                                                        5
## Abacavir Transmembrane Transport                                                                                                           5
## Abacavir Transport And Metabolism                                                                                                         10
## Abc Family Proteins Mediated Transport                                                                                                   103
## Abc Transporter Disorders                                                                                                                 77
## Abc Transporters In Lipid Homeostasis                                                                                                     18
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23
## Acetylcholine Binding And Downstream Events                                                                                               14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     5
## Acetylcholine Neurotransmitter Release Cycle                                                                                              17
## Acetylcholine Regulates Insulin Secretion                                                                                                 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        6
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          31
## Activated Ntrk2 Signals Through Cdk5                                                                                                       6
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             11
## Activated Ntrk2 Signals Through Fyn                                                                                                        7
## Activated Ntrk2 Signals Through Pi3k                                                                                                       7
## Activated Ntrk2 Signals Through Ras                                                                                                        9
## Activated Ntrk3 Signals Through Pi3k                                                                                                       6
## Activated Ntrk3 Signals Through Ras                                                                                                        8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             67
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23
## Activation Of Ampk Downstream Of Nmdars                                                                                                   29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                     122
## Activation Of Atr In Response To Replication Stress                                                                                       37
## Activation Of Bad And Translocation To Mitochondria                                                                                       15
## Activation Of Bh3 Only Proteins                                                                                                           30
## Activation Of C3 And C5                                                                                                                    8
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                6
## Activation Of Gene Expression By Srebf Srebp                                                                                              42
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      17
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    30
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  7
## Activation Of Noxa And Translocation To Mitochondria                                                                                       5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      10
## Activation Of Puma And Translocation To Mitochondria                                                                                       9
## Activation Of Rac1                                                                                                                        13
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    7
## Activation Of Ras In B Cells                                                                                                               5
## Activation Of Smo                                                                                                                         18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     60
## Activation Of The Phototransduction Cascade                                                                                               11
## Activation Of The Pre Replicative Complex                                                                                                 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              12
## Activation Of Trka Receptors                                                                                                               6
## Acyl Chain Remodeling Of Cl                                                                                                                6
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       7
## Acyl Chain Remodelling Of Pc                                                                                                              27
## Acyl Chain Remodelling Of Pe                                                                                                              29
## Acyl Chain Remodelling Of Pg                                                                                                              18
## Acyl Chain Remodelling Of Pi                                                                                                              17
## Acyl Chain Remodelling Of Ps                                                                                                              22
## Adaptive Immune System                                                                                                                   825
## Adenylate Cyclase Activating Pathway                                                                                                      10
## Adenylate Cyclase Inhibitory Pathway                                                                                                      14
## Adherens Junctions Interactions                                                                                                           33
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 25
## Adp Signalling Through P2y Purinoceptor 12                                                                                                22
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       28
## Adrenoceptors                                                                                                                              9
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      13
## Aflatoxin Activation And Detoxification                                                                                                   19
## Aggrephagy                                                                                                                                44
## Akt Phosphorylates Targets In The Cytosol                                                                                                 14
## Alpha Defensins                                                                                                                           10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                13
## Alpha Oxidation Of Phytanate                                                                                                               6
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  11
## Alternative Complement Activation                                                                                                          5
## Amine Ligand Binding Receptors                                                                                                            42
## Amino Acid Conjugation                                                                                                                     9
## Amino Acid Transport Across The Plasma Membrane                                                                                           33
## Amino Acids Regulate Mtorc1                                                                                                               55
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   8
## Anchoring Fibril Formation                                                                                                                15
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        97
## Androgen Biosynthesis                                                                                                                     11
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          86
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  25
## Antigen Processing Cross Presentation                                                                                                    106
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                 308
## Antimicrobial Peptides                                                                                                                    97
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               82
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              24
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  74
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         88
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     7
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            5
## Apoptosis                                                                                                                                179
## Apoptosis Induced Dna Fragmentation                                                                                                       13
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              11
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   38
## Apoptotic Execution Phase                                                                                                                 52
## Apoptotic Factor Mediated Response                                                                                                        20
## Aquaporin Mediated Transport                                                                                                              52
## Arachidonate Production From Dag                                                                                                           5
## Arachidonic Acid Metabolism                                                                                                               59
## Arms Mediated Activation                                                                                                                   7
## Aryl Hydrocarbon Receptor Signalling                                                                                                       8
## Asparagine N Linked Glycosylation                                                                                                        305
## Aspartate And Asparagine Metabolism                                                                                                       11
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  44
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          19
## Assembly Of The Hiv Virion                                                                                                                16
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   6
## Assembly Of The Pre Replicative Complex                                                                                                   68
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          39
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 10
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      12
## Attachment And Entry                                                                                                                       5
## Attachment Of Gpi Anchor To Upar                                                                                                           7
## Attenuation Phase                                                                                                                         28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 55
## Aurka Activation By Tpx2                                                                                                                  72
## Autophagy                                                                                                                                151
## B Wich Complex Positively Regulates Rrna Expression                                                                                       91
## Base Excision Repair                                                                                                                      91
## Base Excision Repair Ap Site Formation                                                                                                    63
## Basigin Interactions                                                                                                                      25
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23
## Beta Catenin Independent Wnt Signaling                                                                                                   146
## Beta Catenin Phosphorylation Cascade                                                                                                      17
## Beta Defensins                                                                                                                            42
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             5
## Beta Oxidation Of Pristanoyl Coa                                                                                                           9
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             11
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               9
## Bicarbonate Transporters                                                                                                                  10
## Bile Acid And Bile Salt Metabolism                                                                                                        43
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      98
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         8
## Biological Oxidations                                                                                                                    222
## Biosynthesis Of Epa Derived Spms                                                                                                           6
## Biosynthesis Of Maresin Like Spms                                                                                                          6
## Biosynthesis Of Maresins                                                                                                                   8
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   19
## Biotin Transport And Metabolism                                                                                                           11
## Blood Group Systems Biosynthesis                                                                                                          21
## Branched Chain Amino Acid Catabolism                                                                                                      21
## Budding And Maturation Of Hiv Virion                                                                                                      28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               17
## Butyrophilin Btn Family Interactions                                                                                                      12
## Ca2 Activated K Channels                                                                                                                   9
## Calcineurin Activates Nfat                                                                                                                 9
## Calcitonin Like Ligand Receptors                                                                                                          10
## Calnexin Calreticulin Cycle                                                                                                               26
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               46
## Cardiac Conduction                                                                                                                       127
## Cargo Concentration In The Er                                                                                                             33
## Cargo Trafficking To The Periciliary Membrane                                                                                             51
## Carnitine Metabolism                                                                                                                      14
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          16
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      10
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             26
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        12
## Cation Coupled Chloride Cotransporters                                                                                                     7
## Cd209 Dc Sign Signaling                                                                                                                   21
## Cd22 Mediated Bcr Regulation                                                                                                              61
## Cdc42 Gtpase Cycle                                                                                                                       159
## Cdc6 Association With The Orc Origin Complex                                                                                              11
## Cell Cell Communication                                                                                                                  130
## Cell Cell Junction Organization                                                                                                           65
## Cell Cycle                                                                                                                               693
## Cell Cycle Checkpoints                                                                                                                   292
## Cell Cycle Mitotic                                                                                                                       561
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             76
## Cell Extracellular Matrix Interactions                                                                                                    18
## Cell Junction Organization                                                                                                                92
## Cellular Hexose Transport                                                                                                                 21
## Cellular Response To Chemical Stress                                                                                                     160
## Cellular Response To Heat Stress                                                                                                         101
## Cellular Response To Hypoxia                                                                                                              75
## Cellular Response To Starvation                                                                                                          157
## Cellular Responses To External Stimuli                                                                                                   706
## Cgmp Effects                                                                                                                              16
## Chaperone Mediated Autophagy                                                                                                              22
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             13
## Chl1 Interactions                                                                                                                          9
## Cholesterol Biosynthesis                                                                                                                  25
## Choline Catabolism                                                                                                                         6
## Chondroitin Sulfate Biosynthesis                                                                                                          20
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           50
## Chrebp Activates Metabolic Gene Expression                                                                                                 8
## Chromatin Modifying Enzymes                                                                                                              274
## Chromosome Maintenance                                                                                                                   140
## Chylomicron Assembly                                                                                                                      10
## Chylomicron Clearance                                                                                                                      5
## Chylomicron Remodeling                                                                                                                    10
## Cilium Assembly                                                                                                                          202
## Citric Acid Cycle Tca Cycle                                                                                                               22
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      39
## Class I Mhc Mediated Antigen Processing Presentation                                                                                     377
## Class I Peroxisomal Membrane Protein Import                                                                                               20
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        21
## Coenzyme A Biosynthesis                                                                                                                    8
## Cohesin Loading Onto Chromatin                                                                                                            10
## Collagen Biosynthesis And Modifying Enzymes                                                                                               67
## Collagen Chain Trimerization                                                                                                              44
## Common Pathway Of Fibrin Clot Formation                                                                                                   22
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 8
## Complement Cascade                                                                                                                       115
## Complex I Biogenesis                                                                                                                      57
## Condensation Of Prometaphase Chromosomes                                                                                                  11
## Condensation Of Prophase Chromosomes                                                                                                      74
## Conjugation Of Benzoate With Glycine                                                                                                       6
## Constitutive Signaling By Overexpressed Erbb2                                                                                             11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        33
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                            100
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           53
## Copi Mediated Anterograde Transport                                                                                                      102
## Copii Mediated Vesicle Transport                                                                                                          68
## Creatine Metabolism                                                                                                                       11
## Creation Of C4 And C2 Activators                                                                                                          71
## Creb3 Factors Activate Genes                                                                                                               9
## Cristae Formation                                                                                                                         31
## Crmps In Sema3a Signaling                                                                                                                 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                50
## Crosslinking Of Collagen Fibrils                                                                                                          18
## Cs Ds Degradation                                                                                                                         14
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   25
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          85
## Cyclin D Associated Events In G1                                                                                                          47
## Cyp2e1 Reactions                                                                                                                          11
## Cytochrome C Mediated Apoptotic Response                                                                                                  13
## Cytochrome P450 Arranged By Substrate Type                                                                                                66
## Cytoprotection By Hmox1                                                                                                                  124
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    13
## Cytosolic Sulfonation Of Small Molecules                                                                                                  24
## Cytosolic Trna Aminoacylation                                                                                                             24
## Dap12 Signaling                                                                                                                           29
## Darpp 32 Events                                                                                                                           24
## Dcc Mediated Attractive Signaling                                                                                                         14
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   81
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  42
## Deadenylation Dependent Mrna Decay                                                                                                        56
## Deadenylation Of Mrna                                                                                                                     25
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            62
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                8
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               20
## Defective Cftr Causes Cystic Fibrosis                                                                                                     61
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       8
## Defective Chst3 Causes Sedcjd                                                                                                              8
## Defective Chst6 Causes Mcdc1                                                                                                               8
## Defective Chsy1 Causes Tpbs                                                                                                                8
## Defective Csf2rb Causes Smdp5                                                                                                              8
## Defective Ext2 Causes Exostoses 2                                                                                                         14
## Defective F9 Activation                                                                                                                    6
## Defective Factor Ix Causes Hemophilia B                                                                                                    9
## Defective Factor Viii Causes Hemophilia A                                                                                                  7
## Defective Lfng Causes Scdo3                                                                                                                5
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                5
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  8
## Defects In Biotin Btn Metabolism                                                                                                           8
## Defects In Cobalamin B12 Metabolism                                                                                                       14
## Defects In Vitamin And Cofactor Metabolism                                                                                                22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  16
## Defensins                                                                                                                                 52
## Degradation Of Axin                                                                                                                       55
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    85
## Degradation Of Cysteine And Homocysteine                                                                                                  14
## Degradation Of Dvl                                                                                                                        57
## Degradation Of Gli1 By The Proteasome                                                                                                     60
## Depolymerisation Of The Nuclear Lamina                                                                                                    15
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               22
## Dermatan Sulfate Biosynthesis                                                                                                             11
## Detoxification Of Reactive Oxygen Species                                                                                                 37
## Deubiquitination                                                                                                                         298
## Developmental Biology                                                                                                                   1143
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              7
## Digestion                                                                                                                                 23
## Digestion And Absorption                                                                                                                  28
## Digestion Of Dietary Carbohydrate                                                                                                         11
## Digestion Of Dietary Lipid                                                                                                                 7
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            31
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     41
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             18
## Diseases Associated With N Glycosylation Of Proteins                                                                                      17
## Diseases Associated With Surfactant Metabolism                                                                                            10
## Diseases Of Base Excision Repair                                                                                                           5
## Diseases Of Carbohydrate Metabolism                                                                                                       34
## Diseases Of Dna Repair                                                                                                                    12
## Diseases Of Glycosylation                                                                                                                143
## Diseases Of Metabolism                                                                                                                   246
## Diseases Of Mismatch Repair Mmr                                                                                                            5
## Diseases Of Mitotic Cell Cycle                                                                                                            38
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                         394
## Disinhibition Of Snare Formation                                                                                                           5
## Disorders Of Transmembrane Transporters                                                                                                  176
## Displacement Of Dna Glycosylase By Apex1                                                                                                   9
## Dna Damage Bypass                                                                                                                         48
## Dna Damage Recognition In Gg Ner                                                                                                          38
## Dna Damage Reversal                                                                                                                        8
## Dna Damage Telomere Stress Induced Senescence                                                                                             80
## Dna Double Strand Break Repair                                                                                                           167
## Dna Double Strand Break Response                                                                                                          78
## Dna Repair                                                                                                                               332
## Dna Replication                                                                                                                          128
## Dna Replication Initiation                                                                                                                 8
## Dna Replication Pre Initiation                                                                                                            85
## Dna Strand Elongation                                                                                                                     32
## Dopamine Neurotransmitter Release Cycle                                                                                                   23
## Dopamine Receptors                                                                                                                         5
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   13
## Downregulation Of Erbb4 Signaling                                                                                                          9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             26
## Downstream Signal Transduction                                                                                                            29
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        81
## Downstream Signaling Of Activated Fgfr1                                                                                                   31
## Downstream Signaling Of Activated Fgfr2                                                                                                   30
## Downstream Signaling Of Activated Fgfr3                                                                                                   25
## Downstream Signaling Of Activated Fgfr4                                                                                                   27
## Dscam Interactions                                                                                                                        11
## Dual Incision In Gg Ner                                                                                                                   41
## Dual Incision In Tc Ner                                                                                                                   65
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                9
## E2f Mediated Regulation Of Dna Replication                                                                                                22
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         59
## Early Phase Of Hiv Life Cycle                                                                                                             14
## Effects Of Pip2 Hydrolysis                                                                                                                27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            29
## Eicosanoid Ligand Binding Receptors                                                                                                       15
## Eicosanoids                                                                                                                               12
## Elastic Fibre Formation                                                                                                                   45
## Electric Transmission Across Gap Junctions                                                                                                 5
## Elevation Of Cytosolic Ca2 Levels                                                                                                         16
## Endogenous Sterols                                                                                                                        28
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    31
## Endosomal Vacuolar Pathway                                                                                                                11
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          29
## Enos Activation                                                                                                                           11
## Epha Mediated Growth Cone Collapse                                                                                                        29
## Ephb Mediated Forward Signaling                                                                                                           42
## Ephrin Signaling                                                                                                                          19
## Epigenetic Regulation Of Gene Expression                                                                                                 148
## Er Quality Control Compartment Erqc                                                                                                       21
## Er To Golgi Anterograde Transport                                                                                                        155
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               76
## Erk Mapk Targets                                                                                                                          22
## Erks Are Inactivated                                                                                                                      13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   12
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        7
## Erythropoietin Activates Ras                                                                                                              14
## Erythropoietin Activates Stat5                                                                                                             7
## Establishment Of Sister Chromatid Cohesion                                                                                                11
## Estrogen Biosynthesis                                                                                                                      6
## Estrogen Dependent Gene Expression                                                                                                       150
## Estrogen Stimulated Signaling Through Prkcz                                                                                                6
## Ethanol Oxidation                                                                                                                         12
## Eukaryotic Translation Elongation                                                                                                         94
## Eukaryotic Translation Initiation                                                                                                        120
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           33
## Extension Of Telomeres                                                                                                                    51
## Extracellular Matrix Organization                                                                                                        301
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 5
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                    170
## Fanconi Anemia Pathway                                                                                                                    39
## Fasl Cd95l Signaling                                                                                                                       5
## Fatty Acid Metabolism                                                                                                                    177
## Fatty Acids                                                                                                                               15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                8
## Fatty Acyl Coa Biosynthesis                                                                                                               37
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         5
## Fc Epsilon Receptor Fceri Signaling                                                                                                      186
## Fceri Mediated Ca 2 Mobilization                                                                                                          86
## Fceri Mediated Nf Kb Activation                                                                                                          136
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                             143
## Fcgr Activation                                                                                                                           69
## Fertilization                                                                                                                             26
## Fgfr1 Ligand Binding And Activation                                                                                                       16
## Fgfr1 Mutant Receptor Activation                                                                                                          31
## Fgfr1b Ligand Binding And Activation                                                                                                       6
## Fgfr1c Ligand Binding And Activation                                                                                                      12
## Fgfr2 Alternative Splicing                                                                                                                27
## Fgfr2 Ligand Binding And Activation                                                                                                       20
## Fgfr2 Mutant Receptor Activation                                                                                                          33
## Fgfr2b Ligand Binding And Activation                                                                                                      10
## Fgfr2c Ligand Binding And Activation                                                                                                      13
## Fgfr3 Ligand Binding And Activation                                                                                                       13
## Fgfr3b Ligand Binding And Activation                                                                                                       7
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             5
## Flt3 Signaling                                                                                                                            38
## Flt3 Signaling By Cbl Mutants                                                                                                              7
## Flt3 Signaling In Disease                                                                                                                 28
## Flt3 Signaling Through Src Family Kinases                                                                                                  6
## Folding Of Actin By Cct Tric                                                                                                              10
## Formation Of Apoptosome                                                                                                                   11
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 18
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 39
## Formation Of Incision Complex In Gg Ner                                                                                                   43
## Formation Of Rna Pol Ii Elongation Complex                                                                                                58
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              17
## Formation Of Tc Ner Pre Incision Complex                                                                                                  53
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 92
## Formation Of The Cornified Envelope                                                                                                      129
## Formation Of The Early Elongation Complex                                                                                                 33
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    26
## Formation Of Xylulose 5 Phosphate                                                                                                          5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       8
## Foxo Mediated Transcription                                                                                                               66
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           17
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           16
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              30
## Free Fatty Acid Receptors                                                                                                                  5
## Free Fatty Acids Regulate Insulin Secretion                                                                                               11
## Frs Mediated Fgfr1 Signaling                                                                                                              23
## Frs Mediated Fgfr2 Signaling                                                                                                              25
## Frs Mediated Fgfr3 Signaling                                                                                                              20
## Frs Mediated Fgfr4 Signaling                                                                                                              22
## Fructose Catabolism                                                                                                                        5
## Fructose Metabolism                                                                                                                        7
## G Alpha 12 13 Signalling Events                                                                                                           80
## G Alpha Q Signalling Events                                                                                                              216
## G Alpha S Signalling Events                                                                                                              144
## G Alpha Z Signalling Events                                                                                                               48
## G Beta Gamma Signalling Through Cdc42                                                                                                     20
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 25
## G Protein Activation                                                                                                                      24
## G Protein Beta Gamma Signalling                                                                                                           32
## G0 And Early G1                                                                                                                           27
## G1 S Dna Damage Checkpoints                                                                                                               68
## G1 S Specific Transcription                                                                                                               29
## G2 M Checkpoints                                                                                                                         168
## G2 M Dna Damage Checkpoint                                                                                                                95
## G2 M Dna Replication Checkpoint                                                                                                            5
## G2 Phase                                                                                                                                   5
## Gaba B Receptor Activation                                                                                                                43
## Gaba Receptor Activation                                                                                                                  60
## Gaba Synthesis Release Reuptake And Degradation                                                                                           19
## Galactose Catabolism                                                                                                                       5
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   25
## Gap Junction Assembly                                                                                                                     38
## Gap Junction Degradation                                                                                                                  12
## Gap Junction Trafficking And Regulation                                                                                                   51
## Gdp Fucose Biosynthesis                                                                                                                    6
## Gene Silencing By Rna                                                                                                                    140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                7
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  42
## Glucagon Signaling In Metabolic Regulation                                                                                                33
## Glucagon Type Ligand Receptors                                                                                                            33
## Glucocorticoid Biosynthesis                                                                                                               10
## Gluconeogenesis                                                                                                                           34
## Glucose Metabolism                                                                                                                        92
## Glucuronidation                                                                                                                           25
## Glutamate And Glutamine Metabolism                                                                                                        14
## Glutamate Neurotransmitter Release Cycle                                                                                                  24
## Glutathione Conjugation                                                                                                                   36
## Glutathione Synthesis And Recycling                                                                                                       12
## Glycerophospholipid Biosynthesis                                                                                                         128
## Glycerophospholipid Catabolism                                                                                                             7
## Glycogen Breakdown Glycogenolysis                                                                                                         15
## Glycogen Metabolism                                                                                                                       27
## Glycogen Storage Diseases                                                                                                                 16
## Glycogen Synthesis                                                                                                                        16
## Glycolysis                                                                                                                                72
## Glycosaminoglycan Metabolism                                                                                                             124
## Glycosphingolipid Metabolism                                                                                                              45
## Glyoxylate Metabolism And Glycine Degradation                                                                                             31
## Golgi Associated Vesicle Biogenesis                                                                                                       56
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       14
## Golgi To Er Retrograde Transport                                                                                                         134
## Gp1b Ix V Activation Signalling                                                                                                           12
## Gpcr Ligand Binding                                                                                                                      463
## Gpvi Mediated Activation Cascade                                                                                                          35
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 15
## Grb7 Events In Erbb2 Signaling                                                                                                             5
## Growth Hormone Receptor Signaling                                                                                                         24
## Hats Acetylate Histones                                                                                                                  142
## Hcmv Late Events                                                                                                                         116
## Hdacs Deacetylate Histones                                                                                                                94
## Hdl Assembly                                                                                                                               8
## Hdl Clearance                                                                                                                              5
## Hdl Remodeling                                                                                                                            10
## Hdms Demethylate Histones                                                                                                                 50
## Hdr Through Homologous Recombination Hrr                                                                                                  67
## Hdr Through Mmej Alt Nhej                                                                                                                 10
## Hdr Through Single Strand Annealing Ssa                                                                                                   37
## Hedgehog Ligand Biogenesis                                                                                                                65
## Hedgehog Off State                                                                                                                       113
## Hedgehog On State                                                                                                                         86
## Heme Biosynthesis                                                                                                                         14
## Heme Degradation                                                                                                                          15
## Hemostasis                                                                                                                               678
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     7
## Histidine Catabolism                                                                                                                       8
## Hiv Elongation Arrest And Recovery                                                                                                        33
## Hiv Infection                                                                                                                            231
## Hiv Life Cycle                                                                                                                           149
## Hiv Transcription Elongation                                                                                                              43
## Hiv Transcription Initiation                                                                                                              47
## Homologous Dna Pairing And Strand Exchange                                                                                                42
## Homology Directed Repair                                                                                                                 138
## Hormone Ligand Binding Receptors                                                                                                          12
## Host Interactions Of Hiv Factors                                                                                                         131
## Hs Gag Biosynthesis                                                                                                                       31
## Hs Gag Degradation                                                                                                                        22
## Hsf1 Activation                                                                                                                           31
## Hsf1 Dependent Transactivation                                                                                                            38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   57
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       8
## Hyaluronan Biosynthesis And Export                                                                                                         5
## Hyaluronan Metabolism                                                                                                                     17
## Hyaluronan Uptake And Degradation                                                                                                         12
## Hydrolysis Of Lpc                                                                                                                          9
## Ikba Variant Leads To Eda Id                                                                                                               7
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           17
## Inactivation Of Cdc42 And Rac1                                                                                                             8
## Inactivation Of Csf3 G Csf Signaling                                                                                                      25
## Incretin Synthesis Secretion And Inactivation                                                                                             23
## Infection With Mycobacterium Tuberculosis                                                                                                 27
## Infectious Disease                                                                                                                       924
## Influenza Infection                                                                                                                      157
## Inhibition Of Dna Recombination At Telomere                                                                                               68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               21
## Initial Triggering Of Complement                                                                                                          80
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             19
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              15
## Innate Immune System                                                                                                                    1117
## Inositol Phosphate Metabolism                                                                                                             48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               22
## Insulin Processing                                                                                                                        27
## Insulin Receptor Recycling                                                                                                                26
## Insulin Receptor Signalling Cascade                                                                                                       54
## Integration Of Energy Metabolism                                                                                                         108
## Integration Of Provirus                                                                                                                    9
## Integrin Cell Surface Interactions                                                                                                        85
## Integrin Signaling                                                                                                                        27
## Interaction Between L1 And Ankyrins                                                                                                       31
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     11
## Interactions Of Rev With Host Cellular Proteins                                                                                           37
## Interactions Of Vpr With Host Cellular Proteins                                                                                           37
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        29
## Interferon Alpha Beta Signaling                                                                                                           73
## Interferon Signaling                                                                                                                     203
## Interleukin 15 Signaling                                                                                                                  14
## Interleukin 2 Family Signaling                                                                                                            44
## Interleukin 2 Signaling                                                                                                                   12
## Interleukin 20 Family Signaling                                                                                                           26
## Interleukin 21 Signaling                                                                                                                  10
## Interleukin 23 Signaling                                                                                                                   9
## Interleukin 27 Signaling                                                                                                                  11
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          48
## Interleukin 35 Signalling                                                                                                                 12
## Interleukin 36 Pathway                                                                                                                     7
## Interleukin 37 Signaling                                                                                                                  21
## Interleukin 7 Signaling                                                                                                                   36
## Interleukin 9 Signaling                                                                                                                    9
## Interleukin Receptor Shc Signaling                                                                                                        27
## Intestinal Absorption                                                                                                                      5
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                           203
## Intra Golgi Traffic                                                                                                                       44
## Intracellular Signaling By Second Messengers                                                                                             307
## Intraflagellar Transport                                                                                                                  54
## Intrinsic Pathway For Apoptosis                                                                                                           55
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23
## Inwardly Rectifying K Channels                                                                                                            35
## Ion Channel Transport                                                                                                                    183
## Ion Homeostasis                                                                                                                           54
## Ion Transport By P Type Atpases                                                                                                           55
## Ionotropic Activity Of Kainate Receptors                                                                                                  10
## Irak1 Recruits Ikk Complex                                                                                                                14
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 10
## Irak4 Deficiency Tlr2 4                                                                                                                   18
## Ire1alpha Activates Chaperones                                                                                                            50
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     5
## Iron Uptake And Transport                                                                                                                 58
## Irs Activation                                                                                                                             5
## Irs Mediated Signalling                                                                                                                   48
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         22
## Josephin Domain Dubs                                                                                                                      12
## Keratan Sulfate Biosynthesis                                                                                                              28
## Keratan Sulfate Degradation                                                                                                               13
## Keratan Sulfate Keratin Metabolism                                                                                                        34
## Keratinization                                                                                                                           217
## Ketone Body Metabolism                                                                                                                    10
## Kinesins                                                                                                                                  61
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    17
## Lagging Strand Synthesis                                                                                                                  20
## Laminin Interactions                                                                                                                      30
## Late Endosomal Microautophagy                                                                                                             34
## Lectin Pathway Of Complement Activation                                                                                                    8
## Leukotriene Receptors                                                                                                                      5
## Lgi Adam Interactions                                                                                                                     14
## Ligand Receptor Interactions                                                                                                               8
## Linoleic Acid La Metabolism                                                                                                                8
## Lipid Particle Organization                                                                                                                6
## Lipophagy                                                                                                                                  9
## Listeria Monocytogenes Entry Into Host Cells                                                                                              20
## Long Term Potentiation                                                                                                                    23
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                13
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     5
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        7
## Lysine Catabolism                                                                                                                         12
## Lysosome Vesicle Biogenesis                                                                                                               35
## Lysosphingolipid And Lpa Receptors                                                                                                        14
## M Phase                                                                                                                                  417
## Map2k And Mapk Activation                                                                                                                 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  16
## Mapk Family Signaling Cascades                                                                                                           327
## Mapk6 Mapk4 Signaling                                                                                                                     93
## Mastl Facilitates Mitotic Progression                                                                                                     10
## Maturation Of Nucleoprotein                                                                                                               10
## Maturation Of Protein 3a                                                                                                                   9
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     5
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    29
## Meiosis                                                                                                                                  119
## Meiotic Recombination                                                                                                                     87
## Meiotic Synapsis                                                                                                                          79
## Melanin Biosynthesis                                                                                                                       5
## Membrane Trafficking                                                                                                                     629
## Met Activates Pi3k Akt Signaling                                                                                                           6
## Met Activates Ptk2 Signaling                                                                                                              30
## Met Activates Ptpn11                                                                                                                       5
## Met Activates Rap1 And Rac1                                                                                                               11
## Met Activates Ras Signaling                                                                                                               11
## Met Interacts With Tns Proteins                                                                                                            5
## Met Promotes Cell Motility                                                                                                                41
## Met Receptor Activation                                                                                                                    6
## Met Receptor Recycling                                                                                                                    10
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       34
## Metabolism Of Amine Derived Hormones                                                                                                      18
## Metabolism Of Amino Acids And Derivatives                                                                                                374
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             18
## Metabolism Of Carbohydrates                                                                                                              293
## Metabolism Of Cofactors                                                                                                                   19
## Metabolism Of Fat Soluble Vitamins                                                                                                        48
## Metabolism Of Folate And Pterines                                                                                                         17
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           8
## Metabolism Of Lipids                                                                                                                     741
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 15
## Metabolism Of Nucleotides                                                                                                                 98
## Metabolism Of Polyamines                                                                                                                  59
## Metabolism Of Porphyrins                                                                                                                  27
## Metabolism Of Rna                                                                                                                        672
## Metabolism Of Steroid Hormones                                                                                                            35
## Metabolism Of Steroids                                                                                                                   151
## Metabolism Of Vitamins And Cofactors                                                                                                     189
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                       123
## Metal Ion Slc Transporters                                                                                                                26
## Metal Sequestration By Antimicrobial Proteins                                                                                              6
## Metalloprotease Dubs                                                                                                                      37
## Metallothioneins Bind Metals                                                                                                              11
## Methionine Salvage Pathway                                                                                                                 6
## Methylation                                                                                                                               14
## Microrna Mirna Biogenesis                                                                                                                 25
## Mineralocorticoid Biosynthesis                                                                                                             6
## Miro Gtpase Cycle                                                                                                                          8
## Miscellaneous Substrates                                                                                                                  12
## Miscellaneous Transport And Binding Events                                                                                                26
## Mismatch Repair                                                                                                                           15
## Mitochondrial Calcium Ion Transport                                                                                                       23
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         6
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              13
## Mitochondrial Protein Import                                                                                                              65
## Mitochondrial Translation                                                                                                                 96
## Mitochondrial Trna Aminoacylation                                                                                                         21
## Mitochondrial Uncoupling                                                                                                                   6
## Mitophagy                                                                                                                                 29
## Mitotic G1 Phase And G1 S Transition                                                                                                     149
## Mitotic G2 G2 M Phases                                                                                                                   200
## Mitotic Metaphase And Anaphase                                                                                                           236
## Mitotic Prometaphase                                                                                                                     203
## Mitotic Prophase                                                                                                                         143
## Mitotic Spindle Checkpoint                                                                                                               111
## Mitotic Telophase Cytokinesis                                                                                                             13
## Modulation By Mtb Of Host Immune System                                                                                                    7
## Molecules Associated With Elastic Fibres                                                                                                  38
## Molybdenum Cofactor Biosynthesis                                                                                                           6
## Mrna Capping                                                                                                                              29
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      16
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      15
## Mrna Editing                                                                                                                              10
## Mrna Editing C To U Conversion                                                                                                             8
## Mrna Splicing                                                                                                                            188
## Mrna Splicing Minor Pathway                                                                                                               52
## Mtor Signalling                                                                                                                           41
## Mtorc1 Mediated Signalling                                                                                                                24
## Mucopolysaccharidoses                                                                                                                     11
## Multifunctional Anion Exchangers                                                                                                           9
## Muscarinic Acetylcholine Receptors                                                                                                         5
## Muscle Contraction                                                                                                                       195
## Myoclonic Epilepsy Of Lafora                                                                                                               9
## Myogenesis                                                                                                                                29
## N Glycan Antennae Elongation                                                                                                              15
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    26
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               35
## Na Cl Dependent Neurotransmitter Transporters                                                                                             19
## Nade Modulates Death Signalling                                                                                                            6
## Ncam1 Interactions                                                                                                                        42
## Nectin Necl Trans Heterodimerization                                                                                                       7
## Neddylation                                                                                                                              234
## Nef And Signal Transduction                                                                                                                8
## Nef Mediated Cd4 Down Regulation                                                                                                           9
## Nef Mediated Cd8 Down Regulation                                                                                                           7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            21
## Negative Epigenetic Regulation Of Rrna Expression                                                                                        109
## Negative Feedback Regulation Of Mapk Pathway                                                                                               6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                10
## Negative Regulation Of Fgfr1 Signaling                                                                                                    33
## Negative Regulation Of Fgfr2 Signaling                                                                                                    34
## Negative Regulation Of Fgfr3 Signaling                                                                                                    29
## Negative Regulation Of Fgfr4 Signaling                                                                                                    31
## Negative Regulation Of Flt3                                                                                                               15
## Negative Regulation Of Mapk Pathway                                                                                                       43
## Negative Regulation Of Met Activity                                                                                                       21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       21
## Negative Regulation Of Notch4 Signaling                                                                                                   54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 5
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              34
## Nephrin Family Interactions                                                                                                               23
## Nervous System Development                                                                                                               580
## Netrin 1 Signaling                                                                                                                        50
## Netrin Mediated Repulsion Signals                                                                                                          8
## Neurexins And Neuroligins                                                                                                                 56
## Neurofascin Interactions                                                                                                                   7
## Neuronal System                                                                                                                          410
## Neurotoxicity Of Clostridium Toxins                                                                                                       10
## Neurotransmitter Clearance                                                                                                                10
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                          205
## Neurotransmitter Release Cycle                                                                                                            51
## Neutrophil Degranulation                                                                                                                 479
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  12
## Nf Kb Is Activated And Signals Survival                                                                                                   13
## Ngf Independant Trka Activation                                                                                                            5
## Nicotinamide Salvaging                                                                                                                    19
## Nicotinate Metabolism                                                                                                                     31
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 22
## Non Integrin Membrane Ecm Interactions                                                                                                    59
## Noncanonical Activation Of Notch3                                                                                                          8
## Nonhomologous End Joining Nhej                                                                                                            69
## Nonsense Mediated Decay Nmd                                                                                                              116
## Norepinephrine Neurotransmitter Release Cycle                                                                                             18
## Nostrin Mediated Enos Trafficking                                                                                                          5
## Notch Hlh Transcription Pathway                                                                                                           28
## Notch1 Intracellular Domain Regulates Transcription                                                                                       48
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               22
## Notch3 Intracellular Domain Regulates Transcription                                                                                       25
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               11
## Notch4 Intracellular Domain Regulates Transcription                                                                                       20
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           37
## Nrage Signals Death Through Jnk                                                                                                           59
## Nrcam Interactions                                                                                                                         7
## Nrif Signals Cell Death From The Nucleus                                                                                                  16
## Ns1 Mediated Effects On Host Pathways                                                                                                     41
## Ntrk2 Activates Rac1                                                                                                                       5
## Nuclear Envelope Breakdown                                                                                                                53
## Nuclear Envelope Ne Reassembly                                                                                                            76
## Nuclear Import Of Rev Protein                                                                                                             34
## Nuclear Pore Complex Npc Disassembly                                                                                                      36
## Nuclear Receptor Transcription Pathway                                                                                                    53
## Nuclear Signaling By Erbb4                                                                                                                32
## Nucleobase Biosynthesis                                                                                                                   15
## Nucleobase Catabolism                                                                                                                     35
## Nucleotide Excision Repair                                                                                                               110
## Nucleotide Like Purinergic Receptors                                                                                                      16
## Nucleotide Salvage                                                                                                                        23
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         39
## Oas Antiviral Response                                                                                                                     9
## Olfactory Signaling Pathway                                                                                                              400
## Oncogene Induced Senescence                                                                                                               35
## Oncogenic Mapk Signaling                                                                                                                  82
## Opsins                                                                                                                                     9
## Orc1 Removal From Chromatin                                                                                                               71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    8
## Organelle Biogenesis And Maintenance                                                                                                     296
## Organic Anion Transport                                                                                                                    5
## Organic Anion Transporters                                                                                                                10
## Organic Cation Anion Zwitterion Transport                                                                                                 15
## Organic Cation Transport                                                                                                                  10
## Other Interleukin Signaling                                                                                                               24
## Other Semaphorin Interactions                                                                                                             19
## Ovarian Tumor Domain Proteases                                                                                                            38
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           15
## P2y Receptors                                                                                                                             12
## P38mapk Events                                                                                                                            13
## P75 Ntr Receptor Mediated Signalling                                                                                                      97
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             6
## P75ntr Recruits Signalling Complexes                                                                                                      13
## P75ntr Regulates Axonogenesis                                                                                                             10
## P75ntr Signals Via Nf Kb                                                                                                                  16
## Parasite Infection                                                                                                                       116
## Passive Transport By Aquaporins                                                                                                           13
## Pcna Dependent Long Patch Base Excision Repair                                                                                            21
## Pecam1 Interactions                                                                                                                       12
## Pentose Phosphate Pathway                                                                                                                 15
## Peptide Hormone Biosynthesis                                                                                                              14
## Peptide Hormone Metabolism                                                                                                                90
## Peroxisomal Lipid Metabolism                                                                                                              29
## Peroxisomal Protein Import                                                                                                                63
## Pexophagy                                                                                                                                 11
## Phase 0 Rapid Depolarisation                                                                                                              32
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   7
## Phase 2 Plateau Phase                                                                                                                     15
## Phase 3 Rapid Repolarisation                                                                                                               8
## Phase 4 Resting Membrane Potential                                                                                                        19
## Phase I Functionalization Of Compounds                                                                                                   106
## Phase Ii Conjugation Of Compounds                                                                                                        109
## Phenylalanine And Tyrosine Metabolism                                                                                                     11
## Phenylalanine Metabolism                                                                                                                   6
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              8
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 7
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    18
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    15
## Phospholipid Metabolism                                                                                                                  211
## Phosphorylation Of Emi1                                                                                                                    6
## Phosphorylation Of The Apc C                                                                                                              20
## Physiological Factors                                                                                                                     12
## Pi 3k Cascade Fgfr1                                                                                                                       21
## Pi 3k Cascade Fgfr2                                                                                                                       23
## Pi 3k Cascade Fgfr3                                                                                                                       18
## Pi 3k Cascade Fgfr4                                                                                                                       20
## Pi Metabolism                                                                                                                             84
## Pi3k Akt Activation                                                                                                                        9
## Pi3k Events In Erbb4 Signaling                                                                                                            10
## Pi5p Regulates Tp53 Acetylation                                                                                                            9
## Pink1 Prkn Mediated Mitophagy                                                                                                             22
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     29
## Pka Activation In Glucagon Signalling                                                                                                     17
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      5
## Pkmts Methylate Histone Lysines                                                                                                           71
## Plasma Lipoprotein Assembly                                                                                                               19
## Plasma Lipoprotein Remodeling                                                                                                             32
## Platelet Activation Signaling And Aggregation                                                                                            261
## Platelet Adhesion To Exposed Collagen                                                                                                     15
## Platelet Aggregation Plug Formation                                                                                                       39
## Platelet Calcium Homeostasis                                                                                                              28
## Platelet Homeostasis                                                                                                                      86
## Platelet Sensitization By Ldl                                                                                                             17
## Polb Dependent Long Patch Base Excision Repair                                                                                             8
## Polo Like Kinase Mediated Events                                                                                                          16
## Polymerase Switching                                                                                                                      14
## Polymerase Switching On The C Strand Of The Telomere                                                                                      26
## Positive Epigenetic Regulation Of Rrna Expression                                                                                        106
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        94
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          27
## Potassium Channels                                                                                                                       103
## Potential Therapeutics For Sars                                                                                                           81
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            13
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   7
## Pre Notch Expression And Processing                                                                                                      120
## Pre Notch Processing In Golgi                                                                                                             18
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          6
## Pregnenolone Biosynthesis                                                                                                                 12
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    11
## Presynaptic Function Of Kainate Receptors                                                                                                 21
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  9
## Processing And Activation Of Sumo                                                                                                         10
## Processing Of Capped Intron Containing Pre Mrna                                                                                          242
## Processing Of Capped Intronless Pre Mrna                                                                                                  28
## Processing Of Dna Double Strand Break Ends                                                                                                98
## Processing Of Intronless Pre Mrnas                                                                                                        19
## Processing Of Smdt1                                                                                                                       16
## Processive Synthesis On The C Strand Of The Telomere                                                                                      19
## Processive Synthesis On The Lagging Strand                                                                                                15
## Prolactin Receptor Signaling                                                                                                              15
## Prolonged Erk Activation Events                                                                                                           14
## Propionyl Coa Catabolism                                                                                                                   5
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     19
## Prostanoid Ligand Receptors                                                                                                                9
## Protein Folding                                                                                                                           98
## Protein Localization                                                                                                                     164
## Protein Methylation                                                                                                                       17
## Protein Protein Interactions At Synapses                                                                                                  87
## Protein Repair                                                                                                                             6
## Protein Ubiquitination                                                                                                                    79
## Proton Coupled Monocarboxylate Transport                                                                                                   6
## Pten Regulation                                                                                                                          139
## Ptk6 Expression                                                                                                                            5
## Ptk6 Regulates Cell Cycle                                                                                                                  6
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      9
## Purine Catabolism                                                                                                                         17
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          12
## Purine Salvage                                                                                                                            13
## Pyrimidine Catabolism                                                                                                                     12
## Pyrimidine Salvage                                                                                                                        11
## Pyruvate Metabolism                                                                                                                       31
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             55
## Ra Biosynthesis Pathway                                                                                                                   22
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     90
## Rab Geranylgeranylation                                                                                                                   65
## Rab Regulation Of Trafficking                                                                                                            122
## Rac1 Gtpase Cycle                                                                                                                        184
## Rac2 Gtpase Cycle                                                                                                                         88
## Rac3 Gtpase Cycle                                                                                                                         94
## Raf Activation                                                                                                                            34
## Rap1 Signalling                                                                                                                           16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      20
## Ras Processing                                                                                                                            24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  7
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              10
## Receptor Mediated Mitophagy                                                                                                               11
## Receptor Type Tyrosine Protein Phosphatases                                                                                               20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    56
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          30
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  81
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                95
## Recycling Of Bile Acids And Salts                                                                                                         16
## Recycling Of Eif2 Gdp                                                                                                                      8
## Recycling Pathway Of L1                                                                                                                   49
## Reduction Of Cytosolic Ca Levels                                                                                                          12
## Reelin Signalling Pathway                                                                                                                  5
## Regulated Proteolysis Of P75ntr                                                                                                           11
## Regulation By C Flip                                                                                                                      11
## Regulation Of Bach1 Activity                                                                                                              11
## Regulation Of Beta Cell Development                                                                                                       42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         8
## Regulation Of Expression Of Slits And Robos                                                                                              172
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                10
## Regulation Of Fzd By Ubiquitination                                                                                                       21
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 11
## Regulation Of Gene Expression In Beta Cells                                                                                               21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          12
## Regulation Of Hmox1 Expression And Activity                                                                                               65
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           82
## Regulation Of Ifna Signaling                                                                                                              26
## Regulation Of Ifng Signaling                                                                                                              14
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    15
## Regulation Of Insulin Secretion                                                                                                           78
## Regulation Of Kit Signaling                                                                                                               16
## Regulation Of Lipid Metabolism By Pparalpha                                                                                              120
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       87
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            87
## Regulation Of Pten Gene Transcription                                                                                                     61
## Regulation Of Pten Localization                                                                                                            9
## Regulation Of Pten Mrna Translation                                                                                                        9
## Regulation Of Pten Stability And Activity                                                                                                 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          16
## Regulation Of Ras By Gaps                                                                                                                 68
## Regulation Of Runx1 Expression And Activity                                                                                               17
## Regulation Of Runx2 Expression And Activity                                                                                               73
## Regulation Of Runx3 Expression And Activity                                                                                               55
## Regulation Of Signaling By Cbl                                                                                                            22
## Regulation Of Signaling By Nodal                                                                                                          11
## Regulation Of Tlr By Endogenous Ligand                                                                                                    21
## Regulation Of Tp53 Activity                                                                                                              160
## Regulation Of Tp53 Activity Through Acetylation                                                                                           30
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           14
## Regulation Of Tp53 Activity Through Methylation                                                                                           19
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       92
## Regulation Of Tp53 Expression And Degradation                                                                                             37
## Relaxin Receptors                                                                                                                          8
## Release Of Apoptotic Factors From The Mitochondria                                                                                         7
## Release Of Hh Np From The Secreting Cell                                                                                                   8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     10
## Repression Of Wnt Target Genes                                                                                                            14
## Reproduction                                                                                                                             145
## Resolution Of Abasic Sites Ap Sites                                                                                                       38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              25
## Resolution Of D Loop Structures                                                                                                           34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         26
## Resolution Of Sister Chromatid Cohesion                                                                                                  126
## Respiratory Electron Transport                                                                                                           103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                         127
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                        102
## Response Of Mtb To Phagocytosis                                                                                                           23
## Response To Metal Ions                                                                                                                    14
## Ret Signaling                                                                                                                             40
## Retinoid Cycle Disease Events                                                                                                             13
## Retrograde Neurotrophin Signalling                                                                                                        14
## Retrograde Transport At The Trans Golgi Network                                                                                           49
## Reversible Hydration Of Carbon Dioxide                                                                                                    12
## Rho Gtpase Cycle                                                                                                                         444
## Rho Gtpase Effectors                                                                                                                     324
## Rho Gtpases Activate Cit                                                                                                                  19
## Rho Gtpases Activate Formins                                                                                                             140
## Rho Gtpases Activate Iqgaps                                                                                                               32
## Rho Gtpases Activate Ktn1                                                                                                                 11
## Rho Gtpases Activate Nadph Oxidases                                                                                                       24
## Rho Gtpases Activate Paks                                                                                                                 21
## Rho Gtpases Activate Pkns                                                                                                                 94
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               9
## Rho Gtpases Activate Rocks                                                                                                                19
## Rho Gtpases Activate Wasps And Waves                                                                                                      36
## Rhoa Gtpase Cycle                                                                                                                        149
## Rhob Gtpase Cycle                                                                                                                         70
## Rhobtb Gtpase Cycle                                                                                                                       35
## Rhobtb1 Gtpase Cycle                                                                                                                      23
## Rhobtb2 Gtpase Cycle                                                                                                                      23
## Rhobtb3 Atpase Cycle                                                                                                                      10
## Rhoc Gtpase Cycle                                                                                                                         74
## Rhod Gtpase Cycle                                                                                                                         51
## Rhof Gtpase Cycle                                                                                                                         42
## Rhog Gtpase Cycle                                                                                                                         74
## Rhoh Gtpase Cycle                                                                                                                         37
## Rhoj Gtpase Cycle                                                                                                                         55
## Rhoq Gtpase Cycle                                                                                                                         59
## Rhot1 Gtpase Cycle                                                                                                                         5
## Rhou Gtpase Cycle                                                                                                                         34
## Rhov Gtpase Cycle                                                                                                                         33
## Rna Polymerase I Promoter Escape                                                                                                          91
## Rna Polymerase I Transcription                                                                                                           111
## Rna Polymerase I Transcription Initiation                                                                                                 47
## Rna Polymerase I Transcription Termination                                                                                                31
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 81
## Rna Polymerase Ii Transcription Termination                                                                                               66
## Rna Polymerase Iii Chain Elongation                                                                                                       18
## Rna Polymerase Iii Transcription                                                                                                          41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          28
## Rna Polymerase Iii Transcription Termination                                                                                              23
## Rnd1 Gtpase Cycle                                                                                                                         42
## Rnd2 Gtpase Cycle                                                                                                                         43
## Rnd3 Gtpase Cycle                                                                                                                         42
## Robo Receptors Bind Akap5                                                                                                                  9
## Role Of Abl In Robo Slit Signaling                                                                                                         8
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             71
## Role Of Phospholipids In Phagocytosis                                                                                                     82
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           10
## Rora Activates Gene Expression                                                                                                            18
## Ros And Rns Production In Phagocytes                                                                                                      36
## Rrna Modification In The Mitochondrion                                                                                                     8
## Rrna Modification In The Nucleus And Cytosol                                                                                              60
## Rrna Processing                                                                                                                          205
## Rrna Processing In The Mitochondrion                                                                                                      12
## Rsk Activation                                                                                                                             7
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 10
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        37
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   6
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                               130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        8
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        7
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           6
## Runx2 Regulates Bone Development                                                                                                          31
## Runx2 Regulates Chondrocyte Maturation                                                                                                     5
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           8
## Runx2 Regulates Osteoblast Differentiation                                                                                                24
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  5
## Runx3 Regulates Cdkn1a Transcription                                                                                                       7
## Runx3 Regulates Immune Response And Cell Migration                                                                                         6
## Runx3 Regulates Notch Signaling                                                                                                           14
## Runx3 Regulates P14 Arf                                                                                                                   10
## Runx3 Regulates Wnt Signaling                                                                                                              8
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                8
## S Phase                                                                                                                                  162
## Sars Cov 1 Genome Replication And Transcription                                                                                            6
## Sars Cov 1 Infection                                                                                                                      50
## Sars Cov 2 Infection                                                                                                                      67
## Sars Cov Infections                                                                                                                      146
## Scavenging By Class A Receptors                                                                                                           19
## Scavenging By Class B Receptors                                                                                                            6
## Scavenging By Class F Receptors                                                                                                            6
## Scavenging Of Heme From Plasma                                                                                                            69
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           32
## Selective Autophagy                                                                                                                       82
## Selenoamino Acid Metabolism                                                                                                              118
## Sema3a Pak Dependent Axon Repulsion                                                                                                       16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         14
## Sema4d In Semaphorin Signaling                                                                                                            24
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                8
## Semaphorin Interactions                                                                                                                   64
## Sensing Of Dna Double Strand Breaks                                                                                                        6
## Sensory Perception                                                                                                                       575
## Sensory Processing Of Sound                                                                                                               77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            55
## Separation Of Sister Chromatids                                                                                                          191
## Serine Biosynthesis                                                                                                                        9
## Serotonin And Melatonin Biosynthesis                                                                                                       5
## Serotonin Neurotransmitter Release Cycle                                                                                                  18
## Serotonin Receptors                                                                                                                       12
## Shc Mediated Cascade Fgfr1                                                                                                                21
## Shc Mediated Cascade Fgfr3                                                                                                                18
## Shc Mediated Cascade Fgfr4                                                                                                                20
## Shc Related Events Triggered By Igf1r                                                                                                      9
## Shc1 Events In Erbb4 Signaling                                                                                                            14
## Signal Amplification                                                                                                                      33
## Signal Attenuation                                                                                                                        10
## Signal Regulatory Protein Family Interactions                                                                                             16
## Signaling By Activin                                                                                                                      13
## Signaling By Bmp                                                                                                                          28
## Signaling By Braf And Raf Fusions                                                                                                         65
## Signaling By Csf3 G Csf                                                                                                                   30
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  15
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               18
## Signaling By Erythropoietin                                                                                                               25
## Signaling By Fgfr                                                                                                                         87
## Signaling By Fgfr In Disease                                                                                                              63
## Signaling By Fgfr1                                                                                                                        50
## Signaling By Fgfr1 In Disease                                                                                                             38
## Signaling By Fgfr2                                                                                                                        73
## Signaling By Fgfr2 Iiia Tm                                                                                                                19
## Signaling By Fgfr2 In Disease                                                                                                             43
## Signaling By Fgfr3                                                                                                                        40
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      10
## Signaling By Fgfr4                                                                                                                        41
## Signaling By Fgfr4 In Disease                                                                                                             11
## Signaling By Flt3 Fusion Proteins                                                                                                         19
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     16
## Signaling By Gpcr                                                                                                                        698
## Signaling By Hedgehog                                                                                                                    150
## Signaling By Hippo                                                                                                                        20
## Signaling By Insulin Receptor                                                                                                             78
## Signaling By Kit In Disease                                                                                                               20
## Signaling By Leptin                                                                                                                       11
## Signaling By Lrp5 Mutants                                                                                                                  6
## Signaling By Mapk Mutants                                                                                                                  7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 5
## Signaling By Met                                                                                                                          79
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        45
## Signaling By Mras Complex Mutants                                                                                                          8
## Signaling By Mst1                                                                                                                          5
## Signaling By Nodal                                                                                                                        20
## Signaling By Notch                                                                                                                       247
## Signaling By Notch1                                                                                                                       74
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           15
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         58
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          7
## Signaling By Notch4                                                                                                                       82
## Signaling By Ntrk2 Trkb                                                                                                                   25
## Signaling By Ntrk3 Trkc                                                                                                                   17
## Signaling By Nuclear Receptors                                                                                                           297
## Signaling By Pdgf                                                                                                                         58
## Signaling By Pdgfr In Disease                                                                                                             20
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 12
## Signaling By Receptor Tyrosine Kinases                                                                                                   504
## Signaling By Retinoic Acid                                                                                                                43
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                        717
## Signaling By Rnf43 Mutants                                                                                                                 8
## Signaling By Robo Receptors                                                                                                              218
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           8
## Signaling By The B Cell Receptor Bcr                                                                                                     166
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           54
## Signaling By Vegf                                                                                                                        106
## Signaling By Wnt                                                                                                                         331
## Signaling By Wnt In Cancer                                                                                                                34
## Signalling To Erks                                                                                                                        34
## Signalling To P38 Via Rit And Rin                                                                                                          5
## Signalling To Ras                                                                                                                         20
## Sirt1 Negatively Regulates Rrna Expression                                                                                                68
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      11
## Slc Mediated Transmembrane Transport                                                                                                     250
## Slc Transporter Disorders                                                                                                                 99
## Smac Xiap Regulated Apoptotic Response                                                                                                     8
## Small Interfering Rna Sirna Biogenesis                                                                                                     9
## Smooth Muscle Contraction                                                                                                                 38
## Snrnp Assembly                                                                                                                            54
## Sodium Calcium Exchangers                                                                                                                 11
## Sodium Coupled Phosphate Cotransporters                                                                                                    5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                5
## Sodium Proton Exchangers                                                                                                                   9
## Sos Mediated Signalling                                                                                                                    7
## Sperm Motility And Taxes                                                                                                                   9
## Sphingolipid De Novo Biosynthesis                                                                                                         45
## Sphingolipid Metabolism                                                                                                                   90
## Spry Regulation Of Fgf Signaling                                                                                                          16
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                              113
## Stabilization Of P53                                                                                                                      57
## Stat5 Activation                                                                                                                           7
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           10
## Striated Muscle Contraction                                                                                                               36
## Sulfide Oxidation To Sulfate                                                                                                               6
## Sulfur Amino Acid Metabolism                                                                                                              28
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         5
## Sumo Is Proteolytically Processed                                                                                                          6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               7
## Sumoylation Of Chromatin Organization Proteins                                                                                            71
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    77
## Sumoylation Of Dna Replication Proteins                                                                                                   46
## Sumoylation Of Immune Response Proteins                                                                                                   11
## Sumoylation Of Intracellular Receptors                                                                                                    30
## Sumoylation Of Rna Binding Proteins                                                                                                       47
## Sumoylation Of Sumoylation Proteins                                                                                                       35
## Sumoylation Of Transcription Factors                                                                                                      20
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  39
## Suppression Of Apoptosis                                                                                                                   7
## Suppression Of Phagosomal Maturation                                                                                                      13
## Surfactant Metabolism                                                                                                                     30
## Switching Of Origins To A Post Replicative State                                                                                          91
## Synaptic Adhesion Like Molecules                                                                                                          21
## Syndecan Interactions                                                                                                                     27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          7
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          6
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      9
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  30
## Synthesis Of Bile Acids And Bile Salts                                                                                                    34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      24
## Synthesis Of Diphthamide Eef2                                                                                                              8
## Synthesis Of Dolichyl Phosphate                                                                                                            6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              8
## Synthesis Of Gdp Mannose                                                                                                                   5
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             18
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                14
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   26
## Synthesis Of Ketone Bodies                                                                                                                 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                21
## Synthesis Of Lipoxins Lx                                                                                                                   6
## Synthesis Of Pa                                                                                                                           39
## Synthesis Of Pc                                                                                                                           28
## Synthesis Of Pe                                                                                                                           13
## Synthesis Of Pg                                                                                                                            8
## Synthesis Of Pi                                                                                                                            5
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          16
## Synthesis Of Pips At The Er Membrane                                                                                                       5
## Synthesis Of Pips At The Golgi Membrane                                                                                                   18
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           11
## Synthesis Of Pips At The Plasma Membrane                                                                                                  53
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        15
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                10
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      8
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              24
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 6
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            19
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     20
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  13
## Tachykinin Receptors Bind Tachykinins                                                                                                      5
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     32
## Tandem Pore Domain Potassium Channels                                                                                                     12
## Tbc Rabgaps                                                                                                                               44
## Tcf Dependent Signaling In Response To Wnt                                                                                               234
## Telomere C Strand Lagging Strand Synthesis                                                                                                34
## Telomere C Strand Synthesis Initiation                                                                                                    13
## Telomere Extension By Telomerase                                                                                                          23
## Telomere Maintenance                                                                                                                     113
## Terminal Pathway Of Complement                                                                                                             8
## Termination Of Translesion Dna Synthesis                                                                                                  32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        10
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            5
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               5
## Tgf Beta Receptor Signaling Activates Smads                                                                                               32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   16
## The Activation Of Arylsulfatases                                                                                                          13
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                             178
## The Fatty Acid Cycling Model                                                                                                               5
## The Nlrp3 Inflammasome                                                                                                                    16
## The Phototransduction Cascade                                                                                                             34
## The Retinoid Cycle In Cones Daylight Vision                                                                                                7
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 79
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             28
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           32
## Thromboxane Signalling Through Tp Receptor                                                                                                24
## Thyroxine Biosynthesis                                                                                                                    10
## Tie2 Signaling                                                                                                                            18
## Tight Junction Interactions                                                                                                               30
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      13
## Tnfr1 Mediated Ceramide Production                                                                                                         6
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    5
## Tp53 Regulates Metabolic Genes                                                                                                            87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          21
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           12
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          49
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          44
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               12
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    14
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    18
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      14
## Traf3 Dependent Irf Activation Pathway                                                                                                    14
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              16
## Traf6 Mediated Irf7 Activation                                                                                                            29
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   13
## Traf6 Mediated Nf Kb Activation                                                                                                           24
## Trafficking Of Ampa Receptors                                                                                                             31
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            17
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        5
## Trail Signaling                                                                                                                            8
## Trans Golgi Network Vesicle Budding                                                                                                       72
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   78
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      19
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      16
## Transcription Of The Hiv Genome                                                                                                           70
## Transcriptional Regulation By E2f6                                                                                                        34
## Transcriptional Regulation By Runx1                                                                                                      239
## Transcriptional Regulation By Runx2                                                                                                      120
## Transcriptional Regulation By Runx3                                                                                                       96
## Transcriptional Regulation By Small Rnas                                                                                                 107
## Transcriptional Regulation By Tp53                                                                                                       363
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      31
## Transcriptional Regulation Of Testis Differentiation                                                                                      13
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             84
## Transferrin Endocytosis And Recycling                                                                                                     31
## Translation                                                                                                                              295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            13
## Translation Of Sars Cov 1 Structural Proteins                                                                                             28
## Translation Of Sars Cov 2 Structural Proteins                                                                                             44
## Translesion Synthesis By Polh                                                                                                             19
## Translesion Synthesis By Polk                                                                                                             17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      72
## Transmission Across Chemical Synapses                                                                                                    269
## Transport And Synthesis Of Paps                                                                                                            6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  86
## Transport Of Connexons To The Plasma Membrane                                                                                             21
## Transport Of Fatty Acids                                                                                                                   8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                      106
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             43
## Transport Of Mature Transcript To Cytoplasm                                                                                               84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  12
## Transport Of Nucleotide Sugars                                                                                                             9
## Transport Of Organic Anions                                                                                                               12
## Transport Of Small Molecules                                                                                                             728
## Transport Of The Slbp Dependant Mature Mrna                                                                                               36
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   44
## Transport To The Golgi And Subsequent Modification                                                                                       186
## Trif Mediated Programmed Cell Death                                                                                                        9
## Triglyceride Biosynthesis                                                                                                                 14
## Triglyceride Catabolism                                                                                                                   24
## Triglyceride Metabolism                                                                                                                   38
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     17
## Trna Aminoacylation                                                                                                                       42
## Trna Modification In The Mitochondrion                                                                                                     9
## Trna Modification In The Nucleus And Cytosol                                                                                              43
## Trna Processing                                                                                                                          111
## Trna Processing In The Mitochondrion                                                                                                       7
## Trna Processing In The Nucleus                                                                                                            59
## Trp Channels                                                                                                                              28
## Tryptophan Catabolism                                                                                                                     14
## Type I Hemidesmosome Assembly                                                                                                             11
## Tyrosine Catabolism                                                                                                                        5
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        7
## Ub Specific Processing Proteases                                                                                                         221
## Ubiquinol Biosynthesis                                                                                                                     8
## Uch Proteinases                                                                                                                          102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             21
## Unwinding Of Dna                                                                                                                          12
## Uptake And Actions Of Bacterial Toxins                                                                                                    29
## Uptake And Function Of Anthrax Toxins                                                                                                     11
## Uptake And Function Of Diphtheria Toxin                                                                                                    6
## Urea Cycle                                                                                                                                10
## Vasopressin Like Receptors                                                                                                                 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              43
## Vegf Ligand Receptor Interactions                                                                                                          8
## Vegfr2 Mediated Cell Proliferation                                                                                                        19
## Vegfr2 Mediated Vascular Permeability                                                                                                     27
## Vesicle Mediated Transport                                                                                                               724
## Viral Messenger Rna Synthesis                                                                                                             44
## Visual Phototransduction                                                                                                                 100
## Vitamin B1 Thiamin Metabolism                                                                                                              5
## Vitamin B2 Riboflavin Metabolism                                                                                                           7
## Vitamin B5 Pantothenate Metabolism                                                                                                        17
## Vitamin C Ascorbate Metabolism                                                                                                             8
## Vitamin D Calciferol Metabolism                                                                                                           11
## Vitamins                                                                                                                                   6
## Vldl Assembly                                                                                                                              5
## Vldl Clearance                                                                                                                             6
## Voltage Gated Potassium Channels                                                                                                          43
## Vxpx Cargo Targeting To Cilium                                                                                                            21
## Wax And Plasmalogen Biosynthesis                                                                                                           7
## Wnt Mediated Activation Of Dvl                                                                                                             8
## Xenobiotics                                                                                                                               25
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             15
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   7
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           10
## Zinc Transporters                                                                                                                         17
##                                                                                                                                      overlap
## Interleukin 10 Signaling                                                                                                                   8
## Chemokine Receptors Bind Chemokines                                                                                                        6
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               3
## Cd163 Mediating An Anti Inflammatory Response                                                                                              2
## Interleukin 1 Processing                                                                                                                   2
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     3
## Tnfs Bind Their Physiological Receptors                                                                                                    3
## Interleukin 4 And Interleukin 13 Signaling                                                                                                 7
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               2
## Mecp2 Regulates Transcription Factors                                                                                                      1
## Clec7a Inflammasome Pathway                                                                                                                1
## Fibronectin Matrix Formation                                                                                                               1
## Ptk6 Promotes Hif1a Stabilization                                                                                                          1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1
## Creb Phosphorylation                                                                                                                       1
## Purinergic Signaling In Leishmaniasis Infection                                                                                            2
## Pyroptosis                                                                                                                                 2
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1
## Interleukin 18 Signaling                                                                                                                   1
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1
## Pd 1 Signaling                                                                                                                             2
## Extra Nuclear Estrogen Signaling                                                                                                           4
## Egfr Interacts With Phospholipase C Gamma                                                                                                  1
## Egfr Transactivation By Gastrin                                                                                                            1
## Mapk1 Erk2 Activation                                                                                                                      1
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          5
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        2
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1
## Mapk3 Erk1 Activation                                                                                                                      1
## Regulated Necrosis                                                                                                                         3
## Interleukin 6 Signaling                                                                                                                    1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1
## Cd28 Dependent Vav1 Pathway                                                                                                                1
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1
## Killing Mechanisms                                                                                                                         1
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1
## Vldlr Internalisation And Degradation                                                                                                      1
## Dissolution Of Fibrin Clot                                                                                                                 1
## Erbb2 Activates Ptk6 Signaling                                                                                                             1
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      1
## Trafficking And Processing Of Endosomal Tlr                                                                                                1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1
## Ngf Stimulated Transcription                                                                                                               2
## Shc1 Events In Egfr Signaling                                                                                                              1
## Constitutive Signaling By Egfrviii                                                                                                         1
## Erbb2 Regulates Cell Motility                                                                                                              1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            1
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 1
## Grb2 Events In Erbb2 Signaling                                                                                                             1
## Pi3k Events In Erbb2 Signaling                                                                                                             1
## Signaling By Erbb2 Ecd Mutants                                                                                                             1
## Sting Mediated Induction Of Host Immune Responses                                                                                          1
## Sumoylation Of Dna Methylation Proteins                                                                                                    1
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              1
## Gab1 Signalosome                                                                                                                           1
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1
## Costimulation By The Cd28 Family                                                                                                           3
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           1
## Ldl Clearance                                                                                                                              1
## Pka Mediated Phosphorylation Of Creb                                                                                                       1
## Ctla4 Inhibitory Signaling                                                                                                                 1
## Inflammasomes                                                                                                                              1
## Signal Transduction By L1                                                                                                                  1
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 1
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1
## Shc1 Events In Erbb2 Signaling                                                                                                             1
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   1
## Raf Independent Mapk1 3 Activation                                                                                                         1
## Termination Of O Glycan Biosynthesis                                                                                                       1
## Interleukin 6 Family Signaling                                                                                                             1
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                1
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   2
## Signaling By Egfr In Cancer                                                                                                                1
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1
## Dectin 2 Family                                                                                                                            1
## Signaling By Erbb2 In Cancer                                                                                                               1
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           1
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1
## Downregulation Of Erbb2 Signaling                                                                                                          1
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  2
## Ripk1 Mediated Regulated Necrosis                                                                                                          1
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               2
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   1
## Diseases Of Immune System                                                                                                                  1
## Egfr Downregulation                                                                                                                        1
## Myd88 Independent Tlr4 Cascade                                                                                                             3
## Perk Regulates Gene Expression                                                                                                             1
## Regulation Of Mecp2 Expression And Activity                                                                                                1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     1
## Activation Of Matrix Metalloproteinases                                                                                                    1
## Cd28 Co Stimulation                                                                                                                        1
## Plasma Lipoprotein Clearance                                                                                                               1
## Sialic Acid Metabolism                                                                                                                     1
## Signaling By Notch2                                                                                                                        1
## Peptide Ligand Binding Receptors                                                                                                           6
## Circadian Clock                                                                                                                            2
## Regulation Of Tnfr1 Signaling                                                                                                              1
## Interleukin 17 Signaling                                                                                                                   2
## Nod1 2 Signaling Pathway                                                                                                                   1
## Pi3k Akt Signaling In Cancer                                                                                                               3
## Ca Dependent Events                                                                                                                        1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         1
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1
## Generation Of Second Messenger Molecules                                                                                                   1
## Senescence Associated Secretory Phenotype Sasp                                                                                             3
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          2
## Dag And Ip3 Signaling                                                                                                                      1
## Negative Regulation Of The Pi3k Akt Network                                                                                                3
## Transcriptional Regulation By Ventx                                                                                                        1
## Signaling By Scf Kit                                                                                                                       1
## Sumoylation Of Transcription Cofactors                                                                                                     1
## Tnf Signaling                                                                                                                              1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 1
## Dap12 Interactions                                                                                                                         1
## Interleukin 12 Signaling                                                                                                                   1
## Toll Like Receptor Cascades                                                                                                                4
## Heme Signaling                                                                                                                             1
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    3
## Signaling By Egfr                                                                                                                          1
## Signaling By Erbb2                                                                                                                         1
## Signaling By Notch3                                                                                                                        1
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     1
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          2
## Fcgr3a Mediated Il10 Synthesis                                                                                                             2
## G Protein Mediated Events                                                                                                                  1
## Signaling By Ptk6                                                                                                                          1
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1
## Interleukin 12 Family Signaling                                                                                                            1
## Interleukin 1 Family Signaling                                                                                                             3
## Signaling By Erbb4                                                                                                                         1
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               1
## Ca2 Pathway                                                                                                                                1
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        2
## O Linked Glycosylation Of Mucins                                                                                                           1
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       2
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           1
## Asymmetric Localization Of Pcp Proteins                                                                                                    1
## Collagen Degradation                                                                                                                       1
## Dna Methylation                                                                                                                            1
## Ncam Signaling For Neurite Out Growth                                                                                                      1
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            1
## Transcriptional Regulation By Mecp2                                                                                                        1
## Diseases Associated With O Glycosylation Of Proteins                                                                                       1
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1
## Prc2 Methylates Histones And Dna                                                                                                           1
## Signaling By Interleukins                                                                                                                 12
## Signaling By Tgf Beta Receptor Complex                                                                                                     1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         1
## Ecm Proteoglycans                                                                                                                          1
## Rmts Methylate Histone Arginines                                                                                                           1
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    2
## G Alpha I Signalling Events                                                                                                                7
## C Type Lectin Receptors Clrs                                                                                                               2
## Collagen Formation                                                                                                                         1
## Esr Mediated Signaling                                                                                                                     4
## Fceri Mediated Mapk Activation                                                                                                             1
## Hcmv Early Events                                                                                                                          2
## Opioid Signalling                                                                                                                          1
## Signaling By Ntrks                                                                                                                         2
## Transcriptional Regulation Of Granulopoiesis                                                                                               1
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1
## Class B 2 Secretin Family Receptors                                                                                                        1
## Clathrin Mediated Endocytosis                                                                                                              2
## Clec7a Dectin 1 Signaling                                                                                                                  1
## Eph Ephrin Signaling                                                                                                                       1
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   3
## Interferon Gamma Signaling                                                                                                                 1
## Leishmania Infection                                                                                                                       6
## Mitochondrial Biogenesis                                                                                                                   1
## Pcp Ce Pathway                                                                                                                             1
## Unfolded Protein Response Upr                                                                                                              1
## Amyloid Fiber Formation                                                                                                                    1
## Cellular Senescence                                                                                                                        3
## Diseases Of Programmed Cell Death                                                                                                          1
## Hcmv Infection                                                                                                                             2
## Interleukin 1 Signaling                                                                                                                    1
## O Linked Glycosylation                                                                                                                     1
## Programmed Cell Death                                                                                                                      3
## Signaling By Tgfb Family Members                                                                                                           1
## Stimuli Sensing Channels                                                                                                                   1
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         3
## Cell Surface Interactions At The Vascular Wall                                                                                             2
## Class A 1 Rhodopsin Like Receptors                                                                                                         6
## Cytokine Signaling In Immune System                                                                                                       18
## Death Receptor Signalling                                                                                                                  1
## Degradation Of The Extracellular Matrix                                                                                                    1
## L1cam Interactions                                                                                                                         1
## Mhc Class Ii Antigen Presentation                                                                                                          1
## Oxidative Stress Induced Senescence                                                                                                        1
## Response To Elevated Platelet Cytosolic Ca2                                                                                                1
## Sumoylation                                                                                                                                2
## Tcr Signaling                                                                                                                              1
## 2 Ltr Circle Formation                                                                                                                     0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            0
## Abacavir Metabolism                                                                                                                        0
## Abacavir Transmembrane Transport                                                                                                           0
## Abacavir Transport And Metabolism                                                                                                          0
## Abc Family Proteins Mediated Transport                                                                                                     0
## Abc Transporter Disorders                                                                                                                  0
## Abc Transporters In Lipid Homeostasis                                                                                                      0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              0
## Acetylcholine Binding And Downstream Events                                                                                                0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     0
## Acetylcholine Neurotransmitter Release Cycle                                                                                               0
## Acetylcholine Regulates Insulin Secretion                                                                                                  0
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        0
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           0
## Activated Ntrk2 Signals Through Cdk5                                                                                                       0
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              0
## Activated Ntrk2 Signals Through Fyn                                                                                                        0
## Activated Ntrk2 Signals Through Pi3k                                                                                                       0
## Activated Ntrk2 Signals Through Ras                                                                                                        0
## Activated Ntrk3 Signals Through Pi3k                                                                                                       0
## Activated Ntrk3 Signals Through Ras                                                                                                        0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              0
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                0
## Activation Of Ampk Downstream Of Nmdars                                                                                                    0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       0
## Activation Of Atr In Response To Replication Stress                                                                                        0
## Activation Of Bad And Translocation To Mitochondria                                                                                        0
## Activation Of Bh3 Only Proteins                                                                                                            0
## Activation Of C3 And C5                                                                                                                    0
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                0
## Activation Of Gene Expression By Srebf Srebp                                                                                               0
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       0
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     0
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  0
## Activation Of Noxa And Translocation To Mitochondria                                                                                       0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       0
## Activation Of Puma And Translocation To Mitochondria                                                                                       0
## Activation Of Rac1                                                                                                                         0
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    0
## Activation Of Ras In B Cells                                                                                                               0
## Activation Of Smo                                                                                                                          0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      0
## Activation Of The Phototransduction Cascade                                                                                                0
## Activation Of The Pre Replicative Complex                                                                                                  0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               0
## Activation Of Trka Receptors                                                                                                               0
## Acyl Chain Remodeling Of Cl                                                                                                                0
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       0
## Acyl Chain Remodelling Of Pc                                                                                                               0
## Acyl Chain Remodelling Of Pe                                                                                                               0
## Acyl Chain Remodelling Of Pg                                                                                                               0
## Acyl Chain Remodelling Of Pi                                                                                                               0
## Acyl Chain Remodelling Of Ps                                                                                                               0
## Adaptive Immune System                                                                                                                     6
## Adenylate Cyclase Activating Pathway                                                                                                       0
## Adenylate Cyclase Inhibitory Pathway                                                                                                       0
## Adherens Junctions Interactions                                                                                                            0
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  0
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        0
## Adrenoceptors                                                                                                                              0
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       0
## Aflatoxin Activation And Detoxification                                                                                                    0
## Aggrephagy                                                                                                                                 0
## Akt Phosphorylates Targets In The Cytosol                                                                                                  0
## Alpha Defensins                                                                                                                            0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 0
## Alpha Oxidation Of Phytanate                                                                                                               0
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   0
## Alternative Complement Activation                                                                                                          0
## Amine Ligand Binding Receptors                                                                                                             0
## Amino Acid Conjugation                                                                                                                     0
## Amino Acid Transport Across The Plasma Membrane                                                                                            0
## Amino Acids Regulate Mtorc1                                                                                                                0
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   0
## Anchoring Fibril Formation                                                                                                                 0
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         0
## Androgen Biosynthesis                                                                                                                      0
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           0
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   0
## Antigen Processing Cross Presentation                                                                                                      0
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   0
## Antimicrobial Peptides                                                                                                                     0
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                0
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   0
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          0
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     0
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            0
## Apoptosis                                                                                                                                  0
## Apoptosis Induced Dna Fragmentation                                                                                                        0
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               0
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    0
## Apoptotic Execution Phase                                                                                                                  0
## Apoptotic Factor Mediated Response                                                                                                         0
## Aquaporin Mediated Transport                                                                                                               0
## Arachidonate Production From Dag                                                                                                           0
## Arachidonic Acid Metabolism                                                                                                                0
## Arms Mediated Activation                                                                                                                   0
## Aryl Hydrocarbon Receptor Signalling                                                                                                       0
## Asparagine N Linked Glycosylation                                                                                                          1
## Aspartate And Asparagine Metabolism                                                                                                        0
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   0
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           0
## Assembly Of The Hiv Virion                                                                                                                 0
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   0
## Assembly Of The Pre Replicative Complex                                                                                                    0
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           0
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  0
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       0
## Attachment And Entry                                                                                                                       0
## Attachment Of Gpi Anchor To Upar                                                                                                           0
## Attenuation Phase                                                                                                                          0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  0
## Aurka Activation By Tpx2                                                                                                                   0
## Autophagy                                                                                                                                  0
## B Wich Complex Positively Regulates Rrna Expression                                                                                        0
## Base Excision Repair                                                                                                                       0
## Base Excision Repair Ap Site Formation                                                                                                     0
## Basigin Interactions                                                                                                                       0
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  0
## Beta Catenin Independent Wnt Signaling                                                                                                     1
## Beta Catenin Phosphorylation Cascade                                                                                                       0
## Beta Defensins                                                                                                                             0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             0
## Beta Oxidation Of Pristanoyl Coa                                                                                                           0
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              0
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               0
## Bicarbonate Transporters                                                                                                                   0
## Bile Acid And Bile Salt Metabolism                                                                                                         0
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       0
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         0
## Biological Oxidations                                                                                                                      0
## Biosynthesis Of Epa Derived Spms                                                                                                           0
## Biosynthesis Of Maresin Like Spms                                                                                                          0
## Biosynthesis Of Maresins                                                                                                                   0
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    0
## Biotin Transport And Metabolism                                                                                                            0
## Blood Group Systems Biosynthesis                                                                                                           0
## Branched Chain Amino Acid Catabolism                                                                                                       0
## Budding And Maturation Of Hiv Virion                                                                                                       0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                0
## Butyrophilin Btn Family Interactions                                                                                                       0
## Ca2 Activated K Channels                                                                                                                   0
## Calcineurin Activates Nfat                                                                                                                 0
## Calcitonin Like Ligand Receptors                                                                                                           0
## Calnexin Calreticulin Cycle                                                                                                                0
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                0
## Cardiac Conduction                                                                                                                         0
## Cargo Concentration In The Er                                                                                                              0
## Cargo Trafficking To The Periciliary Membrane                                                                                              0
## Carnitine Metabolism                                                                                                                       0
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       0
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         0
## Cation Coupled Chloride Cotransporters                                                                                                     0
## Cd209 Dc Sign Signaling                                                                                                                    0
## Cd22 Mediated Bcr Regulation                                                                                                               0
## Cdc42 Gtpase Cycle                                                                                                                         0
## Cdc6 Association With The Orc Origin Complex                                                                                               0
## Cell Cell Communication                                                                                                                    0
## Cell Cell Junction Organization                                                                                                            0
## Cell Cycle                                                                                                                                 0
## Cell Cycle Checkpoints                                                                                                                     0
## Cell Cycle Mitotic                                                                                                                         0
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              0
## Cell Extracellular Matrix Interactions                                                                                                     0
## Cell Junction Organization                                                                                                                 0
## Cellular Hexose Transport                                                                                                                  0
## Cellular Response To Chemical Stress                                                                                                       0
## Cellular Response To Heat Stress                                                                                                           0
## Cellular Response To Hypoxia                                                                                                               0
## Cellular Response To Starvation                                                                                                            0
## Cellular Responses To External Stimuli                                                                                                     4
## Cgmp Effects                                                                                                                               0
## Chaperone Mediated Autophagy                                                                                                               0
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              0
## Chl1 Interactions                                                                                                                          0
## Cholesterol Biosynthesis                                                                                                                   0
## Choline Catabolism                                                                                                                         0
## Chondroitin Sulfate Biosynthesis                                                                                                           0
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            0
## Chrebp Activates Metabolic Gene Expression                                                                                                 0
## Chromatin Modifying Enzymes                                                                                                                1
## Chromosome Maintenance                                                                                                                     0
## Chylomicron Assembly                                                                                                                       0
## Chylomicron Clearance                                                                                                                      0
## Chylomicron Remodeling                                                                                                                     0
## Cilium Assembly                                                                                                                            0
## Citric Acid Cycle Tca Cycle                                                                                                                0
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       0
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       0
## Class I Peroxisomal Membrane Protein Import                                                                                                0
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         0
## Coenzyme A Biosynthesis                                                                                                                    0
## Cohesin Loading Onto Chromatin                                                                                                             0
## Collagen Biosynthesis And Modifying Enzymes                                                                                                0
## Collagen Chain Trimerization                                                                                                               0
## Common Pathway Of Fibrin Clot Formation                                                                                                    0
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 0
## Complement Cascade                                                                                                                         0
## Complex I Biogenesis                                                                                                                       0
## Condensation Of Prometaphase Chromosomes                                                                                                   0
## Condensation Of Prophase Chromosomes                                                                                                       0
## Conjugation Of Benzoate With Glycine                                                                                                       0
## Constitutive Signaling By Overexpressed Erbb2                                                                                              0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         0
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              0
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            0
## Copi Mediated Anterograde Transport                                                                                                        0
## Copii Mediated Vesicle Transport                                                                                                           0
## Creatine Metabolism                                                                                                                        0
## Creation Of C4 And C2 Activators                                                                                                           0
## Creb3 Factors Activate Genes                                                                                                               0
## Cristae Formation                                                                                                                          0
## Crmps In Sema3a Signaling                                                                                                                  0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 0
## Crosslinking Of Collagen Fibrils                                                                                                           0
## Cs Ds Degradation                                                                                                                          0
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    0
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           0
## Cyclin D Associated Events In G1                                                                                                           0
## Cyp2e1 Reactions                                                                                                                           0
## Cytochrome C Mediated Apoptotic Response                                                                                                   0
## Cytochrome P450 Arranged By Substrate Type                                                                                                 0
## Cytoprotection By Hmox1                                                                                                                    0
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     0
## Cytosolic Sulfonation Of Small Molecules                                                                                                   0
## Cytosolic Trna Aminoacylation                                                                                                              0
## Dap12 Signaling                                                                                                                            0
## Darpp 32 Events                                                                                                                            0
## Dcc Mediated Attractive Signaling                                                                                                          0
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    0
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   0
## Deadenylation Dependent Mrna Decay                                                                                                         0
## Deadenylation Of Mrna                                                                                                                      0
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                0
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                0
## Defective Cftr Causes Cystic Fibrosis                                                                                                      0
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       0
## Defective Chst3 Causes Sedcjd                                                                                                              0
## Defective Chst6 Causes Mcdc1                                                                                                               0
## Defective Chsy1 Causes Tpbs                                                                                                                0
## Defective Csf2rb Causes Smdp5                                                                                                              0
## Defective Ext2 Causes Exostoses 2                                                                                                          0
## Defective F9 Activation                                                                                                                    0
## Defective Factor Ix Causes Hemophilia B                                                                                                    0
## Defective Factor Viii Causes Hemophilia A                                                                                                  0
## Defective Lfng Causes Scdo3                                                                                                                0
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                0
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  0
## Defects In Biotin Btn Metabolism                                                                                                           0
## Defects In Cobalamin B12 Metabolism                                                                                                        0
## Defects In Vitamin And Cofactor Metabolism                                                                                                 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   0
## Defensins                                                                                                                                  0
## Degradation Of Axin                                                                                                                        0
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     0
## Degradation Of Cysteine And Homocysteine                                                                                                   0
## Degradation Of Dvl                                                                                                                         0
## Degradation Of Gli1 By The Proteasome                                                                                                      0
## Depolymerisation Of The Nuclear Lamina                                                                                                     0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           0
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                0
## Dermatan Sulfate Biosynthesis                                                                                                              0
## Detoxification Of Reactive Oxygen Species                                                                                                  0
## Deubiquitination                                                                                                                           2
## Developmental Biology                                                                                                                      3
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              0
## Digestion                                                                                                                                  0
## Digestion And Absorption                                                                                                                   0
## Digestion Of Dietary Carbohydrate                                                                                                          0
## Digestion Of Dietary Lipid                                                                                                                 0
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             0
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      0
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              0
## Diseases Associated With N Glycosylation Of Proteins                                                                                       0
## Diseases Associated With Surfactant Metabolism                                                                                             0
## Diseases Of Base Excision Repair                                                                                                           0
## Diseases Of Carbohydrate Metabolism                                                                                                        0
## Diseases Of Dna Repair                                                                                                                     0
## Diseases Of Glycosylation                                                                                                                  1
## Diseases Of Metabolism                                                                                                                     1
## Diseases Of Mismatch Repair Mmr                                                                                                            0
## Diseases Of Mitotic Cell Cycle                                                                                                             0
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           3
## Disinhibition Of Snare Formation                                                                                                           0
## Disorders Of Transmembrane Transporters                                                                                                    0
## Displacement Of Dna Glycosylase By Apex1                                                                                                   0
## Dna Damage Bypass                                                                                                                          0
## Dna Damage Recognition In Gg Ner                                                                                                           0
## Dna Damage Reversal                                                                                                                        0
## Dna Damage Telomere Stress Induced Senescence                                                                                              0
## Dna Double Strand Break Repair                                                                                                             0
## Dna Double Strand Break Response                                                                                                           0
## Dna Repair                                                                                                                                 0
## Dna Replication                                                                                                                            0
## Dna Replication Initiation                                                                                                                 0
## Dna Replication Pre Initiation                                                                                                             0
## Dna Strand Elongation                                                                                                                      0
## Dopamine Neurotransmitter Release Cycle                                                                                                    0
## Dopamine Receptors                                                                                                                         0
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    0
## Downregulation Of Erbb4 Signaling                                                                                                          0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   0
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              0
## Downstream Signal Transduction                                                                                                             0
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         0
## Downstream Signaling Of Activated Fgfr1                                                                                                    0
## Downstream Signaling Of Activated Fgfr2                                                                                                    0
## Downstream Signaling Of Activated Fgfr3                                                                                                    0
## Downstream Signaling Of Activated Fgfr4                                                                                                    0
## Dscam Interactions                                                                                                                         0
## Dual Incision In Gg Ner                                                                                                                    0
## Dual Incision In Tc Ner                                                                                                                    0
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                0
## E2f Mediated Regulation Of Dna Replication                                                                                                 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          0
## Early Phase Of Hiv Life Cycle                                                                                                              0
## Effects Of Pip2 Hydrolysis                                                                                                                 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             0
## Eicosanoid Ligand Binding Receptors                                                                                                        0
## Eicosanoids                                                                                                                                0
## Elastic Fibre Formation                                                                                                                    0
## Electric Transmission Across Gap Junctions                                                                                                 0
## Elevation Of Cytosolic Ca2 Levels                                                                                                          0
## Endogenous Sterols                                                                                                                         0
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     0
## Endosomal Vacuolar Pathway                                                                                                                 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           0
## Enos Activation                                                                                                                            0
## Epha Mediated Growth Cone Collapse                                                                                                         0
## Ephb Mediated Forward Signaling                                                                                                            0
## Ephrin Signaling                                                                                                                           0
## Epigenetic Regulation Of Gene Expression                                                                                                   1
## Er Quality Control Compartment Erqc                                                                                                        0
## Er To Golgi Anterograde Transport                                                                                                          0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                0
## Erk Mapk Targets                                                                                                                           0
## Erks Are Inactivated                                                                                                                       0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    0
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        0
## Erythropoietin Activates Ras                                                                                                               0
## Erythropoietin Activates Stat5                                                                                                             0
## Establishment Of Sister Chromatid Cohesion                                                                                                 0
## Estrogen Biosynthesis                                                                                                                      0
## Estrogen Dependent Gene Expression                                                                                                         1
## Estrogen Stimulated Signaling Through Prkcz                                                                                                0
## Ethanol Oxidation                                                                                                                          0
## Eukaryotic Translation Elongation                                                                                                          0
## Eukaryotic Translation Initiation                                                                                                          0
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            0
## Extension Of Telomeres                                                                                                                     0
## Extracellular Matrix Organization                                                                                                          3
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      0
## Fanconi Anemia Pathway                                                                                                                     0
## Fasl Cd95l Signaling                                                                                                                       0
## Fatty Acid Metabolism                                                                                                                      0
## Fatty Acids                                                                                                                                0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                0
## Fatty Acyl Coa Biosynthesis                                                                                                                0
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         0
## Fc Epsilon Receptor Fceri Signaling                                                                                                        1
## Fceri Mediated Ca 2 Mobilization                                                                                                           0
## Fceri Mediated Nf Kb Activation                                                                                                            0
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               0
## Fcgr Activation                                                                                                                            0
## Fertilization                                                                                                                              0
## Fgfr1 Ligand Binding And Activation                                                                                                        0
## Fgfr1 Mutant Receptor Activation                                                                                                           0
## Fgfr1b Ligand Binding And Activation                                                                                                       0
## Fgfr1c Ligand Binding And Activation                                                                                                       0
## Fgfr2 Alternative Splicing                                                                                                                 0
## Fgfr2 Ligand Binding And Activation                                                                                                        0
## Fgfr2 Mutant Receptor Activation                                                                                                           0
## Fgfr2b Ligand Binding And Activation                                                                                                       0
## Fgfr2c Ligand Binding And Activation                                                                                                       0
## Fgfr3 Ligand Binding And Activation                                                                                                        0
## Fgfr3b Ligand Binding And Activation                                                                                                       0
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             0
## Flt3 Signaling                                                                                                                             0
## Flt3 Signaling By Cbl Mutants                                                                                                              0
## Flt3 Signaling In Disease                                                                                                                  0
## Flt3 Signaling Through Src Family Kinases                                                                                                  0
## Folding Of Actin By Cct Tric                                                                                                               0
## Formation Of Apoptosome                                                                                                                    0
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  0
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  0
## Formation Of Incision Complex In Gg Ner                                                                                                    0
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               0
## Formation Of Tc Ner Pre Incision Complex                                                                                                   0
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  0
## Formation Of The Cornified Envelope                                                                                                        0
## Formation Of The Early Elongation Complex                                                                                                  0
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     0
## Formation Of Xylulose 5 Phosphate                                                                                                          0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       0
## Foxo Mediated Transcription                                                                                                                0
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            0
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               0
## Free Fatty Acid Receptors                                                                                                                  0
## Free Fatty Acids Regulate Insulin Secretion                                                                                                0
## Frs Mediated Fgfr1 Signaling                                                                                                               0
## Frs Mediated Fgfr2 Signaling                                                                                                               0
## Frs Mediated Fgfr3 Signaling                                                                                                               0
## Frs Mediated Fgfr4 Signaling                                                                                                               0
## Fructose Catabolism                                                                                                                        0
## Fructose Metabolism                                                                                                                        0
## G Alpha 12 13 Signalling Events                                                                                                            0
## G Alpha Q Signalling Events                                                                                                                2
## G Alpha S Signalling Events                                                                                                                0
## G Alpha Z Signalling Events                                                                                                                0
## G Beta Gamma Signalling Through Cdc42                                                                                                      0
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  0
## G Protein Activation                                                                                                                       0
## G Protein Beta Gamma Signalling                                                                                                            0
## G0 And Early G1                                                                                                                            0
## G1 S Dna Damage Checkpoints                                                                                                                0
## G1 S Specific Transcription                                                                                                                0
## G2 M Checkpoints                                                                                                                           0
## G2 M Dna Damage Checkpoint                                                                                                                 0
## G2 M Dna Replication Checkpoint                                                                                                            0
## G2 Phase                                                                                                                                   0
## Gaba B Receptor Activation                                                                                                                 0
## Gaba Receptor Activation                                                                                                                   0
## Gaba Synthesis Release Reuptake And Degradation                                                                                            0
## Galactose Catabolism                                                                                                                       0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    0
## Gap Junction Assembly                                                                                                                      0
## Gap Junction Degradation                                                                                                                   0
## Gap Junction Trafficking And Regulation                                                                                                    0
## Gdp Fucose Biosynthesis                                                                                                                    0
## Gene Silencing By Rna                                                                                                                      0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                0
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   0
## Glucagon Signaling In Metabolic Regulation                                                                                                 0
## Glucagon Type Ligand Receptors                                                                                                             0
## Glucocorticoid Biosynthesis                                                                                                                0
## Gluconeogenesis                                                                                                                            0
## Glucose Metabolism                                                                                                                         0
## Glucuronidation                                                                                                                            0
## Glutamate And Glutamine Metabolism                                                                                                         0
## Glutamate Neurotransmitter Release Cycle                                                                                                   0
## Glutathione Conjugation                                                                                                                    0
## Glutathione Synthesis And Recycling                                                                                                        0
## Glycerophospholipid Biosynthesis                                                                                                           0
## Glycerophospholipid Catabolism                                                                                                             0
## Glycogen Breakdown Glycogenolysis                                                                                                          0
## Glycogen Metabolism                                                                                                                        0
## Glycogen Storage Diseases                                                                                                                  0
## Glycogen Synthesis                                                                                                                         0
## Glycolysis                                                                                                                                 0
## Glycosaminoglycan Metabolism                                                                                                               0
## Glycosphingolipid Metabolism                                                                                                               0
## Glyoxylate Metabolism And Glycine Degradation                                                                                              0
## Golgi Associated Vesicle Biogenesis                                                                                                        0
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        0
## Golgi To Er Retrograde Transport                                                                                                           0
## Gp1b Ix V Activation Signalling                                                                                                            0
## Gpcr Ligand Binding                                                                                                                        7
## Gpvi Mediated Activation Cascade                                                                                                           0
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  0
## Grb7 Events In Erbb2 Signaling                                                                                                             0
## Growth Hormone Receptor Signaling                                                                                                          0
## Hats Acetylate Histones                                                                                                                    0
## Hcmv Late Events                                                                                                                           0
## Hdacs Deacetylate Histones                                                                                                                 0
## Hdl Assembly                                                                                                                               0
## Hdl Clearance                                                                                                                              0
## Hdl Remodeling                                                                                                                             0
## Hdms Demethylate Histones                                                                                                                  0
## Hdr Through Homologous Recombination Hrr                                                                                                   0
## Hdr Through Mmej Alt Nhej                                                                                                                  0
## Hdr Through Single Strand Annealing Ssa                                                                                                    0
## Hedgehog Ligand Biogenesis                                                                                                                 0
## Hedgehog Off State                                                                                                                         0
## Hedgehog On State                                                                                                                          0
## Heme Biosynthesis                                                                                                                          0
## Heme Degradation                                                                                                                           0
## Hemostasis                                                                                                                                 3
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     0
## Histidine Catabolism                                                                                                                       0
## Hiv Elongation Arrest And Recovery                                                                                                         0
## Hiv Infection                                                                                                                              0
## Hiv Life Cycle                                                                                                                             0
## Hiv Transcription Elongation                                                                                                               0
## Hiv Transcription Initiation                                                                                                               0
## Homologous Dna Pairing And Strand Exchange                                                                                                 0
## Homology Directed Repair                                                                                                                   0
## Hormone Ligand Binding Receptors                                                                                                           0
## Host Interactions Of Hiv Factors                                                                                                           0
## Hs Gag Biosynthesis                                                                                                                        0
## Hs Gag Degradation                                                                                                                         0
## Hsf1 Activation                                                                                                                            0
## Hsf1 Dependent Transactivation                                                                                                             0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    0
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       0
## Hyaluronan Biosynthesis And Export                                                                                                         0
## Hyaluronan Metabolism                                                                                                                      0
## Hyaluronan Uptake And Degradation                                                                                                          0
## Hydrolysis Of Lpc                                                                                                                          0
## Ikba Variant Leads To Eda Id                                                                                                               0
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            0
## Inactivation Of Cdc42 And Rac1                                                                                                             0
## Inactivation Of Csf3 G Csf Signaling                                                                                                       0
## Incretin Synthesis Secretion And Inactivation                                                                                              0
## Infection With Mycobacterium Tuberculosis                                                                                                  0
## Infectious Disease                                                                                                                         7
## Influenza Infection                                                                                                                        0
## Inhibition Of Dna Recombination At Telomere                                                                                                0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                0
## Initial Triggering Of Complement                                                                                                           0
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               0
## Innate Immune System                                                                                                                      13
## Inositol Phosphate Metabolism                                                                                                              0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                0
## Insulin Processing                                                                                                                         0
## Insulin Receptor Recycling                                                                                                                 0
## Insulin Receptor Signalling Cascade                                                                                                        0
## Integration Of Energy Metabolism                                                                                                           0
## Integration Of Provirus                                                                                                                    0
## Integrin Cell Surface Interactions                                                                                                         0
## Integrin Signaling                                                                                                                         0
## Interaction Between L1 And Ankyrins                                                                                                        0
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      0
## Interactions Of Rev With Host Cellular Proteins                                                                                            0
## Interactions Of Vpr With Host Cellular Proteins                                                                                            0
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         0
## Interferon Alpha Beta Signaling                                                                                                            0
## Interferon Signaling                                                                                                                       1
## Interleukin 15 Signaling                                                                                                                   0
## Interleukin 2 Family Signaling                                                                                                             0
## Interleukin 2 Signaling                                                                                                                    0
## Interleukin 20 Family Signaling                                                                                                            0
## Interleukin 21 Signaling                                                                                                                   0
## Interleukin 23 Signaling                                                                                                                   0
## Interleukin 27 Signaling                                                                                                                   0
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           0
## Interleukin 35 Signalling                                                                                                                  0
## Interleukin 36 Pathway                                                                                                                     0
## Interleukin 37 Signaling                                                                                                                   0
## Interleukin 7 Signaling                                                                                                                    0
## Interleukin 9 Signaling                                                                                                                    0
## Interleukin Receptor Shc Signaling                                                                                                         0
## Intestinal Absorption                                                                                                                      0
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             0
## Intra Golgi Traffic                                                                                                                        0
## Intracellular Signaling By Second Messengers                                                                                               4
## Intraflagellar Transport                                                                                                                   0
## Intrinsic Pathway For Apoptosis                                                                                                            0
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Inwardly Rectifying K Channels                                                                                                             0
## Ion Channel Transport                                                                                                                      1
## Ion Homeostasis                                                                                                                            0
## Ion Transport By P Type Atpases                                                                                                            0
## Ionotropic Activity Of Kainate Receptors                                                                                                   0
## Irak1 Recruits Ikk Complex                                                                                                                 0
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  0
## Irak4 Deficiency Tlr2 4                                                                                                                    0
## Ire1alpha Activates Chaperones                                                                                                             0
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     0
## Iron Uptake And Transport                                                                                                                  0
## Irs Activation                                                                                                                             0
## Irs Mediated Signalling                                                                                                                    0
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          0
## Josephin Domain Dubs                                                                                                                       0
## Keratan Sulfate Biosynthesis                                                                                                               0
## Keratan Sulfate Degradation                                                                                                                0
## Keratan Sulfate Keratin Metabolism                                                                                                         0
## Keratinization                                                                                                                             0
## Ketone Body Metabolism                                                                                                                     0
## Kinesins                                                                                                                                   0
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     0
## Lagging Strand Synthesis                                                                                                                   0
## Laminin Interactions                                                                                                                       0
## Late Endosomal Microautophagy                                                                                                              0
## Lectin Pathway Of Complement Activation                                                                                                    0
## Leukotriene Receptors                                                                                                                      0
## Lgi Adam Interactions                                                                                                                      0
## Ligand Receptor Interactions                                                                                                               0
## Linoleic Acid La Metabolism                                                                                                                0
## Lipid Particle Organization                                                                                                                0
## Lipophagy                                                                                                                                  0
## Listeria Monocytogenes Entry Into Host Cells                                                                                               0
## Long Term Potentiation                                                                                                                     0
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 0
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     0
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        0
## Lysine Catabolism                                                                                                                          0
## Lysosome Vesicle Biogenesis                                                                                                                0
## Lysosphingolipid And Lpa Receptors                                                                                                         0
## M Phase                                                                                                                                    0
## Map2k And Mapk Activation                                                                                                                  0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   0
## Mapk Family Signaling Cascades                                                                                                             2
## Mapk6 Mapk4 Signaling                                                                                                                      0
## Mastl Facilitates Mitotic Progression                                                                                                      0
## Maturation Of Nucleoprotein                                                                                                                0
## Maturation Of Protein 3a                                                                                                                   0
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     0
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     0
## Meiosis                                                                                                                                    0
## Meiotic Recombination                                                                                                                      0
## Meiotic Synapsis                                                                                                                           0
## Melanin Biosynthesis                                                                                                                       0
## Membrane Trafficking                                                                                                                       2
## Met Activates Pi3k Akt Signaling                                                                                                           0
## Met Activates Ptk2 Signaling                                                                                                               0
## Met Activates Ptpn11                                                                                                                       0
## Met Activates Rap1 And Rac1                                                                                                                0
## Met Activates Ras Signaling                                                                                                                0
## Met Interacts With Tns Proteins                                                                                                            0
## Met Promotes Cell Motility                                                                                                                 0
## Met Receptor Activation                                                                                                                    0
## Met Receptor Recycling                                                                                                                     0
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        0
## Metabolism Of Amine Derived Hormones                                                                                                       0
## Metabolism Of Amino Acids And Derivatives                                                                                                  0
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              0
## Metabolism Of Carbohydrates                                                                                                                0
## Metabolism Of Cofactors                                                                                                                    0
## Metabolism Of Fat Soluble Vitamins                                                                                                         0
## Metabolism Of Folate And Pterines                                                                                                          0
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           0
## Metabolism Of Lipids                                                                                                                       0
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  0
## Metabolism Of Nucleotides                                                                                                                  0
## Metabolism Of Polyamines                                                                                                                   0
## Metabolism Of Porphyrins                                                                                                                   0
## Metabolism Of Rna                                                                                                                          0
## Metabolism Of Steroid Hormones                                                                                                             0
## Metabolism Of Steroids                                                                                                                     0
## Metabolism Of Vitamins And Cofactors                                                                                                       0
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         0
## Metal Ion Slc Transporters                                                                                                                 0
## Metal Sequestration By Antimicrobial Proteins                                                                                              0
## Metalloprotease Dubs                                                                                                                       0
## Metallothioneins Bind Metals                                                                                                               0
## Methionine Salvage Pathway                                                                                                                 0
## Methylation                                                                                                                                0
## Microrna Mirna Biogenesis                                                                                                                  0
## Mineralocorticoid Biosynthesis                                                                                                             0
## Miro Gtpase Cycle                                                                                                                          0
## Miscellaneous Substrates                                                                                                                   0
## Miscellaneous Transport And Binding Events                                                                                                 0
## Mismatch Repair                                                                                                                            0
## Mitochondrial Calcium Ion Transport                                                                                                        0
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         0
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               0
## Mitochondrial Protein Import                                                                                                               0
## Mitochondrial Translation                                                                                                                  0
## Mitochondrial Trna Aminoacylation                                                                                                          0
## Mitochondrial Uncoupling                                                                                                                   0
## Mitophagy                                                                                                                                  0
## Mitotic G1 Phase And G1 S Transition                                                                                                       0
## Mitotic G2 G2 M Phases                                                                                                                     0
## Mitotic Metaphase And Anaphase                                                                                                             0
## Mitotic Prometaphase                                                                                                                       0
## Mitotic Prophase                                                                                                                           0
## Mitotic Spindle Checkpoint                                                                                                                 0
## Mitotic Telophase Cytokinesis                                                                                                              0
## Modulation By Mtb Of Host Immune System                                                                                                    0
## Molecules Associated With Elastic Fibres                                                                                                   0
## Molybdenum Cofactor Biosynthesis                                                                                                           0
## Mrna Capping                                                                                                                               0
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       0
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       0
## Mrna Editing                                                                                                                               0
## Mrna Editing C To U Conversion                                                                                                             0
## Mrna Splicing                                                                                                                              0
## Mrna Splicing Minor Pathway                                                                                                                0
## Mtor Signalling                                                                                                                            0
## Mtorc1 Mediated Signalling                                                                                                                 0
## Mucopolysaccharidoses                                                                                                                      0
## Multifunctional Anion Exchangers                                                                                                           0
## Muscarinic Acetylcholine Receptors                                                                                                         0
## Muscle Contraction                                                                                                                         0
## Myoclonic Epilepsy Of Lafora                                                                                                               0
## Myogenesis                                                                                                                                 0
## N Glycan Antennae Elongation                                                                                                               0
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     0
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                0
## Na Cl Dependent Neurotransmitter Transporters                                                                                              0
## Nade Modulates Death Signalling                                                                                                            0
## Ncam1 Interactions                                                                                                                         0
## Nectin Necl Trans Heterodimerization                                                                                                       0
## Neddylation                                                                                                                                0
## Nef And Signal Transduction                                                                                                                0
## Nef Mediated Cd4 Down Regulation                                                                                                           0
## Nef Mediated Cd8 Down Regulation                                                                                                           0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             0
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          0
## Negative Feedback Regulation Of Mapk Pathway                                                                                               0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 0
## Negative Regulation Of Fgfr1 Signaling                                                                                                     0
## Negative Regulation Of Fgfr2 Signaling                                                                                                     0
## Negative Regulation Of Fgfr3 Signaling                                                                                                     0
## Negative Regulation Of Fgfr4 Signaling                                                                                                     0
## Negative Regulation Of Flt3                                                                                                                0
## Negative Regulation Of Mapk Pathway                                                                                                        0
## Negative Regulation Of Met Activity                                                                                                        0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        0
## Negative Regulation Of Notch4 Signaling                                                                                                    0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 0
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               0
## Nephrin Family Interactions                                                                                                                0
## Nervous System Development                                                                                                                 3
## Netrin 1 Signaling                                                                                                                         0
## Netrin Mediated Repulsion Signals                                                                                                          0
## Neurexins And Neuroligins                                                                                                                  0
## Neurofascin Interactions                                                                                                                   0
## Neuronal System                                                                                                                            1
## Neurotoxicity Of Clostridium Toxins                                                                                                        0
## Neurotransmitter Clearance                                                                                                                 0
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1
## Neurotransmitter Release Cycle                                                                                                             0
## Neutrophil Degranulation                                                                                                                   4
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   0
## Nf Kb Is Activated And Signals Survival                                                                                                    0
## Ngf Independant Trka Activation                                                                                                            0
## Nicotinamide Salvaging                                                                                                                     0
## Nicotinate Metabolism                                                                                                                      0
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  0
## Non Integrin Membrane Ecm Interactions                                                                                                     0
## Noncanonical Activation Of Notch3                                                                                                          0
## Nonhomologous End Joining Nhej                                                                                                             0
## Nonsense Mediated Decay Nmd                                                                                                                0
## Norepinephrine Neurotransmitter Release Cycle                                                                                              0
## Nostrin Mediated Enos Trafficking                                                                                                          0
## Notch Hlh Transcription Pathway                                                                                                            0
## Notch1 Intracellular Domain Regulates Transcription                                                                                        0
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Intracellular Domain Regulates Transcription                                                                                        0
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch4 Intracellular Domain Regulates Transcription                                                                                        0
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            0
## Nrage Signals Death Through Jnk                                                                                                            0
## Nrcam Interactions                                                                                                                         0
## Nrif Signals Cell Death From The Nucleus                                                                                                   0
## Ns1 Mediated Effects On Host Pathways                                                                                                      0
## Ntrk2 Activates Rac1                                                                                                                       0
## Nuclear Envelope Breakdown                                                                                                                 0
## Nuclear Envelope Ne Reassembly                                                                                                             0
## Nuclear Import Of Rev Protein                                                                                                              0
## Nuclear Pore Complex Npc Disassembly                                                                                                       0
## Nuclear Receptor Transcription Pathway                                                                                                     0
## Nuclear Signaling By Erbb4                                                                                                                 0
## Nucleobase Biosynthesis                                                                                                                    0
## Nucleobase Catabolism                                                                                                                      0
## Nucleotide Excision Repair                                                                                                                 0
## Nucleotide Like Purinergic Receptors                                                                                                       0
## Nucleotide Salvage                                                                                                                         0
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          0
## Oas Antiviral Response                                                                                                                     0
## Olfactory Signaling Pathway                                                                                                                0
## Oncogene Induced Senescence                                                                                                                0
## Oncogenic Mapk Signaling                                                                                                                   0
## Opsins                                                                                                                                     0
## Orc1 Removal From Chromatin                                                                                                                0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    0
## Organelle Biogenesis And Maintenance                                                                                                       1
## Organic Anion Transport                                                                                                                    0
## Organic Anion Transporters                                                                                                                 0
## Organic Cation Anion Zwitterion Transport                                                                                                  0
## Organic Cation Transport                                                                                                                   0
## Other Interleukin Signaling                                                                                                                0
## Other Semaphorin Interactions                                                                                                              0
## Ovarian Tumor Domain Proteases                                                                                                             0
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            0
## P2y Receptors                                                                                                                              0
## P38mapk Events                                                                                                                             0
## P75 Ntr Receptor Mediated Signalling                                                                                                       0
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             0
## P75ntr Recruits Signalling Complexes                                                                                                       0
## P75ntr Regulates Axonogenesis                                                                                                              0
## P75ntr Signals Via Nf Kb                                                                                                                   0
## Parasite Infection                                                                                                                         0
## Passive Transport By Aquaporins                                                                                                            0
## Pcna Dependent Long Patch Base Excision Repair                                                                                             0
## Pecam1 Interactions                                                                                                                        0
## Pentose Phosphate Pathway                                                                                                                  0
## Peptide Hormone Biosynthesis                                                                                                               0
## Peptide Hormone Metabolism                                                                                                                 0
## Peroxisomal Lipid Metabolism                                                                                                               0
## Peroxisomal Protein Import                                                                                                                 0
## Pexophagy                                                                                                                                  0
## Phase 0 Rapid Depolarisation                                                                                                               0
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   0
## Phase 2 Plateau Phase                                                                                                                      0
## Phase 3 Rapid Repolarisation                                                                                                               0
## Phase 4 Resting Membrane Potential                                                                                                         0
## Phase I Functionalization Of Compounds                                                                                                     0
## Phase Ii Conjugation Of Compounds                                                                                                          0
## Phenylalanine And Tyrosine Metabolism                                                                                                      0
## Phenylalanine Metabolism                                                                                                                   0
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              0
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 0
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     0
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     0
## Phospholipid Metabolism                                                                                                                    0
## Phosphorylation Of Emi1                                                                                                                    0
## Phosphorylation Of The Apc C                                                                                                               0
## Physiological Factors                                                                                                                      0
## Pi 3k Cascade Fgfr1                                                                                                                        0
## Pi 3k Cascade Fgfr2                                                                                                                        0
## Pi 3k Cascade Fgfr3                                                                                                                        0
## Pi 3k Cascade Fgfr4                                                                                                                        0
## Pi Metabolism                                                                                                                              0
## Pi3k Akt Activation                                                                                                                        0
## Pi3k Events In Erbb4 Signaling                                                                                                             0
## Pi5p Regulates Tp53 Acetylation                                                                                                            0
## Pink1 Prkn Mediated Mitophagy                                                                                                              0
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      0
## Pka Activation In Glucagon Signalling                                                                                                      0
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      0
## Pkmts Methylate Histone Lysines                                                                                                            0
## Plasma Lipoprotein Assembly                                                                                                                0
## Plasma Lipoprotein Remodeling                                                                                                              0
## Platelet Activation Signaling And Aggregation                                                                                              1
## Platelet Adhesion To Exposed Collagen                                                                                                      0
## Platelet Aggregation Plug Formation                                                                                                        0
## Platelet Calcium Homeostasis                                                                                                               0
## Platelet Homeostasis                                                                                                                       0
## Platelet Sensitization By Ldl                                                                                                              0
## Polb Dependent Long Patch Base Excision Repair                                                                                             0
## Polo Like Kinase Mediated Events                                                                                                           0
## Polymerase Switching                                                                                                                       0
## Polymerase Switching On The C Strand Of The Telomere                                                                                       0
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          0
## Post Chaperonin Tubulin Folding Pathway                                                                                                    0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         0
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           0
## Potassium Channels                                                                                                                         0
## Potential Therapeutics For Sars                                                                                                            0
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             0
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   0
## Pre Notch Expression And Processing                                                                                                        0
## Pre Notch Processing In Golgi                                                                                                              0
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          0
## Pregnenolone Biosynthesis                                                                                                                  0
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     0
## Presynaptic Function Of Kainate Receptors                                                                                                  0
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  0
## Processing And Activation Of Sumo                                                                                                          0
## Processing Of Capped Intron Containing Pre Mrna                                                                                            0
## Processing Of Capped Intronless Pre Mrna                                                                                                   0
## Processing Of Dna Double Strand Break Ends                                                                                                 0
## Processing Of Intronless Pre Mrnas                                                                                                         0
## Processing Of Smdt1                                                                                                                        0
## Processive Synthesis On The C Strand Of The Telomere                                                                                       0
## Processive Synthesis On The Lagging Strand                                                                                                 0
## Prolactin Receptor Signaling                                                                                                               0
## Prolonged Erk Activation Events                                                                                                            0
## Propionyl Coa Catabolism                                                                                                                   0
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      0
## Prostanoid Ligand Receptors                                                                                                                0
## Protein Folding                                                                                                                            0
## Protein Localization                                                                                                                       0
## Protein Methylation                                                                                                                        0
## Protein Protein Interactions At Synapses                                                                                                   0
## Protein Repair                                                                                                                             0
## Protein Ubiquitination                                                                                                                     0
## Proton Coupled Monocarboxylate Transport                                                                                                   0
## Pten Regulation                                                                                                                            0
## Ptk6 Expression                                                                                                                            0
## Ptk6 Regulates Cell Cycle                                                                                                                  0
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      0
## Purine Catabolism                                                                                                                          0
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           0
## Purine Salvage                                                                                                                             0
## Pyrimidine Catabolism                                                                                                                      0
## Pyrimidine Salvage                                                                                                                         0
## Pyruvate Metabolism                                                                                                                        0
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              0
## Ra Biosynthesis Pathway                                                                                                                    0
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      0
## Rab Geranylgeranylation                                                                                                                    0
## Rab Regulation Of Trafficking                                                                                                              0
## Rac1 Gtpase Cycle                                                                                                                          0
## Rac2 Gtpase Cycle                                                                                                                          0
## Rac3 Gtpase Cycle                                                                                                                          0
## Raf Activation                                                                                                                             0
## Rap1 Signalling                                                                                                                            0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       0
## Ras Processing                                                                                                                             0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  0
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               0
## Receptor Mediated Mitophagy                                                                                                                0
## Receptor Type Tyrosine Protein Phosphatases                                                                                                0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     0
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           0
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   0
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 0
## Recycling Of Bile Acids And Salts                                                                                                          0
## Recycling Of Eif2 Gdp                                                                                                                      0
## Recycling Pathway Of L1                                                                                                                    0
## Reduction Of Cytosolic Ca Levels                                                                                                           0
## Reelin Signalling Pathway                                                                                                                  0
## Regulated Proteolysis Of P75ntr                                                                                                            0
## Regulation By C Flip                                                                                                                       0
## Regulation Of Bach1 Activity                                                                                                               0
## Regulation Of Beta Cell Development                                                                                                        0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         0
## Regulation Of Expression Of Slits And Robos                                                                                                0
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 0
## Regulation Of Fzd By Ubiquitination                                                                                                        0
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  0
## Regulation Of Gene Expression In Beta Cells                                                                                                0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           0
## Regulation Of Hmox1 Expression And Activity                                                                                                0
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            0
## Regulation Of Ifna Signaling                                                                                                               0
## Regulation Of Ifng Signaling                                                                                                               0
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     0
## Regulation Of Insulin Secretion                                                                                                            0
## Regulation Of Kit Signaling                                                                                                                0
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                0
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        0
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             0
## Regulation Of Pten Gene Transcription                                                                                                      0
## Regulation Of Pten Localization                                                                                                            0
## Regulation Of Pten Mrna Translation                                                                                                        0
## Regulation Of Pten Stability And Activity                                                                                                  0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           0
## Regulation Of Ras By Gaps                                                                                                                  0
## Regulation Of Runx1 Expression And Activity                                                                                                0
## Regulation Of Runx2 Expression And Activity                                                                                                0
## Regulation Of Runx3 Expression And Activity                                                                                                0
## Regulation Of Signaling By Cbl                                                                                                             0
## Regulation Of Signaling By Nodal                                                                                                           0
## Regulation Of Tlr By Endogenous Ligand                                                                                                     0
## Regulation Of Tp53 Activity                                                                                                                0
## Regulation Of Tp53 Activity Through Acetylation                                                                                            0
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            0
## Regulation Of Tp53 Activity Through Methylation                                                                                            0
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        0
## Regulation Of Tp53 Expression And Degradation                                                                                              0
## Relaxin Receptors                                                                                                                          0
## Release Of Apoptotic Factors From The Mitochondria                                                                                         0
## Release Of Hh Np From The Secreting Cell                                                                                                   0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      0
## Repression Of Wnt Target Genes                                                                                                             0
## Reproduction                                                                                                                               0
## Resolution Of Abasic Sites Ap Sites                                                                                                        0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               0
## Resolution Of D Loop Structures                                                                                                            0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          0
## Resolution Of Sister Chromatid Cohesion                                                                                                    0
## Respiratory Electron Transport                                                                                                             0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           0
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          0
## Response Of Mtb To Phagocytosis                                                                                                            0
## Response To Metal Ions                                                                                                                     0
## Ret Signaling                                                                                                                              0
## Retinoid Cycle Disease Events                                                                                                              0
## Retrograde Neurotrophin Signalling                                                                                                         0
## Retrograde Transport At The Trans Golgi Network                                                                                            0
## Reversible Hydration Of Carbon Dioxide                                                                                                     0
## Rho Gtpase Cycle                                                                                                                           0
## Rho Gtpase Effectors                                                                                                                       0
## Rho Gtpases Activate Cit                                                                                                                   0
## Rho Gtpases Activate Formins                                                                                                               0
## Rho Gtpases Activate Iqgaps                                                                                                                0
## Rho Gtpases Activate Ktn1                                                                                                                  0
## Rho Gtpases Activate Nadph Oxidases                                                                                                        0
## Rho Gtpases Activate Paks                                                                                                                  0
## Rho Gtpases Activate Pkns                                                                                                                  0
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               0
## Rho Gtpases Activate Rocks                                                                                                                 0
## Rho Gtpases Activate Wasps And Waves                                                                                                       0
## Rhoa Gtpase Cycle                                                                                                                          0
## Rhob Gtpase Cycle                                                                                                                          0
## Rhobtb Gtpase Cycle                                                                                                                        0
## Rhobtb1 Gtpase Cycle                                                                                                                       0
## Rhobtb2 Gtpase Cycle                                                                                                                       0
## Rhobtb3 Atpase Cycle                                                                                                                       0
## Rhoc Gtpase Cycle                                                                                                                          0
## Rhod Gtpase Cycle                                                                                                                          0
## Rhof Gtpase Cycle                                                                                                                          0
## Rhog Gtpase Cycle                                                                                                                          0
## Rhoh Gtpase Cycle                                                                                                                          0
## Rhoj Gtpase Cycle                                                                                                                          0
## Rhoq Gtpase Cycle                                                                                                                          0
## Rhot1 Gtpase Cycle                                                                                                                         0
## Rhou Gtpase Cycle                                                                                                                          0
## Rhov Gtpase Cycle                                                                                                                          0
## Rna Polymerase I Promoter Escape                                                                                                           0
## Rna Polymerase I Transcription                                                                                                             0
## Rna Polymerase I Transcription Initiation                                                                                                  0
## Rna Polymerase I Transcription Termination                                                                                                 0
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  0
## Rna Polymerase Ii Transcription Termination                                                                                                0
## Rna Polymerase Iii Chain Elongation                                                                                                        0
## Rna Polymerase Iii Transcription                                                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           0
## Rna Polymerase Iii Transcription Termination                                                                                               0
## Rnd1 Gtpase Cycle                                                                                                                          0
## Rnd2 Gtpase Cycle                                                                                                                          0
## Rnd3 Gtpase Cycle                                                                                                                          0
## Robo Receptors Bind Akap5                                                                                                                  0
## Role Of Abl In Robo Slit Signaling                                                                                                         0
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              0
## Role Of Phospholipids In Phagocytosis                                                                                                      0
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            0
## Rora Activates Gene Expression                                                                                                             0
## Ros And Rns Production In Phagocytes                                                                                                       0
## Rrna Modification In The Mitochondrion                                                                                                     0
## Rrna Modification In The Nucleus And Cytosol                                                                                               0
## Rrna Processing                                                                                                                            0
## Rrna Processing In The Mitochondrion                                                                                                       0
## Rsk Activation                                                                                                                             0
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         0
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   0
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           0
## Runx2 Regulates Bone Development                                                                                                           0
## Runx2 Regulates Chondrocyte Maturation                                                                                                     0
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           0
## Runx2 Regulates Osteoblast Differentiation                                                                                                 0
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  0
## Runx3 Regulates Cdkn1a Transcription                                                                                                       0
## Runx3 Regulates Immune Response And Cell Migration                                                                                         0
## Runx3 Regulates Notch Signaling                                                                                                            0
## Runx3 Regulates P14 Arf                                                                                                                    0
## Runx3 Regulates Wnt Signaling                                                                                                              0
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                0
## S Phase                                                                                                                                    0
## Sars Cov 1 Genome Replication And Transcription                                                                                            0
## Sars Cov 1 Infection                                                                                                                       0
## Sars Cov 2 Infection                                                                                                                       0
## Sars Cov Infections                                                                                                                        0
## Scavenging By Class A Receptors                                                                                                            0
## Scavenging By Class B Receptors                                                                                                            0
## Scavenging By Class F Receptors                                                                                                            0
## Scavenging Of Heme From Plasma                                                                                                             0
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            0
## Selective Autophagy                                                                                                                        0
## Selenoamino Acid Metabolism                                                                                                                0
## Sema3a Pak Dependent Axon Repulsion                                                                                                        0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          0
## Sema4d In Semaphorin Signaling                                                                                                             0
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                0
## Semaphorin Interactions                                                                                                                    0
## Sensing Of Dna Double Strand Breaks                                                                                                        0
## Sensory Perception                                                                                                                         0
## Sensory Processing Of Sound                                                                                                                0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             0
## Separation Of Sister Chromatids                                                                                                            0
## Serine Biosynthesis                                                                                                                        0
## Serotonin And Melatonin Biosynthesis                                                                                                       0
## Serotonin Neurotransmitter Release Cycle                                                                                                   0
## Serotonin Receptors                                                                                                                        0
## Shc Mediated Cascade Fgfr1                                                                                                                 0
## Shc Mediated Cascade Fgfr3                                                                                                                 0
## Shc Mediated Cascade Fgfr4                                                                                                                 0
## Shc Related Events Triggered By Igf1r                                                                                                      0
## Shc1 Events In Erbb4 Signaling                                                                                                             0
## Signal Amplification                                                                                                                       0
## Signal Attenuation                                                                                                                         0
## Signal Regulatory Protein Family Interactions                                                                                              0
## Signaling By Activin                                                                                                                       0
## Signaling By Bmp                                                                                                                           0
## Signaling By Braf And Raf Fusions                                                                                                          0
## Signaling By Csf3 G Csf                                                                                                                    0
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   0
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                0
## Signaling By Erythropoietin                                                                                                                0
## Signaling By Fgfr                                                                                                                          0
## Signaling By Fgfr In Disease                                                                                                               0
## Signaling By Fgfr1                                                                                                                         0
## Signaling By Fgfr1 In Disease                                                                                                              0
## Signaling By Fgfr2                                                                                                                         0
## Signaling By Fgfr2 Iiia Tm                                                                                                                 0
## Signaling By Fgfr2 In Disease                                                                                                              0
## Signaling By Fgfr3                                                                                                                         0
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       0
## Signaling By Fgfr4                                                                                                                         0
## Signaling By Fgfr4 In Disease                                                                                                              0
## Signaling By Flt3 Fusion Proteins                                                                                                          0
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      0
## Signaling By Gpcr                                                                                                                          9
## Signaling By Hedgehog                                                                                                                      0
## Signaling By Hippo                                                                                                                         0
## Signaling By Insulin Receptor                                                                                                              0
## Signaling By Kit In Disease                                                                                                                0
## Signaling By Leptin                                                                                                                        0
## Signaling By Lrp5 Mutants                                                                                                                  0
## Signaling By Mapk Mutants                                                                                                                  0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 0
## Signaling By Met                                                                                                                           0
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         0
## Signaling By Mras Complex Mutants                                                                                                          0
## Signaling By Mst1                                                                                                                          0
## Signaling By Nodal                                                                                                                         0
## Signaling By Notch                                                                                                                         2
## Signaling By Notch1                                                                                                                        0
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            0
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          0
## Signaling By Notch4                                                                                                                        0
## Signaling By Ntrk2 Trkb                                                                                                                    0
## Signaling By Ntrk3 Trkc                                                                                                                    0
## Signaling By Nuclear Receptors                                                                                                             4
## Signaling By Pdgf                                                                                                                          0
## Signaling By Pdgfr In Disease                                                                                                              0
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  0
## Signaling By Receptor Tyrosine Kinases                                                                                                     4
## Signaling By Retinoic Acid                                                                                                                 0
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          0
## Signaling By Rnf43 Mutants                                                                                                                 0
## Signaling By Robo Receptors                                                                                                                0
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           0
## Signaling By The B Cell Receptor Bcr                                                                                                       0
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            0
## Signaling By Vegf                                                                                                                          0
## Signaling By Wnt                                                                                                                           1
## Signaling By Wnt In Cancer                                                                                                                 0
## Signalling To Erks                                                                                                                         0
## Signalling To P38 Via Rit And Rin                                                                                                          0
## Signalling To Ras                                                                                                                          0
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       0
## Slc Mediated Transmembrane Transport                                                                                                       0
## Slc Transporter Disorders                                                                                                                  0
## Smac Xiap Regulated Apoptotic Response                                                                                                     0
## Small Interfering Rna Sirna Biogenesis                                                                                                     0
## Smooth Muscle Contraction                                                                                                                  0
## Snrnp Assembly                                                                                                                             0
## Sodium Calcium Exchangers                                                                                                                  0
## Sodium Coupled Phosphate Cotransporters                                                                                                    0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                0
## Sodium Proton Exchangers                                                                                                                   0
## Sos Mediated Signalling                                                                                                                    0
## Sperm Motility And Taxes                                                                                                                   0
## Sphingolipid De Novo Biosynthesis                                                                                                          0
## Sphingolipid Metabolism                                                                                                                    0
## Spry Regulation Of Fgf Signaling                                                                                                           0
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                0
## Stabilization Of P53                                                                                                                       0
## Stat5 Activation                                                                                                                           0
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            0
## Striated Muscle Contraction                                                                                                                0
## Sulfide Oxidation To Sulfate                                                                                                               0
## Sulfur Amino Acid Metabolism                                                                                                               0
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         0
## Sumo Is Proteolytically Processed                                                                                                          0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               0
## Sumoylation Of Chromatin Organization Proteins                                                                                             0
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     0
## Sumoylation Of Dna Replication Proteins                                                                                                    0
## Sumoylation Of Immune Response Proteins                                                                                                    0
## Sumoylation Of Intracellular Receptors                                                                                                     0
## Sumoylation Of Rna Binding Proteins                                                                                                        0
## Sumoylation Of Sumoylation Proteins                                                                                                        0
## Sumoylation Of Transcription Factors                                                                                                       0
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   0
## Suppression Of Apoptosis                                                                                                                   0
## Suppression Of Phagosomal Maturation                                                                                                       0
## Surfactant Metabolism                                                                                                                      0
## Switching Of Origins To A Post Replicative State                                                                                           0
## Synaptic Adhesion Like Molecules                                                                                                           0
## Syndecan Interactions                                                                                                                      0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      0
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   0
## Synthesis Of Bile Acids And Bile Salts                                                                                                     0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       0
## Synthesis Of Diphthamide Eef2                                                                                                              0
## Synthesis Of Dolichyl Phosphate                                                                                                            0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              0
## Synthesis Of Gdp Mannose                                                                                                                   0
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              0
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 0
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    0
## Synthesis Of Ketone Bodies                                                                                                                 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 0
## Synthesis Of Lipoxins Lx                                                                                                                   0
## Synthesis Of Pa                                                                                                                            0
## Synthesis Of Pc                                                                                                                            0
## Synthesis Of Pe                                                                                                                            0
## Synthesis Of Pg                                                                                                                            0
## Synthesis Of Pi                                                                                                                            0
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           0
## Synthesis Of Pips At The Er Membrane                                                                                                       0
## Synthesis Of Pips At The Golgi Membrane                                                                                                    0
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            0
## Synthesis Of Pips At The Plasma Membrane                                                                                                   0
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         0
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 0
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      0
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               0
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 0
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             0
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      0
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   0
## Tachykinin Receptors Bind Tachykinins                                                                                                      0
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      0
## Tandem Pore Domain Potassium Channels                                                                                                      0
## Tbc Rabgaps                                                                                                                                0
## Tcf Dependent Signaling In Response To Wnt                                                                                                 1
## Telomere C Strand Lagging Strand Synthesis                                                                                                 0
## Telomere C Strand Synthesis Initiation                                                                                                     0
## Telomere Extension By Telomerase                                                                                                           0
## Telomere Maintenance                                                                                                                       0
## Terminal Pathway Of Complement                                                                                                             0
## Termination Of Translesion Dna Synthesis                                                                                                   0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         0
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               0
## Tgf Beta Receptor Signaling Activates Smads                                                                                                0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    0
## The Activation Of Arylsulfatases                                                                                                           0
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       0
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               0
## The Fatty Acid Cycling Model                                                                                                               0
## The Nlrp3 Inflammasome                                                                                                                     0
## The Phototransduction Cascade                                                                                                              0
## The Retinoid Cycle In Cones Daylight Vision                                                                                                0
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              0
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            0
## Thromboxane Signalling Through Tp Receptor                                                                                                 0
## Thyroxine Biosynthesis                                                                                                                     0
## Tie2 Signaling                                                                                                                             0
## Tight Junction Interactions                                                                                                                0
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       0
## Tnfr1 Mediated Ceramide Production                                                                                                         0
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    0
## Tp53 Regulates Metabolic Genes                                                                                                             0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           0
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            0
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           0
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           0
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       0
## Traf3 Dependent Irf Activation Pathway                                                                                                     0
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               0
## Traf6 Mediated Irf7 Activation                                                                                                             0
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    0
## Traf6 Mediated Nf Kb Activation                                                                                                            0
## Trafficking Of Ampa Receptors                                                                                                              0
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             0
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        0
## Trail Signaling                                                                                                                            0
## Trans Golgi Network Vesicle Budding                                                                                                        0
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    0
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       0
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       0
## Transcription Of The Hiv Genome                                                                                                            0
## Transcriptional Regulation By E2f6                                                                                                         0
## Transcriptional Regulation By Runx1                                                                                                        0
## Transcriptional Regulation By Runx2                                                                                                        0
## Transcriptional Regulation By Runx3                                                                                                        0
## Transcriptional Regulation By Small Rnas                                                                                                   0
## Transcriptional Regulation By Tp53                                                                                                         1
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       0
## Transcriptional Regulation Of Testis Differentiation                                                                                       0
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              0
## Transferrin Endocytosis And Recycling                                                                                                      0
## Translation                                                                                                                                0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             0
## Translation Of Sars Cov 1 Structural Proteins                                                                                              0
## Translation Of Sars Cov 2 Structural Proteins                                                                                              0
## Translesion Synthesis By Polh                                                                                                              0
## Translesion Synthesis By Polk                                                                                                              0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       0
## Transmission Across Chemical Synapses                                                                                                      1
## Transport And Synthesis Of Paps                                                                                                            0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   0
## Transport Of Connexons To The Plasma Membrane                                                                                              0
## Transport Of Fatty Acids                                                                                                                   0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        0
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              0
## Transport Of Mature Transcript To Cytoplasm                                                                                                0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   0
## Transport Of Nucleotide Sugars                                                                                                             0
## Transport Of Organic Anions                                                                                                                0
## Transport Of Small Molecules                                                                                                               2
## Transport Of The Slbp Dependant Mature Mrna                                                                                                0
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    0
## Transport To The Golgi And Subsequent Modification                                                                                         0
## Trif Mediated Programmed Cell Death                                                                                                        0
## Triglyceride Biosynthesis                                                                                                                  0
## Triglyceride Catabolism                                                                                                                    0
## Triglyceride Metabolism                                                                                                                    0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      0
## Trna Aminoacylation                                                                                                                        0
## Trna Modification In The Mitochondrion                                                                                                     0
## Trna Modification In The Nucleus And Cytosol                                                                                               0
## Trna Processing                                                                                                                            0
## Trna Processing In The Mitochondrion                                                                                                       0
## Trna Processing In The Nucleus                                                                                                             0
## Trp Channels                                                                                                                               0
## Tryptophan Catabolism                                                                                                                      0
## Type I Hemidesmosome Assembly                                                                                                              0
## Tyrosine Catabolism                                                                                                                        0
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        0
## Ub Specific Processing Proteases                                                                                                           2
## Ubiquinol Biosynthesis                                                                                                                     0
## Uch Proteinases                                                                                                                            0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              0
## Unwinding Of Dna                                                                                                                           0
## Uptake And Actions Of Bacterial Toxins                                                                                                     0
## Uptake And Function Of Anthrax Toxins                                                                                                      0
## Uptake And Function Of Diphtheria Toxin                                                                                                    0
## Urea Cycle                                                                                                                                 0
## Vasopressin Like Receptors                                                                                                                 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               0
## Vegf Ligand Receptor Interactions                                                                                                          0
## Vegfr2 Mediated Cell Proliferation                                                                                                         0
## Vegfr2 Mediated Vascular Permeability                                                                                                      0
## Vesicle Mediated Transport                                                                                                                 2
## Viral Messenger Rna Synthesis                                                                                                              0
## Visual Phototransduction                                                                                                                   0
## Vitamin B1 Thiamin Metabolism                                                                                                              0
## Vitamin B2 Riboflavin Metabolism                                                                                                           0
## Vitamin B5 Pantothenate Metabolism                                                                                                         0
## Vitamin C Ascorbate Metabolism                                                                                                             0
## Vitamin D Calciferol Metabolism                                                                                                            0
## Vitamins                                                                                                                                   0
## Vldl Assembly                                                                                                                              0
## Vldl Clearance                                                                                                                             0
## Voltage Gated Potassium Channels                                                                                                           0
## Vxpx Cargo Targeting To Cilium                                                                                                             0
## Wax And Plasmalogen Biosynthesis                                                                                                           0
## Wnt Mediated Activation Of Dvl                                                                                                             0
## Xenobiotics                                                                                                                                0
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              0
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   0
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            0
## Zinc Transporters                                                                                                                          0
##                                                                                                                                      background
## Interleukin 10 Signaling                                                                                                                   1300
## Chemokine Receptors Bind Chemokines                                                                                                        1300
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               1300
## Cd163 Mediating An Anti Inflammatory Response                                                                                              1300
## Interleukin 1 Processing                                                                                                                   1300
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     1300
## Tnfs Bind Their Physiological Receptors                                                                                                    1300
## Interleukin 4 And Interleukin 13 Signaling                                                                                                 1300
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           1300
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               1300
## Mecp2 Regulates Transcription Factors                                                                                                      1300
## Clec7a Inflammasome Pathway                                                                                                                1300
## Fibronectin Matrix Formation                                                                                                               1300
## Ptk6 Promotes Hif1a Stabilization                                                                                                          1300
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1300
## Creb Phosphorylation                                                                                                                       1300
## Purinergic Signaling In Leishmaniasis Infection                                                                                            1300
## Pyroptosis                                                                                                                                 1300
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1300
## Interleukin 18 Signaling                                                                                                                   1300
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1300
## Pd 1 Signaling                                                                                                                             1300
## Extra Nuclear Estrogen Signaling                                                                                                           1300
## Egfr Interacts With Phospholipase C Gamma                                                                                                  1300
## Egfr Transactivation By Gastrin                                                                                                            1300
## Mapk1 Erk2 Activation                                                                                                                      1300
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          1300
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        1300
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1300
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1300
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1300
## Mapk3 Erk1 Activation                                                                                                                      1300
## Regulated Necrosis                                                                                                                         1300
## Interleukin 6 Signaling                                                                                                                    1300
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1300
## Cd28 Dependent Vav1 Pathway                                                                                                                1300
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1300
## Killing Mechanisms                                                                                                                         1300
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1300
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1300
## Vldlr Internalisation And Degradation                                                                                                      1300
## Dissolution Of Fibrin Clot                                                                                                                 1300
## Erbb2 Activates Ptk6 Signaling                                                                                                             1300
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      1300
## Trafficking And Processing Of Endosomal Tlr                                                                                                1300
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1300
## Ngf Stimulated Transcription                                                                                                               1300
## Shc1 Events In Egfr Signaling                                                                                                              1300
## Constitutive Signaling By Egfrviii                                                                                                         1300
## Erbb2 Regulates Cell Motility                                                                                                              1300
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1300
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            1300
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1300
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 1300
## Grb2 Events In Erbb2 Signaling                                                                                                             1300
## Pi3k Events In Erbb2 Signaling                                                                                                             1300
## Signaling By Erbb2 Ecd Mutants                                                                                                             1300
## Sting Mediated Induction Of Host Immune Responses                                                                                          1300
## Sumoylation Of Dna Methylation Proteins                                                                                                    1300
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              1300
## Gab1 Signalosome                                                                                                                           1300
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      1300
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1300
## Costimulation By The Cd28 Family                                                                                                           1300
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           1300
## Ldl Clearance                                                                                                                              1300
## Pka Mediated Phosphorylation Of Creb                                                                                                       1300
## Ctla4 Inhibitory Signaling                                                                                                                 1300
## Inflammasomes                                                                                                                              1300
## Signal Transduction By L1                                                                                                                  1300
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 1300
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1300
## Shc1 Events In Erbb2 Signaling                                                                                                             1300
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   1300
## Raf Independent Mapk1 3 Activation                                                                                                         1300
## Termination Of O Glycan Biosynthesis                                                                                                       1300
## Interleukin 6 Family Signaling                                                                                                             1300
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   1300
## Signaling By Egfr In Cancer                                                                                                                1300
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1300
## Dectin 2 Family                                                                                                                            1300
## Signaling By Erbb2 In Cancer                                                                                                               1300
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1300
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           1300
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1300
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1300
## Downregulation Of Erbb2 Signaling                                                                                                          1300
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  1300
## Ripk1 Mediated Regulated Necrosis                                                                                                          1300
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               1300
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   1300
## Diseases Of Immune System                                                                                                                  1300
## Egfr Downregulation                                                                                                                        1300
## Myd88 Independent Tlr4 Cascade                                                                                                             1300
## Perk Regulates Gene Expression                                                                                                             1300
## Regulation Of Mecp2 Expression And Activity                                                                                                1300
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     1300
## Activation Of Matrix Metalloproteinases                                                                                                    1300
## Cd28 Co Stimulation                                                                                                                        1300
## Plasma Lipoprotein Clearance                                                                                                               1300
## Sialic Acid Metabolism                                                                                                                     1300
## Signaling By Notch2                                                                                                                        1300
## Peptide Ligand Binding Receptors                                                                                                           1300
## Circadian Clock                                                                                                                            1300
## Regulation Of Tnfr1 Signaling                                                                                                              1300
## Interleukin 17 Signaling                                                                                                                   1300
## Nod1 2 Signaling Pathway                                                                                                                   1300
## Pi3k Akt Signaling In Cancer                                                                                                               1300
## Ca Dependent Events                                                                                                                        1300
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         1300
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1300
## Generation Of Second Messenger Molecules                                                                                                   1300
## Senescence Associated Secretory Phenotype Sasp                                                                                             1300
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          1300
## Dag And Ip3 Signaling                                                                                                                      1300
## Negative Regulation Of The Pi3k Akt Network                                                                                                1300
## Transcriptional Regulation By Ventx                                                                                                        1300
## Signaling By Scf Kit                                                                                                                       1300
## Sumoylation Of Transcription Cofactors                                                                                                     1300
## Tnf Signaling                                                                                                                              1300
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 1300
## Dap12 Interactions                                                                                                                         1300
## Interleukin 12 Signaling                                                                                                                   1300
## Toll Like Receptor Cascades                                                                                                                1300
## Heme Signaling                                                                                                                             1300
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    1300
## Signaling By Egfr                                                                                                                          1300
## Signaling By Erbb2                                                                                                                         1300
## Signaling By Notch3                                                                                                                        1300
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     1300
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          1300
## Fcgr3a Mediated Il10 Synthesis                                                                                                             1300
## G Protein Mediated Events                                                                                                                  1300
## Signaling By Ptk6                                                                                                                          1300
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1300
## Interleukin 12 Family Signaling                                                                                                            1300
## Interleukin 1 Family Signaling                                                                                                             1300
## Signaling By Erbb4                                                                                                                         1300
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               1300
## Ca2 Pathway                                                                                                                                1300
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        1300
## O Linked Glycosylation Of Mucins                                                                                                           1300
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       1300
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           1300
## Asymmetric Localization Of Pcp Proteins                                                                                                    1300
## Collagen Degradation                                                                                                                       1300
## Dna Methylation                                                                                                                            1300
## Ncam Signaling For Neurite Out Growth                                                                                                      1300
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            1300
## Transcriptional Regulation By Mecp2                                                                                                        1300
## Diseases Associated With O Glycosylation Of Proteins                                                                                       1300
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1300
## Prc2 Methylates Histones And Dna                                                                                                           1300
## Signaling By Interleukins                                                                                                                  1300
## Signaling By Tgf Beta Receptor Complex                                                                                                     1300
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         1300
## Ecm Proteoglycans                                                                                                                          1300
## Rmts Methylate Histone Arginines                                                                                                           1300
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    1300
## G Alpha I Signalling Events                                                                                                                1300
## C Type Lectin Receptors Clrs                                                                                                               1300
## Collagen Formation                                                                                                                         1300
## Esr Mediated Signaling                                                                                                                     1300
## Fceri Mediated Mapk Activation                                                                                                             1300
## Hcmv Early Events                                                                                                                          1300
## Opioid Signalling                                                                                                                          1300
## Signaling By Ntrks                                                                                                                         1300
## Transcriptional Regulation Of Granulopoiesis                                                                                               1300
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1300
## Class B 2 Secretin Family Receptors                                                                                                        1300
## Clathrin Mediated Endocytosis                                                                                                              1300
## Clec7a Dectin 1 Signaling                                                                                                                  1300
## Eph Ephrin Signaling                                                                                                                       1300
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   1300
## Interferon Gamma Signaling                                                                                                                 1300
## Leishmania Infection                                                                                                                       1300
## Mitochondrial Biogenesis                                                                                                                   1300
## Pcp Ce Pathway                                                                                                                             1300
## Unfolded Protein Response Upr                                                                                                              1300
## Amyloid Fiber Formation                                                                                                                    1300
## Cellular Senescence                                                                                                                        1300
## Diseases Of Programmed Cell Death                                                                                                          1300
## Hcmv Infection                                                                                                                             1300
## Interleukin 1 Signaling                                                                                                                    1300
## O Linked Glycosylation                                                                                                                     1300
## Programmed Cell Death                                                                                                                      1300
## Signaling By Tgfb Family Members                                                                                                           1300
## Stimuli Sensing Channels                                                                                                                   1300
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         1300
## Cell Surface Interactions At The Vascular Wall                                                                                             1300
## Class A 1 Rhodopsin Like Receptors                                                                                                         1300
## Cytokine Signaling In Immune System                                                                                                        1300
## Death Receptor Signalling                                                                                                                  1300
## Degradation Of The Extracellular Matrix                                                                                                    1300
## L1cam Interactions                                                                                                                         1300
## Mhc Class Ii Antigen Presentation                                                                                                          1300
## Oxidative Stress Induced Senescence                                                                                                        1300
## Response To Elevated Platelet Cytosolic Ca2                                                                                                1300
## Sumoylation                                                                                                                                1300
## Tcr Signaling                                                                                                                              1300
## 2 Ltr Circle Formation                                                                                                                     1300
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            1300
## Abacavir Metabolism                                                                                                                        1300
## Abacavir Transmembrane Transport                                                                                                           1300
## Abacavir Transport And Metabolism                                                                                                          1300
## Abc Family Proteins Mediated Transport                                                                                                     1300
## Abc Transporter Disorders                                                                                                                  1300
## Abc Transporters In Lipid Homeostasis                                                                                                      1300
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           1300
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                1300
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              1300
## Acetylcholine Binding And Downstream Events                                                                                                1300
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     1300
## Acetylcholine Neurotransmitter Release Cycle                                                                                               1300
## Acetylcholine Regulates Insulin Secretion                                                                                                  1300
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        1300
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           1300
## Activated Ntrk2 Signals Through Cdk5                                                                                                       1300
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              1300
## Activated Ntrk2 Signals Through Fyn                                                                                                        1300
## Activated Ntrk2 Signals Through Pi3k                                                                                                       1300
## Activated Ntrk2 Signals Through Ras                                                                                                        1300
## Activated Ntrk3 Signals Through Pi3k                                                                                                       1300
## Activated Ntrk3 Signals Through Ras                                                                                                        1300
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              1300
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                1300
## Activation Of Ampk Downstream Of Nmdars                                                                                                    1300
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       1300
## Activation Of Atr In Response To Replication Stress                                                                                        1300
## Activation Of Bad And Translocation To Mitochondria                                                                                        1300
## Activation Of Bh3 Only Proteins                                                                                                            1300
## Activation Of C3 And C5                                                                                                                    1300
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                1300
## Activation Of Gene Expression By Srebf Srebp                                                                                               1300
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       1300
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     1300
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  1300
## Activation Of Noxa And Translocation To Mitochondria                                                                                       1300
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       1300
## Activation Of Puma And Translocation To Mitochondria                                                                                       1300
## Activation Of Rac1                                                                                                                         1300
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    1300
## Activation Of Ras In B Cells                                                                                                               1300
## Activation Of Smo                                                                                                                          1300
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      1300
## Activation Of The Phototransduction Cascade                                                                                                1300
## Activation Of The Pre Replicative Complex                                                                                                  1300
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               1300
## Activation Of Trka Receptors                                                                                                               1300
## Acyl Chain Remodeling Of Cl                                                                                                                1300
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       1300
## Acyl Chain Remodelling Of Pc                                                                                                               1300
## Acyl Chain Remodelling Of Pe                                                                                                               1300
## Acyl Chain Remodelling Of Pg                                                                                                               1300
## Acyl Chain Remodelling Of Pi                                                                                                               1300
## Acyl Chain Remodelling Of Ps                                                                                                               1300
## Adaptive Immune System                                                                                                                     1300
## Adenylate Cyclase Activating Pathway                                                                                                       1300
## Adenylate Cyclase Inhibitory Pathway                                                                                                       1300
## Adherens Junctions Interactions                                                                                                            1300
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  1300
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 1300
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        1300
## Adrenoceptors                                                                                                                              1300
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       1300
## Aflatoxin Activation And Detoxification                                                                                                    1300
## Aggrephagy                                                                                                                                 1300
## Akt Phosphorylates Targets In The Cytosol                                                                                                  1300
## Alpha Defensins                                                                                                                            1300
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 1300
## Alpha Oxidation Of Phytanate                                                                                                               1300
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   1300
## Alternative Complement Activation                                                                                                          1300
## Amine Ligand Binding Receptors                                                                                                             1300
## Amino Acid Conjugation                                                                                                                     1300
## Amino Acid Transport Across The Plasma Membrane                                                                                            1300
## Amino Acids Regulate Mtorc1                                                                                                                1300
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   1300
## Anchoring Fibril Formation                                                                                                                 1300
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         1300
## Androgen Biosynthesis                                                                                                                      1300
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           1300
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   1300
## Antigen Processing Cross Presentation                                                                                                      1300
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   1300
## Antimicrobial Peptides                                                                                                                     1300
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                1300
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               1300
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   1300
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          1300
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    1300
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     1300
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            1300
## Apoptosis                                                                                                                                  1300
## Apoptosis Induced Dna Fragmentation                                                                                                        1300
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               1300
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    1300
## Apoptotic Execution Phase                                                                                                                  1300
## Apoptotic Factor Mediated Response                                                                                                         1300
## Aquaporin Mediated Transport                                                                                                               1300
## Arachidonate Production From Dag                                                                                                           1300
## Arachidonic Acid Metabolism                                                                                                                1300
## Arms Mediated Activation                                                                                                                   1300
## Aryl Hydrocarbon Receptor Signalling                                                                                                       1300
## Asparagine N Linked Glycosylation                                                                                                          1300
## Aspartate And Asparagine Metabolism                                                                                                        1300
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   1300
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           1300
## Assembly Of The Hiv Virion                                                                                                                 1300
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   1300
## Assembly Of The Pre Replicative Complex                                                                                                    1300
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           1300
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  1300
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       1300
## Attachment And Entry                                                                                                                       1300
## Attachment Of Gpi Anchor To Upar                                                                                                           1300
## Attenuation Phase                                                                                                                          1300
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  1300
## Aurka Activation By Tpx2                                                                                                                   1300
## Autophagy                                                                                                                                  1300
## B Wich Complex Positively Regulates Rrna Expression                                                                                        1300
## Base Excision Repair                                                                                                                       1300
## Base Excision Repair Ap Site Formation                                                                                                     1300
## Basigin Interactions                                                                                                                       1300
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  1300
## Beta Catenin Independent Wnt Signaling                                                                                                     1300
## Beta Catenin Phosphorylation Cascade                                                                                                       1300
## Beta Defensins                                                                                                                             1300
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               1300
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         1300
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             1300
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          1300
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             1300
## Beta Oxidation Of Pristanoyl Coa                                                                                                           1300
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              1300
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               1300
## Bicarbonate Transporters                                                                                                                   1300
## Bile Acid And Bile Salt Metabolism                                                                                                         1300
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       1300
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         1300
## Biological Oxidations                                                                                                                      1300
## Biosynthesis Of Epa Derived Spms                                                                                                           1300
## Biosynthesis Of Maresin Like Spms                                                                                                          1300
## Biosynthesis Of Maresins                                                                                                                   1300
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    1300
## Biotin Transport And Metabolism                                                                                                            1300
## Blood Group Systems Biosynthesis                                                                                                           1300
## Branched Chain Amino Acid Catabolism                                                                                                       1300
## Budding And Maturation Of Hiv Virion                                                                                                       1300
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                1300
## Butyrophilin Btn Family Interactions                                                                                                       1300
## Ca2 Activated K Channels                                                                                                                   1300
## Calcineurin Activates Nfat                                                                                                                 1300
## Calcitonin Like Ligand Receptors                                                                                                           1300
## Calnexin Calreticulin Cycle                                                                                                                1300
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                1300
## Cardiac Conduction                                                                                                                         1300
## Cargo Concentration In The Er                                                                                                              1300
## Cargo Trafficking To The Periciliary Membrane                                                                                              1300
## Carnitine Metabolism                                                                                                                       1300
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           1300
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       1300
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              1300
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         1300
## Cation Coupled Chloride Cotransporters                                                                                                     1300
## Cd209 Dc Sign Signaling                                                                                                                    1300
## Cd22 Mediated Bcr Regulation                                                                                                               1300
## Cdc42 Gtpase Cycle                                                                                                                         1300
## Cdc6 Association With The Orc Origin Complex                                                                                               1300
## Cell Cell Communication                                                                                                                    1300
## Cell Cell Junction Organization                                                                                                            1300
## Cell Cycle                                                                                                                                 1300
## Cell Cycle Checkpoints                                                                                                                     1300
## Cell Cycle Mitotic                                                                                                                         1300
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              1300
## Cell Extracellular Matrix Interactions                                                                                                     1300
## Cell Junction Organization                                                                                                                 1300
## Cellular Hexose Transport                                                                                                                  1300
## Cellular Response To Chemical Stress                                                                                                       1300
## Cellular Response To Heat Stress                                                                                                           1300
## Cellular Response To Hypoxia                                                                                                               1300
## Cellular Response To Starvation                                                                                                            1300
## Cellular Responses To External Stimuli                                                                                                     1300
## Cgmp Effects                                                                                                                               1300
## Chaperone Mediated Autophagy                                                                                                               1300
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              1300
## Chl1 Interactions                                                                                                                          1300
## Cholesterol Biosynthesis                                                                                                                   1300
## Choline Catabolism                                                                                                                         1300
## Chondroitin Sulfate Biosynthesis                                                                                                           1300
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            1300
## Chrebp Activates Metabolic Gene Expression                                                                                                 1300
## Chromatin Modifying Enzymes                                                                                                                1300
## Chromosome Maintenance                                                                                                                     1300
## Chylomicron Assembly                                                                                                                       1300
## Chylomicron Clearance                                                                                                                      1300
## Chylomicron Remodeling                                                                                                                     1300
## Cilium Assembly                                                                                                                            1300
## Citric Acid Cycle Tca Cycle                                                                                                                1300
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       1300
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       1300
## Class I Peroxisomal Membrane Protein Import                                                                                                1300
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    1300
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         1300
## Coenzyme A Biosynthesis                                                                                                                    1300
## Cohesin Loading Onto Chromatin                                                                                                             1300
## Collagen Biosynthesis And Modifying Enzymes                                                                                                1300
## Collagen Chain Trimerization                                                                                                               1300
## Common Pathway Of Fibrin Clot Formation                                                                                                    1300
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 1300
## Complement Cascade                                                                                                                         1300
## Complex I Biogenesis                                                                                                                       1300
## Condensation Of Prometaphase Chromosomes                                                                                                   1300
## Condensation Of Prophase Chromosomes                                                                                                       1300
## Conjugation Of Benzoate With Glycine                                                                                                       1300
## Constitutive Signaling By Overexpressed Erbb2                                                                                              1300
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 1300
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           1300
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         1300
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              1300
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            1300
## Copi Mediated Anterograde Transport                                                                                                        1300
## Copii Mediated Vesicle Transport                                                                                                           1300
## Creatine Metabolism                                                                                                                        1300
## Creation Of C4 And C2 Activators                                                                                                           1300
## Creb3 Factors Activate Genes                                                                                                               1300
## Cristae Formation                                                                                                                          1300
## Crmps In Sema3a Signaling                                                                                                                  1300
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            1300
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 1300
## Crosslinking Of Collagen Fibrils                                                                                                           1300
## Cs Ds Degradation                                                                                                                          1300
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    1300
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           1300
## Cyclin D Associated Events In G1                                                                                                           1300
## Cyp2e1 Reactions                                                                                                                           1300
## Cytochrome C Mediated Apoptotic Response                                                                                                   1300
## Cytochrome P450 Arranged By Substrate Type                                                                                                 1300
## Cytoprotection By Hmox1                                                                                                                    1300
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     1300
## Cytosolic Sulfonation Of Small Molecules                                                                                                   1300
## Cytosolic Trna Aminoacylation                                                                                                              1300
## Dap12 Signaling                                                                                                                            1300
## Darpp 32 Events                                                                                                                            1300
## Dcc Mediated Attractive Signaling                                                                                                          1300
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    1300
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   1300
## Deadenylation Dependent Mrna Decay                                                                                                         1300
## Deadenylation Of Mrna                                                                                                                      1300
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             1300
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                1300
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                1300
## Defective Cftr Causes Cystic Fibrosis                                                                                                      1300
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       1300
## Defective Chst3 Causes Sedcjd                                                                                                              1300
## Defective Chst6 Causes Mcdc1                                                                                                               1300
## Defective Chsy1 Causes Tpbs                                                                                                                1300
## Defective Csf2rb Causes Smdp5                                                                                                              1300
## Defective Ext2 Causes Exostoses 2                                                                                                          1300
## Defective F9 Activation                                                                                                                    1300
## Defective Factor Ix Causes Hemophilia B                                                                                                    1300
## Defective Factor Viii Causes Hemophilia A                                                                                                  1300
## Defective Lfng Causes Scdo3                                                                                                                1300
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                1300
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  1300
## Defects In Biotin Btn Metabolism                                                                                                           1300
## Defects In Cobalamin B12 Metabolism                                                                                                        1300
## Defects In Vitamin And Cofactor Metabolism                                                                                                 1300
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   1300
## Defensins                                                                                                                                  1300
## Degradation Of Axin                                                                                                                        1300
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     1300
## Degradation Of Cysteine And Homocysteine                                                                                                   1300
## Degradation Of Dvl                                                                                                                         1300
## Degradation Of Gli1 By The Proteasome                                                                                                      1300
## Depolymerisation Of The Nuclear Lamina                                                                                                     1300
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           1300
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                1300
## Dermatan Sulfate Biosynthesis                                                                                                              1300
## Detoxification Of Reactive Oxygen Species                                                                                                  1300
## Deubiquitination                                                                                                                           1300
## Developmental Biology                                                                                                                      1300
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              1300
## Digestion                                                                                                                                  1300
## Digestion And Absorption                                                                                                                   1300
## Digestion Of Dietary Carbohydrate                                                                                                          1300
## Digestion Of Dietary Lipid                                                                                                                 1300
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             1300
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      1300
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              1300
## Diseases Associated With N Glycosylation Of Proteins                                                                                       1300
## Diseases Associated With Surfactant Metabolism                                                                                             1300
## Diseases Of Base Excision Repair                                                                                                           1300
## Diseases Of Carbohydrate Metabolism                                                                                                        1300
## Diseases Of Dna Repair                                                                                                                     1300
## Diseases Of Glycosylation                                                                                                                  1300
## Diseases Of Metabolism                                                                                                                     1300
## Diseases Of Mismatch Repair Mmr                                                                                                            1300
## Diseases Of Mitotic Cell Cycle                                                                                                             1300
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           1300
## Disinhibition Of Snare Formation                                                                                                           1300
## Disorders Of Transmembrane Transporters                                                                                                    1300
## Displacement Of Dna Glycosylase By Apex1                                                                                                   1300
## Dna Damage Bypass                                                                                                                          1300
## Dna Damage Recognition In Gg Ner                                                                                                           1300
## Dna Damage Reversal                                                                                                                        1300
## Dna Damage Telomere Stress Induced Senescence                                                                                              1300
## Dna Double Strand Break Repair                                                                                                             1300
## Dna Double Strand Break Response                                                                                                           1300
## Dna Repair                                                                                                                                 1300
## Dna Replication                                                                                                                            1300
## Dna Replication Initiation                                                                                                                 1300
## Dna Replication Pre Initiation                                                                                                             1300
## Dna Strand Elongation                                                                                                                      1300
## Dopamine Neurotransmitter Release Cycle                                                                                                    1300
## Dopamine Receptors                                                                                                                         1300
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    1300
## Downregulation Of Erbb4 Signaling                                                                                                          1300
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   1300
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              1300
## Downstream Signal Transduction                                                                                                             1300
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         1300
## Downstream Signaling Of Activated Fgfr1                                                                                                    1300
## Downstream Signaling Of Activated Fgfr2                                                                                                    1300
## Downstream Signaling Of Activated Fgfr3                                                                                                    1300
## Downstream Signaling Of Activated Fgfr4                                                                                                    1300
## Dscam Interactions                                                                                                                         1300
## Dual Incision In Gg Ner                                                                                                                    1300
## Dual Incision In Tc Ner                                                                                                                    1300
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                1300
## E2f Mediated Regulation Of Dna Replication                                                                                                 1300
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          1300
## Early Phase Of Hiv Life Cycle                                                                                                              1300
## Effects Of Pip2 Hydrolysis                                                                                                                 1300
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             1300
## Eicosanoid Ligand Binding Receptors                                                                                                        1300
## Eicosanoids                                                                                                                                1300
## Elastic Fibre Formation                                                                                                                    1300
## Electric Transmission Across Gap Junctions                                                                                                 1300
## Elevation Of Cytosolic Ca2 Levels                                                                                                          1300
## Endogenous Sterols                                                                                                                         1300
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     1300
## Endosomal Vacuolar Pathway                                                                                                                 1300
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           1300
## Enos Activation                                                                                                                            1300
## Epha Mediated Growth Cone Collapse                                                                                                         1300
## Ephb Mediated Forward Signaling                                                                                                            1300
## Ephrin Signaling                                                                                                                           1300
## Epigenetic Regulation Of Gene Expression                                                                                                   1300
## Er Quality Control Compartment Erqc                                                                                                        1300
## Er To Golgi Anterograde Transport                                                                                                          1300
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                1300
## Erk Mapk Targets                                                                                                                           1300
## Erks Are Inactivated                                                                                                                       1300
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     1300
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     1300
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    1300
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        1300
## Erythropoietin Activates Ras                                                                                                               1300
## Erythropoietin Activates Stat5                                                                                                             1300
## Establishment Of Sister Chromatid Cohesion                                                                                                 1300
## Estrogen Biosynthesis                                                                                                                      1300
## Estrogen Dependent Gene Expression                                                                                                         1300
## Estrogen Stimulated Signaling Through Prkcz                                                                                                1300
## Ethanol Oxidation                                                                                                                          1300
## Eukaryotic Translation Elongation                                                                                                          1300
## Eukaryotic Translation Initiation                                                                                                          1300
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            1300
## Extension Of Telomeres                                                                                                                     1300
## Extracellular Matrix Organization                                                                                                          1300
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 1300
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      1300
## Fanconi Anemia Pathway                                                                                                                     1300
## Fasl Cd95l Signaling                                                                                                                       1300
## Fatty Acid Metabolism                                                                                                                      1300
## Fatty Acids                                                                                                                                1300
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                1300
## Fatty Acyl Coa Biosynthesis                                                                                                                1300
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         1300
## Fc Epsilon Receptor Fceri Signaling                                                                                                        1300
## Fceri Mediated Ca 2 Mobilization                                                                                                           1300
## Fceri Mediated Nf Kb Activation                                                                                                            1300
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               1300
## Fcgr Activation                                                                                                                            1300
## Fertilization                                                                                                                              1300
## Fgfr1 Ligand Binding And Activation                                                                                                        1300
## Fgfr1 Mutant Receptor Activation                                                                                                           1300
## Fgfr1b Ligand Binding And Activation                                                                                                       1300
## Fgfr1c Ligand Binding And Activation                                                                                                       1300
## Fgfr2 Alternative Splicing                                                                                                                 1300
## Fgfr2 Ligand Binding And Activation                                                                                                        1300
## Fgfr2 Mutant Receptor Activation                                                                                                           1300
## Fgfr2b Ligand Binding And Activation                                                                                                       1300
## Fgfr2c Ligand Binding And Activation                                                                                                       1300
## Fgfr3 Ligand Binding And Activation                                                                                                        1300
## Fgfr3b Ligand Binding And Activation                                                                                                       1300
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       1300
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             1300
## Flt3 Signaling                                                                                                                             1300
## Flt3 Signaling By Cbl Mutants                                                                                                              1300
## Flt3 Signaling In Disease                                                                                                                  1300
## Flt3 Signaling Through Src Family Kinases                                                                                                  1300
## Folding Of Actin By Cct Tric                                                                                                               1300
## Formation Of Apoptosome                                                                                                                    1300
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  1300
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  1300
## Formation Of Incision Complex In Gg Ner                                                                                                    1300
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 1300
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               1300
## Formation Of Tc Ner Pre Incision Complex                                                                                                   1300
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  1300
## Formation Of The Cornified Envelope                                                                                                        1300
## Formation Of The Early Elongation Complex                                                                                                  1300
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     1300
## Formation Of Xylulose 5 Phosphate                                                                                                          1300
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       1300
## Foxo Mediated Transcription                                                                                                                1300
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            1300
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            1300
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               1300
## Free Fatty Acid Receptors                                                                                                                  1300
## Free Fatty Acids Regulate Insulin Secretion                                                                                                1300
## Frs Mediated Fgfr1 Signaling                                                                                                               1300
## Frs Mediated Fgfr2 Signaling                                                                                                               1300
## Frs Mediated Fgfr3 Signaling                                                                                                               1300
## Frs Mediated Fgfr4 Signaling                                                                                                               1300
## Fructose Catabolism                                                                                                                        1300
## Fructose Metabolism                                                                                                                        1300
## G Alpha 12 13 Signalling Events                                                                                                            1300
## G Alpha Q Signalling Events                                                                                                                1300
## G Alpha S Signalling Events                                                                                                                1300
## G Alpha Z Signalling Events                                                                                                                1300
## G Beta Gamma Signalling Through Cdc42                                                                                                      1300
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  1300
## G Protein Activation                                                                                                                       1300
## G Protein Beta Gamma Signalling                                                                                                            1300
## G0 And Early G1                                                                                                                            1300
## G1 S Dna Damage Checkpoints                                                                                                                1300
## G1 S Specific Transcription                                                                                                                1300
## G2 M Checkpoints                                                                                                                           1300
## G2 M Dna Damage Checkpoint                                                                                                                 1300
## G2 M Dna Replication Checkpoint                                                                                                            1300
## G2 Phase                                                                                                                                   1300
## Gaba B Receptor Activation                                                                                                                 1300
## Gaba Receptor Activation                                                                                                                   1300
## Gaba Synthesis Release Reuptake And Degradation                                                                                            1300
## Galactose Catabolism                                                                                                                       1300
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        1300
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      1300
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    1300
## Gap Junction Assembly                                                                                                                      1300
## Gap Junction Degradation                                                                                                                   1300
## Gap Junction Trafficking And Regulation                                                                                                    1300
## Gdp Fucose Biosynthesis                                                                                                                    1300
## Gene Silencing By Rna                                                                                                                      1300
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                1300
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            1300
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   1300
## Glucagon Signaling In Metabolic Regulation                                                                                                 1300
## Glucagon Type Ligand Receptors                                                                                                             1300
## Glucocorticoid Biosynthesis                                                                                                                1300
## Gluconeogenesis                                                                                                                            1300
## Glucose Metabolism                                                                                                                         1300
## Glucuronidation                                                                                                                            1300
## Glutamate And Glutamine Metabolism                                                                                                         1300
## Glutamate Neurotransmitter Release Cycle                                                                                                   1300
## Glutathione Conjugation                                                                                                                    1300
## Glutathione Synthesis And Recycling                                                                                                        1300
## Glycerophospholipid Biosynthesis                                                                                                           1300
## Glycerophospholipid Catabolism                                                                                                             1300
## Glycogen Breakdown Glycogenolysis                                                                                                          1300
## Glycogen Metabolism                                                                                                                        1300
## Glycogen Storage Diseases                                                                                                                  1300
## Glycogen Synthesis                                                                                                                         1300
## Glycolysis                                                                                                                                 1300
## Glycosaminoglycan Metabolism                                                                                                               1300
## Glycosphingolipid Metabolism                                                                                                               1300
## Glyoxylate Metabolism And Glycine Degradation                                                                                              1300
## Golgi Associated Vesicle Biogenesis                                                                                                        1300
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        1300
## Golgi To Er Retrograde Transport                                                                                                           1300
## Gp1b Ix V Activation Signalling                                                                                                            1300
## Gpcr Ligand Binding                                                                                                                        1300
## Gpvi Mediated Activation Cascade                                                                                                           1300
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  1300
## Grb7 Events In Erbb2 Signaling                                                                                                             1300
## Growth Hormone Receptor Signaling                                                                                                          1300
## Hats Acetylate Histones                                                                                                                    1300
## Hcmv Late Events                                                                                                                           1300
## Hdacs Deacetylate Histones                                                                                                                 1300
## Hdl Assembly                                                                                                                               1300
## Hdl Clearance                                                                                                                              1300
## Hdl Remodeling                                                                                                                             1300
## Hdms Demethylate Histones                                                                                                                  1300
## Hdr Through Homologous Recombination Hrr                                                                                                   1300
## Hdr Through Mmej Alt Nhej                                                                                                                  1300
## Hdr Through Single Strand Annealing Ssa                                                                                                    1300
## Hedgehog Ligand Biogenesis                                                                                                                 1300
## Hedgehog Off State                                                                                                                         1300
## Hedgehog On State                                                                                                                          1300
## Heme Biosynthesis                                                                                                                          1300
## Heme Degradation                                                                                                                           1300
## Hemostasis                                                                                                                                 1300
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  1300
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 1300
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    1300
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     1300
## Histidine Catabolism                                                                                                                       1300
## Hiv Elongation Arrest And Recovery                                                                                                         1300
## Hiv Infection                                                                                                                              1300
## Hiv Life Cycle                                                                                                                             1300
## Hiv Transcription Elongation                                                                                                               1300
## Hiv Transcription Initiation                                                                                                               1300
## Homologous Dna Pairing And Strand Exchange                                                                                                 1300
## Homology Directed Repair                                                                                                                   1300
## Hormone Ligand Binding Receptors                                                                                                           1300
## Host Interactions Of Hiv Factors                                                                                                           1300
## Hs Gag Biosynthesis                                                                                                                        1300
## Hs Gag Degradation                                                                                                                         1300
## Hsf1 Activation                                                                                                                            1300
## Hsf1 Dependent Transactivation                                                                                                             1300
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    1300
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       1300
## Hyaluronan Biosynthesis And Export                                                                                                         1300
## Hyaluronan Metabolism                                                                                                                      1300
## Hyaluronan Uptake And Degradation                                                                                                          1300
## Hydrolysis Of Lpc                                                                                                                          1300
## Ikba Variant Leads To Eda Id                                                                                                               1300
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            1300
## Inactivation Of Cdc42 And Rac1                                                                                                             1300
## Inactivation Of Csf3 G Csf Signaling                                                                                                       1300
## Incretin Synthesis Secretion And Inactivation                                                                                              1300
## Infection With Mycobacterium Tuberculosis                                                                                                  1300
## Infectious Disease                                                                                                                         1300
## Influenza Infection                                                                                                                        1300
## Inhibition Of Dna Recombination At Telomere                                                                                                1300
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            1300
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                1300
## Initial Triggering Of Complement                                                                                                           1300
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              1300
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              1300
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               1300
## Innate Immune System                                                                                                                       1300
## Inositol Phosphate Metabolism                                                                                                              1300
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                1300
## Insulin Processing                                                                                                                         1300
## Insulin Receptor Recycling                                                                                                                 1300
## Insulin Receptor Signalling Cascade                                                                                                        1300
## Integration Of Energy Metabolism                                                                                                           1300
## Integration Of Provirus                                                                                                                    1300
## Integrin Cell Surface Interactions                                                                                                         1300
## Integrin Signaling                                                                                                                         1300
## Interaction Between L1 And Ankyrins                                                                                                        1300
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      1300
## Interactions Of Rev With Host Cellular Proteins                                                                                            1300
## Interactions Of Vpr With Host Cellular Proteins                                                                                            1300
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         1300
## Interferon Alpha Beta Signaling                                                                                                            1300
## Interferon Signaling                                                                                                                       1300
## Interleukin 15 Signaling                                                                                                                   1300
## Interleukin 2 Family Signaling                                                                                                             1300
## Interleukin 2 Signaling                                                                                                                    1300
## Interleukin 20 Family Signaling                                                                                                            1300
## Interleukin 21 Signaling                                                                                                                   1300
## Interleukin 23 Signaling                                                                                                                   1300
## Interleukin 27 Signaling                                                                                                                   1300
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           1300
## Interleukin 35 Signalling                                                                                                                  1300
## Interleukin 36 Pathway                                                                                                                     1300
## Interleukin 37 Signaling                                                                                                                   1300
## Interleukin 7 Signaling                                                                                                                    1300
## Interleukin 9 Signaling                                                                                                                    1300
## Interleukin Receptor Shc Signaling                                                                                                         1300
## Intestinal Absorption                                                                                                                      1300
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             1300
## Intra Golgi Traffic                                                                                                                        1300
## Intracellular Signaling By Second Messengers                                                                                               1300
## Intraflagellar Transport                                                                                                                   1300
## Intrinsic Pathway For Apoptosis                                                                                                            1300
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 1300
## Inwardly Rectifying K Channels                                                                                                             1300
## Ion Channel Transport                                                                                                                      1300
## Ion Homeostasis                                                                                                                            1300
## Ion Transport By P Type Atpases                                                                                                            1300
## Ionotropic Activity Of Kainate Receptors                                                                                                   1300
## Irak1 Recruits Ikk Complex                                                                                                                 1300
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  1300
## Irak4 Deficiency Tlr2 4                                                                                                                    1300
## Ire1alpha Activates Chaperones                                                                                                             1300
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     1300
## Iron Uptake And Transport                                                                                                                  1300
## Irs Activation                                                                                                                             1300
## Irs Mediated Signalling                                                                                                                    1300
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          1300
## Josephin Domain Dubs                                                                                                                       1300
## Keratan Sulfate Biosynthesis                                                                                                               1300
## Keratan Sulfate Degradation                                                                                                                1300
## Keratan Sulfate Keratin Metabolism                                                                                                         1300
## Keratinization                                                                                                                             1300
## Ketone Body Metabolism                                                                                                                     1300
## Kinesins                                                                                                                                   1300
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     1300
## Lagging Strand Synthesis                                                                                                                   1300
## Laminin Interactions                                                                                                                       1300
## Late Endosomal Microautophagy                                                                                                              1300
## Lectin Pathway Of Complement Activation                                                                                                    1300
## Leukotriene Receptors                                                                                                                      1300
## Lgi Adam Interactions                                                                                                                      1300
## Ligand Receptor Interactions                                                                                                               1300
## Linoleic Acid La Metabolism                                                                                                                1300
## Lipid Particle Organization                                                                                                                1300
## Lipophagy                                                                                                                                  1300
## Listeria Monocytogenes Entry Into Host Cells                                                                                               1300
## Long Term Potentiation                                                                                                                     1300
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 1300
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      1300
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     1300
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     1300
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        1300
## Lysine Catabolism                                                                                                                          1300
## Lysosome Vesicle Biogenesis                                                                                                                1300
## Lysosphingolipid And Lpa Receptors                                                                                                         1300
## M Phase                                                                                                                                    1300
## Map2k And Mapk Activation                                                                                                                  1300
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   1300
## Mapk Family Signaling Cascades                                                                                                             1300
## Mapk6 Mapk4 Signaling                                                                                                                      1300
## Mastl Facilitates Mitotic Progression                                                                                                      1300
## Maturation Of Nucleoprotein                                                                                                                1300
## Maturation Of Protein 3a                                                                                                                   1300
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     1300
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     1300
## Meiosis                                                                                                                                    1300
## Meiotic Recombination                                                                                                                      1300
## Meiotic Synapsis                                                                                                                           1300
## Melanin Biosynthesis                                                                                                                       1300
## Membrane Trafficking                                                                                                                       1300
## Met Activates Pi3k Akt Signaling                                                                                                           1300
## Met Activates Ptk2 Signaling                                                                                                               1300
## Met Activates Ptpn11                                                                                                                       1300
## Met Activates Rap1 And Rac1                                                                                                                1300
## Met Activates Ras Signaling                                                                                                                1300
## Met Interacts With Tns Proteins                                                                                                            1300
## Met Promotes Cell Motility                                                                                                                 1300
## Met Receptor Activation                                                                                                                    1300
## Met Receptor Recycling                                                                                                                     1300
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        1300
## Metabolism Of Amine Derived Hormones                                                                                                       1300
## Metabolism Of Amino Acids And Derivatives                                                                                                  1300
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              1300
## Metabolism Of Carbohydrates                                                                                                                1300
## Metabolism Of Cofactors                                                                                                                    1300
## Metabolism Of Fat Soluble Vitamins                                                                                                         1300
## Metabolism Of Folate And Pterines                                                                                                          1300
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           1300
## Metabolism Of Lipids                                                                                                                       1300
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  1300
## Metabolism Of Nucleotides                                                                                                                  1300
## Metabolism Of Polyamines                                                                                                                   1300
## Metabolism Of Porphyrins                                                                                                                   1300
## Metabolism Of Rna                                                                                                                          1300
## Metabolism Of Steroid Hormones                                                                                                             1300
## Metabolism Of Steroids                                                                                                                     1300
## Metabolism Of Vitamins And Cofactors                                                                                                       1300
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         1300
## Metal Ion Slc Transporters                                                                                                                 1300
## Metal Sequestration By Antimicrobial Proteins                                                                                              1300
## Metalloprotease Dubs                                                                                                                       1300
## Metallothioneins Bind Metals                                                                                                               1300
## Methionine Salvage Pathway                                                                                                                 1300
## Methylation                                                                                                                                1300
## Microrna Mirna Biogenesis                                                                                                                  1300
## Mineralocorticoid Biosynthesis                                                                                                             1300
## Miro Gtpase Cycle                                                                                                                          1300
## Miscellaneous Substrates                                                                                                                   1300
## Miscellaneous Transport And Binding Events                                                                                                 1300
## Mismatch Repair                                                                                                                            1300
## Mitochondrial Calcium Ion Transport                                                                                                        1300
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    1300
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           1300
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         1300
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               1300
## Mitochondrial Protein Import                                                                                                               1300
## Mitochondrial Translation                                                                                                                  1300
## Mitochondrial Trna Aminoacylation                                                                                                          1300
## Mitochondrial Uncoupling                                                                                                                   1300
## Mitophagy                                                                                                                                  1300
## Mitotic G1 Phase And G1 S Transition                                                                                                       1300
## Mitotic G2 G2 M Phases                                                                                                                     1300
## Mitotic Metaphase And Anaphase                                                                                                             1300
## Mitotic Prometaphase                                                                                                                       1300
## Mitotic Prophase                                                                                                                           1300
## Mitotic Spindle Checkpoint                                                                                                                 1300
## Mitotic Telophase Cytokinesis                                                                                                              1300
## Modulation By Mtb Of Host Immune System                                                                                                    1300
## Molecules Associated With Elastic Fibres                                                                                                   1300
## Molybdenum Cofactor Biosynthesis                                                                                                           1300
## Mrna Capping                                                                                                                               1300
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       1300
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       1300
## Mrna Editing                                                                                                                               1300
## Mrna Editing C To U Conversion                                                                                                             1300
## Mrna Splicing                                                                                                                              1300
## Mrna Splicing Minor Pathway                                                                                                                1300
## Mtor Signalling                                                                                                                            1300
## Mtorc1 Mediated Signalling                                                                                                                 1300
## Mucopolysaccharidoses                                                                                                                      1300
## Multifunctional Anion Exchangers                                                                                                           1300
## Muscarinic Acetylcholine Receptors                                                                                                         1300
## Muscle Contraction                                                                                                                         1300
## Myoclonic Epilepsy Of Lafora                                                                                                               1300
## Myogenesis                                                                                                                                 1300
## N Glycan Antennae Elongation                                                                                                               1300
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     1300
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          1300
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                1300
## Na Cl Dependent Neurotransmitter Transporters                                                                                              1300
## Nade Modulates Death Signalling                                                                                                            1300
## Ncam1 Interactions                                                                                                                         1300
## Nectin Necl Trans Heterodimerization                                                                                                       1300
## Neddylation                                                                                                                                1300
## Nef And Signal Transduction                                                                                                                1300
## Nef Mediated Cd4 Down Regulation                                                                                                           1300
## Nef Mediated Cd8 Down Regulation                                                                                                           1300
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 1300
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             1300
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          1300
## Negative Feedback Regulation Of Mapk Pathway                                                                                               1300
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 1300
## Negative Regulation Of Fgfr1 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr2 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr3 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr4 Signaling                                                                                                     1300
## Negative Regulation Of Flt3                                                                                                                1300
## Negative Regulation Of Mapk Pathway                                                                                                        1300
## Negative Regulation Of Met Activity                                                                                                        1300
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        1300
## Negative Regulation Of Notch4 Signaling                                                                                                    1300
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 1300
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               1300
## Nephrin Family Interactions                                                                                                                1300
## Nervous System Development                                                                                                                 1300
## Netrin 1 Signaling                                                                                                                         1300
## Netrin Mediated Repulsion Signals                                                                                                          1300
## Neurexins And Neuroligins                                                                                                                  1300
## Neurofascin Interactions                                                                                                                   1300
## Neuronal System                                                                                                                            1300
## Neurotoxicity Of Clostridium Toxins                                                                                                        1300
## Neurotransmitter Clearance                                                                                                                 1300
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1300
## Neurotransmitter Release Cycle                                                                                                             1300
## Neutrophil Degranulation                                                                                                                   1300
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   1300
## Nf Kb Is Activated And Signals Survival                                                                                                    1300
## Ngf Independant Trka Activation                                                                                                            1300
## Nicotinamide Salvaging                                                                                                                     1300
## Nicotinate Metabolism                                                                                                                      1300
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  1300
## Non Integrin Membrane Ecm Interactions                                                                                                     1300
## Noncanonical Activation Of Notch3                                                                                                          1300
## Nonhomologous End Joining Nhej                                                                                                             1300
## Nonsense Mediated Decay Nmd                                                                                                                1300
## Norepinephrine Neurotransmitter Release Cycle                                                                                              1300
## Nostrin Mediated Enos Trafficking                                                                                                          1300
## Notch Hlh Transcription Pathway                                                                                                            1300
## Notch1 Intracellular Domain Regulates Transcription                                                                                        1300
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Notch3 Intracellular Domain Regulates Transcription                                                                                        1300
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Notch4 Intracellular Domain Regulates Transcription                                                                                        1300
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           1300
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            1300
## Nrage Signals Death Through Jnk                                                                                                            1300
## Nrcam Interactions                                                                                                                         1300
## Nrif Signals Cell Death From The Nucleus                                                                                                   1300
## Ns1 Mediated Effects On Host Pathways                                                                                                      1300
## Ntrk2 Activates Rac1                                                                                                                       1300
## Nuclear Envelope Breakdown                                                                                                                 1300
## Nuclear Envelope Ne Reassembly                                                                                                             1300
## Nuclear Import Of Rev Protein                                                                                                              1300
## Nuclear Pore Complex Npc Disassembly                                                                                                       1300
## Nuclear Receptor Transcription Pathway                                                                                                     1300
## Nuclear Signaling By Erbb4                                                                                                                 1300
## Nucleobase Biosynthesis                                                                                                                    1300
## Nucleobase Catabolism                                                                                                                      1300
## Nucleotide Excision Repair                                                                                                                 1300
## Nucleotide Like Purinergic Receptors                                                                                                       1300
## Nucleotide Salvage                                                                                                                         1300
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          1300
## Oas Antiviral Response                                                                                                                     1300
## Olfactory Signaling Pathway                                                                                                                1300
## Oncogene Induced Senescence                                                                                                                1300
## Oncogenic Mapk Signaling                                                                                                                   1300
## Opsins                                                                                                                                     1300
## Orc1 Removal From Chromatin                                                                                                                1300
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    1300
## Organelle Biogenesis And Maintenance                                                                                                       1300
## Organic Anion Transport                                                                                                                    1300
## Organic Anion Transporters                                                                                                                 1300
## Organic Cation Anion Zwitterion Transport                                                                                                  1300
## Organic Cation Transport                                                                                                                   1300
## Other Interleukin Signaling                                                                                                                1300
## Other Semaphorin Interactions                                                                                                              1300
## Ovarian Tumor Domain Proteases                                                                                                             1300
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            1300
## P2y Receptors                                                                                                                              1300
## P38mapk Events                                                                                                                             1300
## P75 Ntr Receptor Mediated Signalling                                                                                                       1300
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             1300
## P75ntr Recruits Signalling Complexes                                                                                                       1300
## P75ntr Regulates Axonogenesis                                                                                                              1300
## P75ntr Signals Via Nf Kb                                                                                                                   1300
## Parasite Infection                                                                                                                         1300
## Passive Transport By Aquaporins                                                                                                            1300
## Pcna Dependent Long Patch Base Excision Repair                                                                                             1300
## Pecam1 Interactions                                                                                                                        1300
## Pentose Phosphate Pathway                                                                                                                  1300
## Peptide Hormone Biosynthesis                                                                                                               1300
## Peptide Hormone Metabolism                                                                                                                 1300
## Peroxisomal Lipid Metabolism                                                                                                               1300
## Peroxisomal Protein Import                                                                                                                 1300
## Pexophagy                                                                                                                                  1300
## Phase 0 Rapid Depolarisation                                                                                                               1300
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   1300
## Phase 2 Plateau Phase                                                                                                                      1300
## Phase 3 Rapid Repolarisation                                                                                                               1300
## Phase 4 Resting Membrane Potential                                                                                                         1300
## Phase I Functionalization Of Compounds                                                                                                     1300
## Phase Ii Conjugation Of Compounds                                                                                                          1300
## Phenylalanine And Tyrosine Metabolism                                                                                                      1300
## Phenylalanine Metabolism                                                                                                                   1300
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              1300
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 1300
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     1300
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     1300
## Phospholipid Metabolism                                                                                                                    1300
## Phosphorylation Of Emi1                                                                                                                    1300
## Phosphorylation Of The Apc C                                                                                                               1300
## Physiological Factors                                                                                                                      1300
## Pi 3k Cascade Fgfr1                                                                                                                        1300
## Pi 3k Cascade Fgfr2                                                                                                                        1300
## Pi 3k Cascade Fgfr3                                                                                                                        1300
## Pi 3k Cascade Fgfr4                                                                                                                        1300
## Pi Metabolism                                                                                                                              1300
## Pi3k Akt Activation                                                                                                                        1300
## Pi3k Events In Erbb4 Signaling                                                                                                             1300
## Pi5p Regulates Tp53 Acetylation                                                                                                            1300
## Pink1 Prkn Mediated Mitophagy                                                                                                              1300
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      1300
## Pka Activation In Glucagon Signalling                                                                                                      1300
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      1300
## Pkmts Methylate Histone Lysines                                                                                                            1300
## Plasma Lipoprotein Assembly                                                                                                                1300
## Plasma Lipoprotein Remodeling                                                                                                              1300
## Platelet Activation Signaling And Aggregation                                                                                              1300
## Platelet Adhesion To Exposed Collagen                                                                                                      1300
## Platelet Aggregation Plug Formation                                                                                                        1300
## Platelet Calcium Homeostasis                                                                                                               1300
## Platelet Homeostasis                                                                                                                       1300
## Platelet Sensitization By Ldl                                                                                                              1300
## Polb Dependent Long Patch Base Excision Repair                                                                                             1300
## Polo Like Kinase Mediated Events                                                                                                           1300
## Polymerase Switching                                                                                                                       1300
## Polymerase Switching On The C Strand Of The Telomere                                                                                       1300
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          1300
## Post Chaperonin Tubulin Folding Pathway                                                                                                    1300
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         1300
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           1300
## Potassium Channels                                                                                                                         1300
## Potential Therapeutics For Sars                                                                                                            1300
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             1300
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            1300
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   1300
## Pre Notch Expression And Processing                                                                                                        1300
## Pre Notch Processing In Golgi                                                                                                              1300
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          1300
## Pregnenolone Biosynthesis                                                                                                                  1300
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     1300
## Presynaptic Function Of Kainate Receptors                                                                                                  1300
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  1300
## Processing And Activation Of Sumo                                                                                                          1300
## Processing Of Capped Intron Containing Pre Mrna                                                                                            1300
## Processing Of Capped Intronless Pre Mrna                                                                                                   1300
## Processing Of Dna Double Strand Break Ends                                                                                                 1300
## Processing Of Intronless Pre Mrnas                                                                                                         1300
## Processing Of Smdt1                                                                                                                        1300
## Processive Synthesis On The C Strand Of The Telomere                                                                                       1300
## Processive Synthesis On The Lagging Strand                                                                                                 1300
## Prolactin Receptor Signaling                                                                                                               1300
## Prolonged Erk Activation Events                                                                                                            1300
## Propionyl Coa Catabolism                                                                                                                   1300
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      1300
## Prostanoid Ligand Receptors                                                                                                                1300
## Protein Folding                                                                                                                            1300
## Protein Localization                                                                                                                       1300
## Protein Methylation                                                                                                                        1300
## Protein Protein Interactions At Synapses                                                                                                   1300
## Protein Repair                                                                                                                             1300
## Protein Ubiquitination                                                                                                                     1300
## Proton Coupled Monocarboxylate Transport                                                                                                   1300
## Pten Regulation                                                                                                                            1300
## Ptk6 Expression                                                                                                                            1300
## Ptk6 Regulates Cell Cycle                                                                                                                  1300
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         1300
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      1300
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      1300
## Purine Catabolism                                                                                                                          1300
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           1300
## Purine Salvage                                                                                                                             1300
## Pyrimidine Catabolism                                                                                                                      1300
## Pyrimidine Salvage                                                                                                                         1300
## Pyruvate Metabolism                                                                                                                        1300
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              1300
## Ra Biosynthesis Pathway                                                                                                                    1300
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      1300
## Rab Geranylgeranylation                                                                                                                    1300
## Rab Regulation Of Trafficking                                                                                                              1300
## Rac1 Gtpase Cycle                                                                                                                          1300
## Rac2 Gtpase Cycle                                                                                                                          1300
## Rac3 Gtpase Cycle                                                                                                                          1300
## Raf Activation                                                                                                                             1300
## Rap1 Signalling                                                                                                                            1300
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       1300
## Ras Processing                                                                                                                             1300
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  1300
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               1300
## Receptor Mediated Mitophagy                                                                                                                1300
## Receptor Type Tyrosine Protein Phosphatases                                                                                                1300
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     1300
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           1300
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   1300
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 1300
## Recycling Of Bile Acids And Salts                                                                                                          1300
## Recycling Of Eif2 Gdp                                                                                                                      1300
## Recycling Pathway Of L1                                                                                                                    1300
## Reduction Of Cytosolic Ca Levels                                                                                                           1300
## Reelin Signalling Pathway                                                                                                                  1300
## Regulated Proteolysis Of P75ntr                                                                                                            1300
## Regulation By C Flip                                                                                                                       1300
## Regulation Of Bach1 Activity                                                                                                               1300
## Regulation Of Beta Cell Development                                                                                                        1300
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      1300
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                1300
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         1300
## Regulation Of Expression Of Slits And Robos                                                                                                1300
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 1300
## Regulation Of Fzd By Ubiquitination                                                                                                        1300
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  1300
## Regulation Of Gene Expression In Beta Cells                                                                                                1300
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          1300
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              1300
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         1300
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                1300
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           1300
## Regulation Of Hmox1 Expression And Activity                                                                                                1300
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            1300
## Regulation Of Ifna Signaling                                                                                                               1300
## Regulation Of Ifng Signaling                                                                                                               1300
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     1300
## Regulation Of Insulin Secretion                                                                                                            1300
## Regulation Of Kit Signaling                                                                                                                1300
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                1300
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   1300
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        1300
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             1300
## Regulation Of Pten Gene Transcription                                                                                                      1300
## Regulation Of Pten Localization                                                                                                            1300
## Regulation Of Pten Mrna Translation                                                                                                        1300
## Regulation Of Pten Stability And Activity                                                                                                  1300
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           1300
## Regulation Of Ras By Gaps                                                                                                                  1300
## Regulation Of Runx1 Expression And Activity                                                                                                1300
## Regulation Of Runx2 Expression And Activity                                                                                                1300
## Regulation Of Runx3 Expression And Activity                                                                                                1300
## Regulation Of Signaling By Cbl                                                                                                             1300
## Regulation Of Signaling By Nodal                                                                                                           1300
## Regulation Of Tlr By Endogenous Ligand                                                                                                     1300
## Regulation Of Tp53 Activity                                                                                                                1300
## Regulation Of Tp53 Activity Through Acetylation                                                                                            1300
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            1300
## Regulation Of Tp53 Activity Through Methylation                                                                                            1300
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        1300
## Regulation Of Tp53 Expression And Degradation                                                                                              1300
## Relaxin Receptors                                                                                                                          1300
## Release Of Apoptotic Factors From The Mitochondria                                                                                         1300
## Release Of Hh Np From The Secreting Cell                                                                                                   1300
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      1300
## Repression Of Wnt Target Genes                                                                                                             1300
## Reproduction                                                                                                                               1300
## Resolution Of Abasic Sites Ap Sites                                                                                                        1300
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               1300
## Resolution Of D Loop Structures                                                                                                            1300
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          1300
## Resolution Of Sister Chromatid Cohesion                                                                                                    1300
## Respiratory Electron Transport                                                                                                             1300
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           1300
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 1300
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          1300
## Response Of Mtb To Phagocytosis                                                                                                            1300
## Response To Metal Ions                                                                                                                     1300
## Ret Signaling                                                                                                                              1300
## Retinoid Cycle Disease Events                                                                                                              1300
## Retrograde Neurotrophin Signalling                                                                                                         1300
## Retrograde Transport At The Trans Golgi Network                                                                                            1300
## Reversible Hydration Of Carbon Dioxide                                                                                                     1300
## Rho Gtpase Cycle                                                                                                                           1300
## Rho Gtpase Effectors                                                                                                                       1300
## Rho Gtpases Activate Cit                                                                                                                   1300
## Rho Gtpases Activate Formins                                                                                                               1300
## Rho Gtpases Activate Iqgaps                                                                                                                1300
## Rho Gtpases Activate Ktn1                                                                                                                  1300
## Rho Gtpases Activate Nadph Oxidases                                                                                                        1300
## Rho Gtpases Activate Paks                                                                                                                  1300
## Rho Gtpases Activate Pkns                                                                                                                  1300
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               1300
## Rho Gtpases Activate Rocks                                                                                                                 1300
## Rho Gtpases Activate Wasps And Waves                                                                                                       1300
## Rhoa Gtpase Cycle                                                                                                                          1300
## Rhob Gtpase Cycle                                                                                                                          1300
## Rhobtb Gtpase Cycle                                                                                                                        1300
## Rhobtb1 Gtpase Cycle                                                                                                                       1300
## Rhobtb2 Gtpase Cycle                                                                                                                       1300
## Rhobtb3 Atpase Cycle                                                                                                                       1300
## Rhoc Gtpase Cycle                                                                                                                          1300
## Rhod Gtpase Cycle                                                                                                                          1300
## Rhof Gtpase Cycle                                                                                                                          1300
## Rhog Gtpase Cycle                                                                                                                          1300
## Rhoh Gtpase Cycle                                                                                                                          1300
## Rhoj Gtpase Cycle                                                                                                                          1300
## Rhoq Gtpase Cycle                                                                                                                          1300
## Rhot1 Gtpase Cycle                                                                                                                         1300
## Rhou Gtpase Cycle                                                                                                                          1300
## Rhov Gtpase Cycle                                                                                                                          1300
## Rna Polymerase I Promoter Escape                                                                                                           1300
## Rna Polymerase I Transcription                                                                                                             1300
## Rna Polymerase I Transcription Initiation                                                                                                  1300
## Rna Polymerase I Transcription Termination                                                                                                 1300
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  1300
## Rna Polymerase Ii Transcription Termination                                                                                                1300
## Rna Polymerase Iii Chain Elongation                                                                                                        1300
## Rna Polymerase Iii Transcription                                                                                                           1300
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           1300
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           1300
## Rna Polymerase Iii Transcription Termination                                                                                               1300
## Rnd1 Gtpase Cycle                                                                                                                          1300
## Rnd2 Gtpase Cycle                                                                                                                          1300
## Rnd3 Gtpase Cycle                                                                                                                          1300
## Robo Receptors Bind Akap5                                                                                                                  1300
## Role Of Abl In Robo Slit Signaling                                                                                                         1300
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              1300
## Role Of Phospholipids In Phagocytosis                                                                                                      1300
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            1300
## Rora Activates Gene Expression                                                                                                             1300
## Ros And Rns Production In Phagocytes                                                                                                       1300
## Rrna Modification In The Mitochondrion                                                                                                     1300
## Rrna Modification In The Nucleus And Cytosol                                                                                               1300
## Rrna Processing                                                                                                                            1300
## Rrna Processing In The Mitochondrion                                                                                                       1300
## Rsk Activation                                                                                                                             1300
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  1300
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         1300
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   1300
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                1300
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      1300
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        1300
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   1300
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           1300
## Runx2 Regulates Bone Development                                                                                                           1300
## Runx2 Regulates Chondrocyte Maturation                                                                                                     1300
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           1300
## Runx2 Regulates Osteoblast Differentiation                                                                                                 1300
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  1300
## Runx3 Regulates Cdkn1a Transcription                                                                                                       1300
## Runx3 Regulates Immune Response And Cell Migration                                                                                         1300
## Runx3 Regulates Notch Signaling                                                                                                            1300
## Runx3 Regulates P14 Arf                                                                                                                    1300
## Runx3 Regulates Wnt Signaling                                                                                                              1300
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                1300
## S Phase                                                                                                                                    1300
## Sars Cov 1 Genome Replication And Transcription                                                                                            1300
## Sars Cov 1 Infection                                                                                                                       1300
## Sars Cov 2 Infection                                                                                                                       1300
## Sars Cov Infections                                                                                                                        1300
## Scavenging By Class A Receptors                                                                                                            1300
## Scavenging By Class B Receptors                                                                                                            1300
## Scavenging By Class F Receptors                                                                                                            1300
## Scavenging Of Heme From Plasma                                                                                                             1300
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   1300
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            1300
## Selective Autophagy                                                                                                                        1300
## Selenoamino Acid Metabolism                                                                                                                1300
## Sema3a Pak Dependent Axon Repulsion                                                                                                        1300
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          1300
## Sema4d In Semaphorin Signaling                                                                                                             1300
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     1300
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                1300
## Semaphorin Interactions                                                                                                                    1300
## Sensing Of Dna Double Strand Breaks                                                                                                        1300
## Sensory Perception                                                                                                                         1300
## Sensory Processing Of Sound                                                                                                                1300
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             1300
## Separation Of Sister Chromatids                                                                                                            1300
## Serine Biosynthesis                                                                                                                        1300
## Serotonin And Melatonin Biosynthesis                                                                                                       1300
## Serotonin Neurotransmitter Release Cycle                                                                                                   1300
## Serotonin Receptors                                                                                                                        1300
## Shc Mediated Cascade Fgfr1                                                                                                                 1300
## Shc Mediated Cascade Fgfr3                                                                                                                 1300
## Shc Mediated Cascade Fgfr4                                                                                                                 1300
## Shc Related Events Triggered By Igf1r                                                                                                      1300
## Shc1 Events In Erbb4 Signaling                                                                                                             1300
## Signal Amplification                                                                                                                       1300
## Signal Attenuation                                                                                                                         1300
## Signal Regulatory Protein Family Interactions                                                                                              1300
## Signaling By Activin                                                                                                                       1300
## Signaling By Bmp                                                                                                                           1300
## Signaling By Braf And Raf Fusions                                                                                                          1300
## Signaling By Csf3 G Csf                                                                                                                    1300
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   1300
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                1300
## Signaling By Erythropoietin                                                                                                                1300
## Signaling By Fgfr                                                                                                                          1300
## Signaling By Fgfr In Disease                                                                                                               1300
## Signaling By Fgfr1                                                                                                                         1300
## Signaling By Fgfr1 In Disease                                                                                                              1300
## Signaling By Fgfr2                                                                                                                         1300
## Signaling By Fgfr2 Iiia Tm                                                                                                                 1300
## Signaling By Fgfr2 In Disease                                                                                                              1300
## Signaling By Fgfr3                                                                                                                         1300
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       1300
## Signaling By Fgfr4                                                                                                                         1300
## Signaling By Fgfr4 In Disease                                                                                                              1300
## Signaling By Flt3 Fusion Proteins                                                                                                          1300
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      1300
## Signaling By Gpcr                                                                                                                          1300
## Signaling By Hedgehog                                                                                                                      1300
## Signaling By Hippo                                                                                                                         1300
## Signaling By Insulin Receptor                                                                                                              1300
## Signaling By Kit In Disease                                                                                                                1300
## Signaling By Leptin                                                                                                                        1300
## Signaling By Lrp5 Mutants                                                                                                                  1300
## Signaling By Mapk Mutants                                                                                                                  1300
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 1300
## Signaling By Met                                                                                                                           1300
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         1300
## Signaling By Mras Complex Mutants                                                                                                          1300
## Signaling By Mst1                                                                                                                          1300
## Signaling By Nodal                                                                                                                         1300
## Signaling By Notch                                                                                                                         1300
## Signaling By Notch1                                                                                                                        1300
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            1300
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          1300
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          1300
## Signaling By Notch4                                                                                                                        1300
## Signaling By Ntrk2 Trkb                                                                                                                    1300
## Signaling By Ntrk3 Trkc                                                                                                                    1300
## Signaling By Nuclear Receptors                                                                                                             1300
## Signaling By Pdgf                                                                                                                          1300
## Signaling By Pdgfr In Disease                                                                                                              1300
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  1300
## Signaling By Receptor Tyrosine Kinases                                                                                                     1300
## Signaling By Retinoic Acid                                                                                                                 1300
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          1300
## Signaling By Rnf43 Mutants                                                                                                                 1300
## Signaling By Robo Receptors                                                                                                                1300
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           1300
## Signaling By The B Cell Receptor Bcr                                                                                                       1300
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            1300
## Signaling By Vegf                                                                                                                          1300
## Signaling By Wnt                                                                                                                           1300
## Signaling By Wnt In Cancer                                                                                                                 1300
## Signalling To Erks                                                                                                                         1300
## Signalling To P38 Via Rit And Rin                                                                                                          1300
## Signalling To Ras                                                                                                                          1300
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 1300
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       1300
## Slc Mediated Transmembrane Transport                                                                                                       1300
## Slc Transporter Disorders                                                                                                                  1300
## Smac Xiap Regulated Apoptotic Response                                                                                                     1300
## Small Interfering Rna Sirna Biogenesis                                                                                                     1300
## Smooth Muscle Contraction                                                                                                                  1300
## Snrnp Assembly                                                                                                                             1300
## Sodium Calcium Exchangers                                                                                                                  1300
## Sodium Coupled Phosphate Cotransporters                                                                                                    1300
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                1300
## Sodium Proton Exchangers                                                                                                                   1300
## Sos Mediated Signalling                                                                                                                    1300
## Sperm Motility And Taxes                                                                                                                   1300
## Sphingolipid De Novo Biosynthesis                                                                                                          1300
## Sphingolipid Metabolism                                                                                                                    1300
## Spry Regulation Of Fgf Signaling                                                                                                           1300
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                1300
## Stabilization Of P53                                                                                                                       1300
## Stat5 Activation                                                                                                                           1300
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            1300
## Striated Muscle Contraction                                                                                                                1300
## Sulfide Oxidation To Sulfate                                                                                                               1300
## Sulfur Amino Acid Metabolism                                                                                                               1300
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         1300
## Sumo Is Proteolytically Processed                                                                                                          1300
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               1300
## Sumoylation Of Chromatin Organization Proteins                                                                                             1300
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     1300
## Sumoylation Of Dna Replication Proteins                                                                                                    1300
## Sumoylation Of Immune Response Proteins                                                                                                    1300
## Sumoylation Of Intracellular Receptors                                                                                                     1300
## Sumoylation Of Rna Binding Proteins                                                                                                        1300
## Sumoylation Of Sumoylation Proteins                                                                                                        1300
## Sumoylation Of Transcription Factors                                                                                                       1300
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   1300
## Suppression Of Apoptosis                                                                                                                   1300
## Suppression Of Phagosomal Maturation                                                                                                       1300
## Surfactant Metabolism                                                                                                                      1300
## Switching Of Origins To A Post Replicative State                                                                                           1300
## Synaptic Adhesion Like Molecules                                                                                                           1300
## Syndecan Interactions                                                                                                                      1300
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          1300
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          1300
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      1300
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      1300
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   1300
## Synthesis Of Bile Acids And Bile Salts                                                                                                     1300
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           1300
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           1300
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       1300
## Synthesis Of Diphthamide Eef2                                                                                                              1300
## Synthesis Of Dolichyl Phosphate                                                                                                            1300
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              1300
## Synthesis Of Gdp Mannose                                                                                                                   1300
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              1300
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 1300
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    1300
## Synthesis Of Ketone Bodies                                                                                                                 1300
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 1300
## Synthesis Of Lipoxins Lx                                                                                                                   1300
## Synthesis Of Pa                                                                                                                            1300
## Synthesis Of Pc                                                                                                                            1300
## Synthesis Of Pe                                                                                                                            1300
## Synthesis Of Pg                                                                                                                            1300
## Synthesis Of Pi                                                                                                                            1300
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           1300
## Synthesis Of Pips At The Er Membrane                                                                                                       1300
## Synthesis Of Pips At The Golgi Membrane                                                                                                    1300
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            1300
## Synthesis Of Pips At The Plasma Membrane                                                                                                   1300
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         1300
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 1300
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      1300
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               1300
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 1300
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             1300
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      1300
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   1300
## Tachykinin Receptors Bind Tachykinins                                                                                                      1300
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      1300
## Tandem Pore Domain Potassium Channels                                                                                                      1300
## Tbc Rabgaps                                                                                                                                1300
## Tcf Dependent Signaling In Response To Wnt                                                                                                 1300
## Telomere C Strand Lagging Strand Synthesis                                                                                                 1300
## Telomere C Strand Synthesis Initiation                                                                                                     1300
## Telomere Extension By Telomerase                                                                                                           1300
## Telomere Maintenance                                                                                                                       1300
## Terminal Pathway Of Complement                                                                                                             1300
## Termination Of Translesion Dna Synthesis                                                                                                   1300
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         1300
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            1300
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               1300
## Tgf Beta Receptor Signaling Activates Smads                                                                                                1300
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    1300
## The Activation Of Arylsulfatases                                                                                                           1300
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       1300
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               1300
## The Fatty Acid Cycling Model                                                                                                               1300
## The Nlrp3 Inflammasome                                                                                                                     1300
## The Phototransduction Cascade                                                                                                              1300
## The Retinoid Cycle In Cones Daylight Vision                                                                                                1300
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  1300
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              1300
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            1300
## Thromboxane Signalling Through Tp Receptor                                                                                                 1300
## Thyroxine Biosynthesis                                                                                                                     1300
## Tie2 Signaling                                                                                                                             1300
## Tight Junction Interactions                                                                                                                1300
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       1300
## Tnfr1 Mediated Ceramide Production                                                                                                         1300
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    1300
## Tp53 Regulates Metabolic Genes                                                                                                             1300
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           1300
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            1300
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           1300
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           1300
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                1300
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     1300
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     1300
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     1300
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       1300
## Traf3 Dependent Irf Activation Pathway                                                                                                     1300
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               1300
## Traf6 Mediated Irf7 Activation                                                                                                             1300
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    1300
## Traf6 Mediated Nf Kb Activation                                                                                                            1300
## Trafficking Of Ampa Receptors                                                                                                              1300
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             1300
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        1300
## Trail Signaling                                                                                                                            1300
## Trans Golgi Network Vesicle Budding                                                                                                        1300
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    1300
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       1300
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       1300
## Transcription Of The Hiv Genome                                                                                                            1300
## Transcriptional Regulation By E2f6                                                                                                         1300
## Transcriptional Regulation By Runx1                                                                                                        1300
## Transcriptional Regulation By Runx2                                                                                                        1300
## Transcriptional Regulation By Runx3                                                                                                        1300
## Transcriptional Regulation By Small Rnas                                                                                                   1300
## Transcriptional Regulation By Tp53                                                                                                         1300
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       1300
## Transcriptional Regulation Of Testis Differentiation                                                                                       1300
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              1300
## Transferrin Endocytosis And Recycling                                                                                                      1300
## Translation                                                                                                                                1300
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             1300
## Translation Of Sars Cov 1 Structural Proteins                                                                                              1300
## Translation Of Sars Cov 2 Structural Proteins                                                                                              1300
## Translesion Synthesis By Polh                                                                                                              1300
## Translesion Synthesis By Polk                                                                                                              1300
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         1300
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       1300
## Transmission Across Chemical Synapses                                                                                                      1300
## Transport And Synthesis Of Paps                                                                                                            1300
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   1300
## Transport Of Connexons To The Plasma Membrane                                                                                              1300
## Transport Of Fatty Acids                                                                                                                   1300
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        1300
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              1300
## Transport Of Mature Transcript To Cytoplasm                                                                                                1300
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   1300
## Transport Of Nucleotide Sugars                                                                                                             1300
## Transport Of Organic Anions                                                                                                                1300
## Transport Of Small Molecules                                                                                                               1300
## Transport Of The Slbp Dependant Mature Mrna                                                                                                1300
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    1300
## Transport To The Golgi And Subsequent Modification                                                                                         1300
## Trif Mediated Programmed Cell Death                                                                                                        1300
## Triglyceride Biosynthesis                                                                                                                  1300
## Triglyceride Catabolism                                                                                                                    1300
## Triglyceride Metabolism                                                                                                                    1300
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      1300
## Trna Aminoacylation                                                                                                                        1300
## Trna Modification In The Mitochondrion                                                                                                     1300
## Trna Modification In The Nucleus And Cytosol                                                                                               1300
## Trna Processing                                                                                                                            1300
## Trna Processing In The Mitochondrion                                                                                                       1300
## Trna Processing In The Nucleus                                                                                                             1300
## Trp Channels                                                                                                                               1300
## Tryptophan Catabolism                                                                                                                      1300
## Type I Hemidesmosome Assembly                                                                                                              1300
## Tyrosine Catabolism                                                                                                                        1300
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        1300
## Ub Specific Processing Proteases                                                                                                           1300
## Ubiquinol Biosynthesis                                                                                                                     1300
## Uch Proteinases                                                                                                                            1300
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              1300
## Unwinding Of Dna                                                                                                                           1300
## Uptake And Actions Of Bacterial Toxins                                                                                                     1300
## Uptake And Function Of Anthrax Toxins                                                                                                      1300
## Uptake And Function Of Diphtheria Toxin                                                                                                    1300
## Urea Cycle                                                                                                                                 1300
## Vasopressin Like Receptors                                                                                                                 1300
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               1300
## Vegf Ligand Receptor Interactions                                                                                                          1300
## Vegfr2 Mediated Cell Proliferation                                                                                                         1300
## Vegfr2 Mediated Vascular Permeability                                                                                                      1300
## Vesicle Mediated Transport                                                                                                                 1300
## Viral Messenger Rna Synthesis                                                                                                              1300
## Visual Phototransduction                                                                                                                   1300
## Vitamin B1 Thiamin Metabolism                                                                                                              1300
## Vitamin B2 Riboflavin Metabolism                                                                                                           1300
## Vitamin B5 Pantothenate Metabolism                                                                                                         1300
## Vitamin C Ascorbate Metabolism                                                                                                             1300
## Vitamin D Calciferol Metabolism                                                                                                            1300
## Vitamins                                                                                                                                   1300
## Vldl Assembly                                                                                                                              1300
## Vldl Clearance                                                                                                                             1300
## Voltage Gated Potassium Channels                                                                                                           1300
## Vxpx Cargo Targeting To Cilium                                                                                                             1300
## Wax And Plasmalogen Biosynthesis                                                                                                           1300
## Wnt Mediated Activation Of Dvl                                                                                                             1300
## Xenobiotics                                                                                                                                1300
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              1300
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   1300
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            1300
## Zinc Transporters                                                                                                                          1300
##                                                                                                                                                                                                                                           hits
## Interleukin 10 Signaling                                                                                                                                                                            CCL20,CD86,CXCL10,CXCL8,IL10,IL18,IL1B,IL6
## Chemokine Receptors Bind Chemokines                                                                                                                                                                       CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                                                BIRC3,CD40,TNFSF11
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                                         IL10,IL6
## Interleukin 1 Processing                                                                                                                                                                                                             IL18,IL1B
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                                                          CREB1,EGFR,FOS
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                 CD70,TNFRSF11B,TNFSF11
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                   CXCL8,FOS,IL10,IL18,IL1B,IL6,MMP9
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                                    CREB1,EGFR
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                        BIRC3,TLR3
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                                    CREB1
## Clec7a Inflammasome Pathway                                                                                                                                                                                                               IL1B
## Fibronectin Matrix Formation                                                                                                                                                                                                           CEACAM8
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                         EGFR
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                                      TLR3
## Creb Phosphorylation                                                                                                                                                                                                                     CREB1
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                                      IL18,IL1B
## Pyroptosis                                                                                                                                                                                                                           IL18,IL1B
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                                                             CREB1
## Interleukin 18 Signaling                                                                                                                                                                                                                  IL18
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                                        CREB1
## Pd 1 Signaling                                                                                                                                                                                                               HLA-DQB1,PDCD1LG2
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                           CREB1,EGFR,FOS,MMP9
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                                 EGFR
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           EGFR
## Mapk1 Erk2 Activation                                                                                                                                                                                                                      IL6
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                            BIRC3,CD40,CD70,TNFRSF11B,TNFSF11
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                                  CREB1,FOS
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                                                     FOS
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                                CREB1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                                 CREB1
## Mapk3 Erk1 Activation                                                                                                                                                                                                                      IL6
## Regulated Necrosis                                                                                                                                                                                                             BIRC3,IL18,IL1B
## Interleukin 6 Signaling                                                                                                                                                                                                                    IL6
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                                          TLR3
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                               CD86
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                                                        CREB1
## Killing Mechanisms                                                                                                                                                                                                                       WNT5A
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                                      CREB1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                                  TLR3
## Vldlr Internalisation And Degradation                                                                                                                                                                                                    PCSK9
## Dissolution Of Fibrin Clot                                                                                                                                                                                                            SERPINE1
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                            EGFR
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                                    IFI16
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                               TLR3
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                                                    WNT5A
## Ngf Stimulated Transcription                                                                                                                                                                                                         CREB1,FOS
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                             EGFR
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                        EGFR
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                             EGFR
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                                                                 WNT5A
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                                                                           EGFR
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                                  WNT5A
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                                                               MUC5B
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                            EGFR
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                                        IFI16
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                                 DNMT3A
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                                                            MUC5B
## Gab1 Signalosome                                                                                                                                                                                                                          EGFR
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                                     TLR3
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                                          CREB1
## Costimulation By The Cd28 Family                                                                                                                                                                                        CD86,HLA-DQB1,PDCD1LG2
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                                                          EGFR
## Ldl Clearance                                                                                                                                                                                                                            PCSK9
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                     CREB1
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                CD86
## Inflammasomes                                                                                                                                                                                                                             AIM2
## Signal Transduction By L1                                                                                                                                                                                                                 EGFR
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                                TLR3
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                         CD86
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                                 BIRC3
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                         IL6
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                     MUC5B
## Interleukin 6 Family Signaling                                                                                                                                                                                                             IL6
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                               EGFR
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                                                                            AIM2,BIRC3
## Signaling By Egfr In Cancer                                                                                                                                                                                                               EGFR
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                                            CREB1
## Dectin 2 Family                                                                                                                                                                                                                          MUC5B
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                              EGFR
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                                    WNT5A
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                                                         CXCL8
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                                                 SERPINE1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                                                                         CREB1
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                         EGFR
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                                            CREB1,FOS
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                        BIRC3
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                        IFI16,TLR3
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                                 BIRC3
## Diseases Of Immune System                                                                                                                                                                                                                 TLR3
## Egfr Downregulation                                                                                                                                                                                                                       EGFR
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                 BIRC3,CREB1,FOS
## Perk Regulates Gene Expression                                                                                                                                                                                                           CXCL8
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                              CREB1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                                                SERPINE1
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                                   MMP9
## Cd28 Co Stimulation                                                                                                                                                                                                                       CD86
## Plasma Lipoprotein Clearance                                                                                                                                                                                                             PCSK9
## Sialic Acid Metabolism                                                                                                                                                                                                                    NANP
## Signaling By Notch2                                                                                                                                                                                                                      CREB1
## Peptide Ligand Binding Receptors                                                                                                                                                                          CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Circadian Clock                                                                                                                                                                                                                 CREB1,SERPINE1
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                            BIRC3
## Interleukin 17 Signaling                                                                                                                                                                                                             CREB1,FOS
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                 BIRC3
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                   CD86,CREB1,EGFR
## Ca Dependent Events                                                                                                                                                                                                                      CREB1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                                                                        IL10
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                                                              EGFR
## Generation Of Second Messenger Molecules                                                                                                                                                                                              HLA-DQB1
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                                   CXCL8,FOS,IL6
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                                    CD86,EGFR
## Dag And Ip3 Signaling                                                                                                                                                                                                                    CREB1
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                     CD86,EGFR,IL33
## Transcriptional Regulation By Ventx                                                                                                                                                                                                        IL6
## Signaling By Scf Kit                                                                                                                                                                                                                      MMP9
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                                   UHRF2
## Tnf Signaling                                                                                                                                                                                                                            BIRC3
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                                            SERPINE1
## Dap12 Interactions                                                                                                                                                                                                                       TREM1
## Interleukin 12 Signaling                                                                                                                                                                                                                  IL10
## Toll Like Receptor Cascades                                                                                                                                                                                               BIRC3,CREB1,FOS,TLR3
## Heme Signaling                                                                                                                                                                                                                           CREB1
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                                                                                                         CST3,IL6,PCSK9
## Signaling By Egfr                                                                                                                                                                                                                         EGFR
## Signaling By Erbb2                                                                                                                                                                                                                        EGFR
## Signaling By Notch3                                                                                                                                                                                                                       EGFR
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                                    MMP9
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                    CREB1,FOS
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                      CREB1,IL10
## G Protein Mediated Events                                                                                                                                                                                                                CREB1
## Signaling By Ptk6                                                                                                                                                                                                                         EGFR
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                                                   CREB1
## Interleukin 12 Family Signaling                                                                                                                                                                                                           IL10
## Interleukin 1 Family Signaling                                                                                                                                                                                                  IL18,IL1B,IL33
## Signaling By Erbb4                                                                                                                                                                                                                        EGFR
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                                              MMP9
## Ca2 Pathway                                                                                                                                                                                                                              WNT5A
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                                 EGFR,WNT5A
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         MUC5B
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 CREB1,FOS
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                                           FOS
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                                  WNT5A
## Collagen Degradation                                                                                                                                                                                                                      MMP9
## Dna Methylation                                                                                                                                                                                                                         DNMT3A
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                                    CREB1
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                                           NANP
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                      CREB1
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                                     MUC5B
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                                     PCSK9
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                        DNMT3A
## Signaling By Interleukins                                                                                                                                                       CCL20,CD86,CREB1,CXCL10,CXCL8,FOS,IL10,IL18,IL1B,IL33,IL6,MMP9
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                                SERPINE1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                                                                                                        NANP
## Ecm Proteoglycans                                                                                                                                                                                                                     SERPINE1
## Rmts Methylate Histone Arginines                                                                                                                                                                                                        DNMT3A
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                                              CREB1,IL6
## G Alpha I Signalling Events                                                                                                                                                                         CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL8
## C Type Lectin Receptors Clrs                                                                                                                                                                                                        IL1B,MUC5B
## Collagen Formation                                                                                                                                                                                                                        MMP9
## Esr Mediated Signaling                                                                                                                                                                                                     CREB1,EGFR,FOS,MMP9
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             FOS
## Hcmv Early Events                                                                                                                                                                                                                   CREB1,EGFR
## Opioid Signalling                                                                                                                                                                                                                        CREB1
## Signaling By Ntrks                                                                                                                                                                                                                   CREB1,FOS
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                             CREB1
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                                     CREB1
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                      WNT5A
## Clathrin Mediated Endocytosis                                                                                                                                                                                                       EGFR,WNT5A
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                 IL1B
## Eph Ephrin Signaling                                                                                                                                                                                                                      MMP9
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                                                     CD40,FCGR2B,TREM1
## Interferon Gamma Signaling                                                                                                                                                                                                            HLA-DQB1
## Leishmania Infection                                                                                                                                                                                            CREB1,IL10,IL18,IL1B,IL6,WNT5A
## Mitochondrial Biogenesis                                                                                                                                                                                                                 CREB1
## Pcp Ce Pathway                                                                                                                                                                                                                           WNT5A
## Unfolded Protein Response Upr                                                                                                                                                                                                            CXCL8
## Amyloid Fiber Formation                                                                                                                                                                                                                   CST3
## Cellular Senescence                                                                                                                                                                                                              CXCL8,FOS,IL6
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       DNMT3A
## Hcmv Infection                                                                                                                                                                                                                      CREB1,EGFR
## Interleukin 1 Signaling                                                                                                                                                                                                                   IL1B
## O Linked Glycosylation                                                                                                                                                                                                                   MUC5B
## Programmed Cell Death                                                                                                                                                                                                          BIRC3,IL18,IL1B
## Signaling By Tgfb Family Members                                                                                                                                                                                                      SERPINE1
## Stimuli Sensing Channels                                                                                                                                                                                                                 BEST2
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                                              CREB1,IL10,IL6
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                                   CEACAM8,TREM1
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                        CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Cytokine Signaling In Immune System                                                                                                  BIRC3,CCL20,CD40,CD70,CD86,CREB1,CXCL10,CXCL8,FOS,HLA-DQB1,IL10,IL18,IL1B,IL33,IL6,MMP9,TNFRSF11B,TNFSF11
## Death Receptor Signalling                                                                                                                                                                                                                BIRC3
## Degradation Of The Extracellular Matrix                                                                                                                                                                                                   MMP9
## L1cam Interactions                                                                                                                                                                                                                        EGFR
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                     HLA-DQB1
## Oxidative Stress Induced Senescence                                                                                                                                                                                                        FOS
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                           SERPINE1
## Sumoylation                                                                                                                                                                                                                       DNMT3A,UHRF2
## Tcr Signaling                                                                                                                                                                                                                         HLA-DQB1
## 2 Ltr Circle Formation                                                                                                                                                                                                                        
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                                                               
## Abacavir Metabolism                                                                                                                                                                                                                           
## Abacavir Transmembrane Transport                                                                                                                                                                                                              
## Abacavir Transport And Metabolism                                                                                                                                                                                                             
## Abc Family Proteins Mediated Transport                                                                                                                                                                                                        
## Abc Transporter Disorders                                                                                                                                                                                                                     
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                                         
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                                                              
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                                                                   
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                                                                 
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                                   
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                                                        
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                                  
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                                     
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                                           
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                                              
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                          
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                                                 
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                           
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                          
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                           
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                          
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                           
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                                                                                                 
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                                   
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                                       
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                                                                          
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                                           
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                                           
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                               
## Activation Of C3 And C5                                                                                                                                                                                                                       
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                                                   
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                                  
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                                          
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                                                        
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                                     
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                                          
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                                          
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                                          
## Activation Of Rac1                                                                                                                                                                                                                            
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                                       
## Activation Of Ras In B Cells                                                                                                                                                                                                                  
## Activation Of Smo                                                                                                                                                                                                                             
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                                                                                                         
## Activation Of The Phototransduction Cascade                                                                                                                                                                                                   
## Activation Of The Pre Replicative Complex                                                                                                                                                                                                     
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                                                  
## Activation Of Trka Receptors                                                                                                                                                                                                                  
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                          
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                  
## Adaptive Immune System                                                                                                                                                                                CD40,CD86,FCGR2B,HLA-DQB1,PDCD1LG2,TREM1
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                          
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                          
## Adherens Junctions Interactions                                                                                                                                                                                                               
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                                     
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                                    
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                                           
## Adrenoceptors                                                                                                                                                                                                                                 
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                                          
## Aflatoxin Activation And Detoxification                                                                                                                                                                                                       
## Aggrephagy                                                                                                                                                                                                                                    
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                                     
## Alpha Defensins                                                                                                                                                                                                                               
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                                                    
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                  
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                                      
## Alternative Complement Activation                                                                                                                                                                                                             
## Amine Ligand Binding Receptors                                                                                                                                                                                                                
## Amino Acid Conjugation                                                                                                                                                                                                                        
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                                               
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                                                      
## Anchoring Fibril Formation                                                                                                                                                                                                                    
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                                            
## Androgen Biosynthesis                                                                                                                                                                                                                         
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                                                                              
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                                                                      
## Antigen Processing Cross Presentation                                                                                                                                                                                                         
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                                                      
## Antimicrobial Peptides                                                                                                                                                                                                                        
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                                   
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                                  
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                                                                                                      
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                                             
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                                       
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                                                                                        
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                                               
## Apoptosis                                                                                                                                                                                                                                     
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                           
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                                  
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                                       
## Apoptotic Execution Phase                                                                                                                                                                                                                     
## Apoptotic Factor Mediated Response                                                                                                                                                                                                            
## Aquaporin Mediated Transport                                                                                                                                                                                                                  
## Arachidonate Production From Dag                                                                                                                                                                                                              
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   
## Arms Mediated Activation                                                                                                                                                                                                                      
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                          
## Asparagine N Linked Glycosylation                                                                                                                                                                                                         NANP
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                           
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                                                      
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                                              
## Assembly Of The Hiv Virion                                                                                                                                                                                                                    
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                                                      
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                                       
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                                                              
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                                     
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                          
## Attachment And Entry                                                                                                                                                                                                                          
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                              
## Attenuation Phase                                                                                                                                                                                                                             
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                                     
## Aurka Activation By Tpx2                                                                                                                                                                                                                      
## Autophagy                                                                                                                                                                                                                                     
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                                           
## Base Excision Repair                                                                                                                                                                                                                          
## Base Excision Repair Ap Site Formation                                                                                                                                                                                                        
## Basigin Interactions                                                                                                                                                                                                                          
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                                     
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                                   WNT5A
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                          
## Beta Defensins                                                                                                                                                                                                                                
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                                  
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                                            
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                                                
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                                             
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                                                
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                              
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                                                 
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                                                                  
## Bicarbonate Transporters                                                                                                                                                                                                                      
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                            
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                                          
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                                            
## Biological Oxidations                                                                                                                                                                                                                         
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                              
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                             
## Biosynthesis Of Maresins                                                                                                                                                                                                                      
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                                                       
## Biotin Transport And Metabolism                                                                                                                                                                                                               
## Blood Group Systems Biosynthesis                                                                                                                                                                                                              
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                          
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                          
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                                                   
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                          
## Ca2 Activated K Channels                                                                                                                                                                                                                      
## Calcineurin Activates Nfat                                                                                                                                                                                                                    
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                              
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                                                   
## Cardiac Conduction                                                                                                                                                                                                                            
## Cargo Concentration In The Er                                                                                                                                                                                                                 
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                                                 
## Carnitine Metabolism                                                                                                                                                                                                                          
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                                                              
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                                                          
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                                                                 
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                                            
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                                        
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                       
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                  
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                            
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                                  
## Cell Cell Communication                                                                                                                                                                                                                       
## Cell Cell Junction Organization                                                                                                                                                                                                               
## Cell Cycle                                                                                                                                                                                                                                    
## Cell Cycle Checkpoints                                                                                                                                                                                                                        
## Cell Cycle Mitotic                                                                                                                                                                                                                            
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                                                 
## Cell Extracellular Matrix Interactions                                                                                                                                                                                                        
## Cell Junction Organization                                                                                                                                                                                                                    
## Cellular Hexose Transport                                                                                                                                                                                                                     
## Cellular Response To Chemical Stress                                                                                                                                                                                                          
## Cellular Response To Heat Stress                                                                                                                                                                                                              
## Cellular Response To Hypoxia                                                                                                                                                                                                                  
## Cellular Response To Starvation                                                                                                                                                                                                               
## Cellular Responses To External Stimuli                                                                                                                                                                                     CREB1,CXCL8,FOS,IL6
## Cgmp Effects                                                                                                                                                                                                                                  
## Chaperone Mediated Autophagy                                                                                                                                                                                                                  
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                                                                 
## Chl1 Interactions                                                                                                                                                                                                                             
## Cholesterol Biosynthesis                                                                                                                                                                                                                      
## Choline Catabolism                                                                                                                                                                                                                            
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                              
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                                               
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                                    
## Chromatin Modifying Enzymes                                                                                                                                                                                                             DNMT3A
## Chromosome Maintenance                                                                                                                                                                                                                        
## Chylomicron Assembly                                                                                                                                                                                                                          
## Chylomicron Clearance                                                                                                                                                                                                                         
## Chylomicron Remodeling                                                                                                                                                                                                                        
## Cilium Assembly                                                                                                                                                                                                                               
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                                          
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                                          
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                                   
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                                       
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                                            
## Coenzyme A Biosynthesis                                                                                                                                                                                                                       
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                                
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                                   
## Collagen Chain Trimerization                                                                                                                                                                                                                  
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                                       
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                                                    
## Complement Cascade                                                                                                                                                                                                                            
## Complex I Biogenesis                                                                                                                                                                                                                          
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                                      
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                          
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                          
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                                                 
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                                                    
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                                                              
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                                                            
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                                                 
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                                               
## Copi Mediated Anterograde Transport                                                                                                                                                                                                           
## Copii Mediated Vesicle Transport                                                                                                                                                                                                              
## Creatine Metabolism                                                                                                                                                                                                                           
## Creation Of C4 And C2 Activators                                                                                                                                                                                                              
## Creb3 Factors Activate Genes                                                                                                                                                                                                                  
## Cristae Formation                                                                                                                                                                                                                             
## Crmps In Sema3a Signaling                                                                                                                                                                                                                     
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                                                               
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                                                    
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                              
## Cs Ds Degradation                                                                                                                                                                                                                             
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                                                       
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                                              
## Cyclin D Associated Events In G1                                                                                                                                                                                                              
## Cyp2e1 Reactions                                                                                                                                                                                                                              
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                                      
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                                    
## Cytoprotection By Hmox1                                                                                                                                                                                                                       
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                                        
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                                      
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                                 
## Dap12 Signaling                                                                                                                                                                                                                               
## Darpp 32 Events                                                                                                                                                                                                                               
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                             
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                                                       
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                                                      
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                            
## Deadenylation Of Mrna                                                                                                                                                                                                                         
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                                                
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                                   
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                                   
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                                         
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                                          
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                                 
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                  
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                                 
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                             
## Defective F9 Activation                                                                                                                                                                                                                       
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                                       
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                                     
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                   
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                                     
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                              
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                           
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                                    
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                                                                      
## Defensins                                                                                                                                                                                                                                     
## Degradation Of Axin                                                                                                                                                                                                                           
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                                                        
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                                      
## Degradation Of Dvl                                                                                                                                                                                                                            
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                                         
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                                        
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                                                              
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                                                                                   
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                                 
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                                     
## Deubiquitination                                                                                                                                                                                                                    BIRC3,IL33
## Developmental Biology                                                                                                                                                                                                          CREB1,EGFR,MMP9
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                                                                                 
## Digestion                                                                                                                                                                                                                                     
## Digestion And Absorption                                                                                                                                                                                                                      
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                             
## Digestion Of Dietary Lipid                                                                                                                                                                                                                    
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                                                                                
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                                                         
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                                                                 
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                                          
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                                                
## Diseases Of Base Excision Repair                                                                                                                                                                                                              
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                           
## Diseases Of Dna Repair                                                                                                                                                                                                                        
## Diseases Of Glycosylation                                                                                                                                                                                                                MUC5B
## Diseases Of Metabolism                                                                                                                                                                                                                   MUC5B
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                               
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                                
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                                                               CD86,CREB1,EGFR
## Disinhibition Of Snare Formation                                                                                                                                                                                                              
## Disorders Of Transmembrane Transporters                                                                                                                                                                                                       
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                                      
## Dna Damage Bypass                                                                                                                                                                                                                             
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                              
## Dna Damage Reversal                                                                                                                                                                                                                           
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                                                 
## Dna Double Strand Break Repair                                                                                                                                                                                                                
## Dna Double Strand Break Response                                                                                                                                                                                                              
## Dna Repair                                                                                                                                                                                                                                    
## Dna Replication                                                                                                                                                                                                                               
## Dna Replication Initiation                                                                                                                                                                                                                    
## Dna Replication Pre Initiation                                                                                                                                                                                                                
## Dna Strand Elongation                                                                                                                                                                                                                         
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                                       
## Dopamine Receptors                                                                                                                                                                                                                            
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                                       
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                             
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                                                      
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                                                 
## Downstream Signal Transduction                                                                                                                                                                                                                
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                                            
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                                       
## Dscam Interactions                                                                                                                                                                                                                            
## Dual Incision In Gg Ner                                                                                                                                                                                                                       
## Dual Incision In Tc Ner                                                                                                                                                                                                                       
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                                                   
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                                    
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                                             
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                                 
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                    
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                                                                
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                           
## Eicosanoids                                                                                                                                                                                                                                   
## Elastic Fibre Formation                                                                                                                                                                                                                       
## Electric Transmission Across Gap Junctions                                                                                                                                                                                                    
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                             
## Endogenous Sterols                                                                                                                                                                                                                            
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                                                        
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                    
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                                              
## Enos Activation                                                                                                                                                                                                                               
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                            
## Ephb Mediated Forward Signaling                                                                                                                                                                                                               
## Ephrin Signaling                                                                                                                                                                                                                              
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                                DNMT3A
## Er Quality Control Compartment Erqc                                                                                                                                                                                                           
## Er To Golgi Anterograde Transport                                                                                                                                                                                                             
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                                                   
## Erk Mapk Targets                                                                                                                                                                                                                              
## Erks Are Inactivated                                                                                                                                                                                                                          
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                                                        
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                                                        
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                                                       
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                                           
## Erythropoietin Activates Ras                                                                                                                                                                                                                  
## Erythropoietin Activates Stat5                                                                                                                                                                                                                
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                                    
## Estrogen Biosynthesis                                                                                                                                                                                                                         
## Estrogen Dependent Gene Expression                                                                                                                                                                                                         FOS
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                                   
## Ethanol Oxidation                                                                                                                                                                                                                             
## Eukaryotic Translation Elongation                                                                                                                                                                                                             
## Eukaryotic Translation Initiation                                                                                                                                                                                                             
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                                               
## Extension Of Telomeres                                                                                                                                                                                                                        
## Extracellular Matrix Organization                                                                                                                                                                                        CEACAM8,MMP9,SERPINE1
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                    
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                                                                         
## Fanconi Anemia Pathway                                                                                                                                                                                                                        
## Fasl Cd95l Signaling                                                                                                                                                                                                                          
## Fatty Acid Metabolism                                                                                                                                                                                                                         
## Fatty Acids                                                                                                                                                                                                                                   
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                                                   
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                            
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                        FOS
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                              
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                               
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                                  
## Fcgr Activation                                                                                                                                                                                                                               
## Fertilization                                                                                                                                                                                                                                 
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                              
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                    
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                              
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                          
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                                                                                
## Flt3 Signaling                                                                                                                                                                                                                                
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                                 
## Flt3 Signaling In Disease                                                                                                                                                                                                                     
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                                     
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                  
## Formation Of Apoptosome                                                                                                                                                                                                                       
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                                     
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                                     
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                                       
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                                    
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                                                  
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                                      
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                                                     
## Formation Of The Cornified Envelope                                                                                                                                                                                                           
## Formation Of The Early Elongation Complex                                                                                                                                                                                                     
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                                                        
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                             
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                                                          
## Foxo Mediated Transcription                                                                                                                                                                                                                   
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                                               
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                                               
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                                                                  
## Free Fatty Acid Receptors                                                                                                                                                                                                                     
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                                   
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                  
## Fructose Catabolism                                                                                                                                                                                                                           
## Fructose Metabolism                                                                                                                                                                                                                           
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                               
## G Alpha Q Signalling Events                                                                                                                                                                                                         CREB1,EGFR
## G Alpha S Signalling Events                                                                                                                                                                                                                   
## G Alpha Z Signalling Events                                                                                                                                                                                                                   
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                                         
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                                     
## G Protein Activation                                                                                                                                                                                                                          
## G Protein Beta Gamma Signalling                                                                                                                                                                                                               
## G0 And Early G1                                                                                                                                                                                                                               
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   
## G1 S Specific Transcription                                                                                                                                                                                                                   
## G2 M Checkpoints                                                                                                                                                                                                                              
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                    
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                               
## G2 Phase                                                                                                                                                                                                                                      
## Gaba B Receptor Activation                                                                                                                                                                                                                    
## Gaba Receptor Activation                                                                                                                                                                                                                      
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                                               
## Galactose Catabolism                                                                                                                                                                                                                          
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                                                           
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                                                                         
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                                                       
## Gap Junction Assembly                                                                                                                                                                                                                         
## Gap Junction Degradation                                                                                                                                                                                                                      
## Gap Junction Trafficking And Regulation                                                                                                                                                                                                       
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                       
## Gene Silencing By Rna                                                                                                                                                                                                                         
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                                                                   
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                                               
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                                                      
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                                    
## Glucagon Type Ligand Receptors                                                                                                                                                                                                                
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   
## Gluconeogenesis                                                                                                                                                                                                                               
## Glucose Metabolism                                                                                                                                                                                                                            
## Glucuronidation                                                                                                                                                                                                                               
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                            
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                                      
## Glutathione Conjugation                                                                                                                                                                                                                       
## Glutathione Synthesis And Recycling                                                                                                                                                                                                           
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                              
## Glycerophospholipid Catabolism                                                                                                                                                                                                                
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                             
## Glycogen Metabolism                                                                                                                                                                                                                           
## Glycogen Storage Diseases                                                                                                                                                                                                                     
## Glycogen Synthesis                                                                                                                                                                                                                            
## Glycolysis                                                                                                                                                                                                                                    
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                  
## Glycosphingolipid Metabolism                                                                                                                                                                                                                  
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                                                 
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                           
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                                           
## Golgi To Er Retrograde Transport                                                                                                                                                                                                              
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                               
## Gpcr Ligand Binding                                                                                                                                                                                 CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8,WNT5A
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                              
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                                                     
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                                
## Growth Hormone Receptor Signaling                                                                                                                                                                                                             
## Hats Acetylate Histones                                                                                                                                                                                                                       
## Hcmv Late Events                                                                                                                                                                                                                              
## Hdacs Deacetylate Histones                                                                                                                                                                                                                    
## Hdl Assembly                                                                                                                                                                                                                                  
## Hdl Clearance                                                                                                                                                                                                                                 
## Hdl Remodeling                                                                                                                                                                                                                                
## Hdms Demethylate Histones                                                                                                                                                                                                                     
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                                      
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                     
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                                       
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                    
## Hedgehog Off State                                                                                                                                                                                                                            
## Hedgehog On State                                                                                                                                                                                                                             
## Heme Biosynthesis                                                                                                                                                                                                                             
## Heme Degradation                                                                                                                                                                                                                              
## Hemostasis                                                                                                                                                                                                              CEACAM8,SERPINE1,TREM1
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                                     
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                                                    
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                                                                       
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                                                                        
## Histidine Catabolism                                                                                                                                                                                                                          
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                            
## Hiv Infection                                                                                                                                                                                                                                 
## Hiv Life Cycle                                                                                                                                                                                                                                
## Hiv Transcription Elongation                                                                                                                                                                                                                  
## Hiv Transcription Initiation                                                                                                                                                                                                                  
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                                    
## Homology Directed Repair                                                                                                                                                                                                                      
## Hormone Ligand Binding Receptors                                                                                                                                                                                                              
## Host Interactions Of Hiv Factors                                                                                                                                                                                                              
## Hs Gag Biosynthesis                                                                                                                                                                                                                           
## Hs Gag Degradation                                                                                                                                                                                                                            
## Hsf1 Activation                                                                                                                                                                                                                               
## Hsf1 Dependent Transactivation                                                                                                                                                                                                                
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                                                       
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                          
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                            
## Hyaluronan Metabolism                                                                                                                                                                                                                         
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                             
## Hydrolysis Of Lpc                                                                                                                                                                                                                             
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                  
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                                               
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                                
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                          
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                                                 
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                                     
## Infectious Disease                                                                                                                                                                                         CREB1,EGFR,IL10,IL18,IL1B,IL6,WNT5A
## Influenza Infection                                                                                                                                                                                                                           
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                                   
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                                                               
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                                                                                                                   
## Initial Triggering Of Complement                                                                                                                                                                                                              
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                                                 
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                                                                 
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                                                  
## Innate Immune System                                                                                                                                                   AIM2,BIRC3,CEACAM8,CREB1,CST3,FOS,IFI16,IL1B,MMP9,MUC5B,SLPI,TLR3,TREM1
## Inositol Phosphate Metabolism                                                                                                                                                                                                                 
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                                                                   
## Insulin Processing                                                                                                                                                                                                                            
## Insulin Receptor Recycling                                                                                                                                                                                                                    
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                           
## Integration Of Energy Metabolism                                                                                                                                                                                                              
## Integration Of Provirus                                                                                                                                                                                                                       
## Integrin Cell Surface Interactions                                                                                                                                                                                                            
## Integrin Signaling                                                                                                                                                                                                                            
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                           
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                                                         
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                                               
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                                               
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                                            
## Interferon Alpha Beta Signaling                                                                                                                                                                                                               
## Interferon Signaling                                                                                                                                                                                                                  HLA-DQB1
## Interleukin 15 Signaling                                                                                                                                                                                                                      
## Interleukin 2 Family Signaling                                                                                                                                                                                                                
## Interleukin 2 Signaling                                                                                                                                                                                                                       
## Interleukin 20 Family Signaling                                                                                                                                                                                                               
## Interleukin 21 Signaling                                                                                                                                                                                                                      
## Interleukin 23 Signaling                                                                                                                                                                                                                      
## Interleukin 27 Signaling                                                                                                                                                                                                                      
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                                              
## Interleukin 35 Signalling                                                                                                                                                                                                                     
## Interleukin 36 Pathway                                                                                                                                                                                                                        
## Interleukin 37 Signaling                                                                                                                                                                                                                      
## Interleukin 7 Signaling                                                                                                                                                                                                                       
## Interleukin 9 Signaling                                                                                                                                                                                                                       
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                            
## Intestinal Absorption                                                                                                                                                                                                                         
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                                                
## Intra Golgi Traffic                                                                                                                                                                                                                           
## Intracellular Signaling By Second Messengers                                                                                                                                                                              CD86,CREB1,EGFR,IL33
## Intraflagellar Transport                                                                                                                                                                                                                      
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                               
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                    
## Inwardly Rectifying K Channels                                                                                                                                                                                                                
## Ion Channel Transport                                                                                                                                                                                                                    BEST2
## Ion Homeostasis                                                                                                                                                                                                                               
## Ion Transport By P Type Atpases                                                                                                                                                                                                               
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                                      
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                    
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                                     
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                       
## Ire1alpha Activates Chaperones                                                                                                                                                                                                                
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                                        
## Iron Uptake And Transport                                                                                                                                                                                                                     
## Irs Activation                                                                                                                                                                                                                                
## Irs Mediated Signalling                                                                                                                                                                                                                       
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                                                                             
## Josephin Domain Dubs                                                                                                                                                                                                                          
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                  
## Keratan Sulfate Degradation                                                                                                                                                                                                                   
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                            
## Keratinization                                                                                                                                                                                                                                
## Ketone Body Metabolism                                                                                                                                                                                                                        
## Kinesins                                                                                                                                                                                                                                      
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                                        
## Lagging Strand Synthesis                                                                                                                                                                                                                      
## Laminin Interactions                                                                                                                                                                                                                          
## Late Endosomal Microautophagy                                                                                                                                                                                                                 
## Lectin Pathway Of Complement Activation                                                                                                                                                                                                       
## Leukotriene Receptors                                                                                                                                                                                                                         
## Lgi Adam Interactions                                                                                                                                                                                                                         
## Ligand Receptor Interactions                                                                                                                                                                                                                  
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   
## Lipid Particle Organization                                                                                                                                                                                                                   
## Lipophagy                                                                                                                                                                                                                                     
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                                  
## Long Term Potentiation                                                                                                                                                                                                                        
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                                    
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                                         
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                                                        
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                                                                        
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                           
## Lysine Catabolism                                                                                                                                                                                                                             
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                            
## M Phase                                                                                                                                                                                                                                       
## Map2k And Mapk Activation                                                                                                                                                                                                                     
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                                      
## Mapk Family Signaling Cascades                                                                                                                                                                                                        EGFR,IL6
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                         
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                                         
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   
## Maturation Of Protein 3a                                                                                                                                                                                                                      
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                                        
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                                        
## Meiosis                                                                                                                                                                                                                                       
## Meiotic Recombination                                                                                                                                                                                                                         
## Meiotic Synapsis                                                                                                                                                                                                                              
## Melanin Biosynthesis                                                                                                                                                                                                                          
## Membrane Trafficking                                                                                                                                                                                                                EGFR,WNT5A
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                              
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                  
## Met Activates Ptpn11                                                                                                                                                                                                                          
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   
## Met Activates Ras Signaling                                                                                                                                                                                                                   
## Met Interacts With Tns Proteins                                                                                                                                                                                                               
## Met Promotes Cell Motility                                                                                                                                                                                                                    
## Met Receptor Activation                                                                                                                                                                                                                       
## Met Receptor Recycling                                                                                                                                                                                                                        
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                                           
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                          
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                                     
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                                                 
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   
## Metabolism Of Cofactors                                                                                                                                                                                                                       
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                            
## Metabolism Of Folate And Pterines                                                                                                                                                                                                             
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                                              
## Metabolism Of Lipids                                                                                                                                                                                                                          
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                                                     
## Metabolism Of Nucleotides                                                                                                                                                                                                                     
## Metabolism Of Polyamines                                                                                                                                                                                                                      
## Metabolism Of Porphyrins                                                                                                                                                                                                                      
## Metabolism Of Rna                                                                                                                                                                                                                             
## Metabolism Of Steroid Hormones                                                                                                                                                                                                                
## Metabolism Of Steroids                                                                                                                                                                                                                        
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                          
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                                            
## Metal Ion Slc Transporters                                                                                                                                                                                                                    
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                                                 
## Metalloprotease Dubs                                                                                                                                                                                                                          
## Metallothioneins Bind Metals                                                                                                                                                                                                                  
## Methionine Salvage Pathway                                                                                                                                                                                                                    
## Methylation                                                                                                                                                                                                                                   
## Microrna Mirna Biogenesis                                                                                                                                                                                                                     
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                                
## Miro Gtpase Cycle                                                                                                                                                                                                                             
## Miscellaneous Substrates                                                                                                                                                                                                                      
## Miscellaneous Transport And Binding Events                                                                                                                                                                                                    
## Mismatch Repair                                                                                                                                                                                                                               
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                           
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                                       
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                                                              
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                                                            
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                                  
## Mitochondrial Protein Import                                                                                                                                                                                                                  
## Mitochondrial Translation                                                                                                                                                                                                                     
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                             
## Mitochondrial Uncoupling                                                                                                                                                                                                                      
## Mitophagy                                                                                                                                                                                                                                     
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                          
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                        
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                                
## Mitotic Prometaphase                                                                                                                                                                                                                          
## Mitotic Prophase                                                                                                                                                                                                                              
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                    
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                                 
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                                       
## Molecules Associated With Elastic Fibres                                                                                                                                                                                                      
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                              
## Mrna Capping                                                                                                                                                                                                                                  
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                          
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                          
## Mrna Editing                                                                                                                                                                                                                                  
## Mrna Editing C To U Conversion                                                                                                                                                                                                                
## Mrna Splicing                                                                                                                                                                                                                                 
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   
## Mtor Signalling                                                                                                                                                                                                                               
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                    
## Mucopolysaccharidoses                                                                                                                                                                                                                         
## Multifunctional Anion Exchangers                                                                                                                                                                                                              
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                            
## Muscle Contraction                                                                                                                                                                                                                            
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                  
## Myogenesis                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation                                                                                                                                                                                                                  
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                                                        
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                                             
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                                                   
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                                                 
## Nade Modulates Death Signalling                                                                                                                                                                                                               
## Ncam1 Interactions                                                                                                                                                                                                                            
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                          
## Neddylation                                                                                                                                                                                                                                   
## Nef And Signal Transduction                                                                                                                                                                                                                   
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                              
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                              
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                                                                    
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                                                                                                
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                             
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                                  
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                                                                    
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Flt3                                                                                                                                                                                                                   
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                           
## Negative Regulation Of Met Activity                                                                                                                                                                                                           
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                                                           
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                                       
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                                                                    
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                                  
## Nephrin Family Interactions                                                                                                                                                                                                                   
## Nervous System Development                                                                                                                                                                                                     CREB1,EGFR,MMP9
## Netrin 1 Signaling                                                                                                                                                                                                                            
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                             
## Neurexins And Neuroligins                                                                                                                                                                                                                     
## Neurofascin Interactions                                                                                                                                                                                                                      
## Neuronal System                                                                                                                                                                                                                          CREB1
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                           
## Neurotransmitter Clearance                                                                                                                                                                                                                    
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                                                          CREB1
## Neurotransmitter Release Cycle                                                                                                                                                                                                                
## Neutrophil Degranulation                                                                                                                                                                                                CEACAM8,CST3,MMP9,SLPI
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                                                                      
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                                       
## Ngf Independant Trka Activation                                                                                                                                                                                                               
## Nicotinamide Salvaging                                                                                                                                                                                                                        
## Nicotinate Metabolism                                                                                                                                                                                                                         
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                                     
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                                        
## Noncanonical Activation Of Notch3                                                                                                                                                                                                             
## Nonhomologous End Joining Nhej                                                                                                                                                                                                                
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                                                 
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                             
## Notch Hlh Transcription Pathway                                                                                                                                                                                                               
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                   
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                   
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                            
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                                                                
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                                                    
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                                                                              
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                                                                         
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                                                              
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                                                                               
## Nrage Signals Death Through Jnk                                                                                                                                                                                                               
## Nrcam Interactions                                                                                                                                                                                                                            
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                                      
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                                         
## Ntrk2 Activates Rac1                                                                                                                                                                                                                          
## Nuclear Envelope Breakdown                                                                                                                                                                                                                    
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                                
## Nuclear Import Of Rev Protein                                                                                                                                                                                                                 
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                          
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                                        
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                    
## Nucleobase Biosynthesis                                                                                                                                                                                                                       
## Nucleobase Catabolism                                                                                                                                                                                                                         
## Nucleotide Excision Repair                                                                                                                                                                                                                    
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                          
## Nucleotide Salvage                                                                                                                                                                                                                            
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                                             
## Oas Antiviral Response                                                                                                                                                                                                                        
## Olfactory Signaling Pathway                                                                                                                                                                                                                   
## Oncogene Induced Senescence                                                                                                                                                                                                                   
## Oncogenic Mapk Signaling                                                                                                                                                                                                                      
## Opsins                                                                                                                                                                                                                                        
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                                                                       
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                     CREB1
## Organic Anion Transport                                                                                                                                                                                                                       
## Organic Anion Transporters                                                                                                                                                                                                                    
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                                     
## Organic Cation Transport                                                                                                                                                                                                                      
## Other Interleukin Signaling                                                                                                                                                                                                                   
## Other Semaphorin Interactions                                                                                                                                                                                                                 
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                                
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                                               
## P2y Receptors                                                                                                                                                                                                                                 
## P38mapk Events                                                                                                                                                                                                                                
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                          
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                                                
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                          
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                                 
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                      
## Parasite Infection                                                                                                                                                                                                                            
## Passive Transport By Aquaporins                                                                                                                                                                                                               
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                                                
## Pecam1 Interactions                                                                                                                                                                                                                           
## Pentose Phosphate Pathway                                                                                                                                                                                                                     
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                  
## Peptide Hormone Metabolism                                                                                                                                                                                                                    
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                  
## Peroxisomal Protein Import                                                                                                                                                                                                                    
## Pexophagy                                                                                                                                                                                                                                     
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                  
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                                      
## Phase 2 Plateau Phase                                                                                                                                                                                                                         
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                  
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                            
## Phase I Functionalization Of Compounds                                                                                                                                                                                                        
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                             
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                                         
## Phenylalanine Metabolism                                                                                                                                                                                                                      
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                                                 
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                                    
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                                        
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                                        
## Phospholipid Metabolism                                                                                                                                                                                                                       
## Phosphorylation Of Emi1                                                                                                                                                                                                                       
## Phosphorylation Of The Apc C                                                                                                                                                                                                                  
## Physiological Factors                                                                                                                                                                                                                         
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                           
## Pi Metabolism                                                                                                                                                                                                                                 
## Pi3k Akt Activation                                                                                                                                                                                                                           
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                                
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                               
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                                 
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                                         
## Pka Activation In Glucagon Signalling                                                                                                                                                                                                         
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                                                         
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                               
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                                 
## Platelet Activation Signaling And Aggregation                                                                                                                                                                                         SERPINE1
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                                         
## Platelet Aggregation Plug Formation                                                                                                                                                                                                           
## Platelet Calcium Homeostasis                                                                                                                                                                                                                  
## Platelet Homeostasis                                                                                                                                                                                                                          
## Platelet Sensitization By Ldl                                                                                                                                                                                                                 
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                                                
## Polo Like Kinase Mediated Events                                                                                                                                                                                                              
## Polymerase Switching                                                                                                                                                                                                                          
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                                          
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                             
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                                       
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                                                            
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                                              
## Potassium Channels                                                                                                                                                                                                                            
## Potential Therapeutics For Sars                                                                                                                                                                                                               
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                                                                
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                                                               
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                                                      
## Pre Notch Expression And Processing                                                                                                                                                                                                           
## Pre Notch Processing In Golgi                                                                                                                                                                                                                 
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                                             
## Pregnenolone Biosynthesis                                                                                                                                                                                                                     
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                                                        
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                                     
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                                     
## Processing And Activation Of Sumo                                                                                                                                                                                                             
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                                               
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                                      
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                                    
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                            
## Processing Of Smdt1                                                                                                                                                                                                                           
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                                          
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                                    
## Prolactin Receptor Signaling                                                                                                                                                                                                                  
## Prolonged Erk Activation Events                                                                                                                                                                                                               
## Propionyl Coa Catabolism                                                                                                                                                                                                                      
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                                                         
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   
## Protein Folding                                                                                                                                                                                                                               
## Protein Localization                                                                                                                                                                                                                          
## Protein Methylation                                                                                                                                                                                                                           
## Protein Protein Interactions At Synapses                                                                                                                                                                                                      
## Protein Repair                                                                                                                                                                                                                                
## Protein Ubiquitination                                                                                                                                                                                                                        
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                                      
## Pten Regulation                                                                                                                                                                                                                               
## Ptk6 Expression                                                                                                                                                                                                                               
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                     
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                                            
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                                                         
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                                                         
## Purine Catabolism                                                                                                                                                                                                                             
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                                              
## Purine Salvage                                                                                                                                                                                                                                
## Pyrimidine Catabolism                                                                                                                                                                                                                         
## Pyrimidine Salvage                                                                                                                                                                                                                            
## Pyruvate Metabolism                                                                                                                                                                                                                           
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                                                 
## Ra Biosynthesis Pathway                                                                                                                                                                                                                       
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                                         
## Rab Geranylgeranylation                                                                                                                                                                                                                       
## Rab Regulation Of Trafficking                                                                                                                                                                                                                 
## Rac1 Gtpase Cycle                                                                                                                                                                                                                             
## Rac2 Gtpase Cycle                                                                                                                                                                                                                             
## Rac3 Gtpase Cycle                                                                                                                                                                                                                             
## Raf Activation                                                                                                                                                                                                                                
## Rap1 Signalling                                                                                                                                                                                                                               
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                                          
## Ras Processing                                                                                                                                                                                                                                
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                                                     
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                                                  
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                                   
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                                                                                        
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                                                              
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                                                      
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                                    
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                             
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                         
## Recycling Pathway Of L1                                                                                                                                                                                                                       
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                              
## Reelin Signalling Pathway                                                                                                                                                                                                                     
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                               
## Regulation By C Flip                                                                                                                                                                                                                          
## Regulation Of Bach1 Activity                                                                                                                                                                                                                  
## Regulation Of Beta Cell Development                                                                                                                                                                                                           
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                                                         
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                                                   
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                                                                            
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                                   
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                                                    
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                           
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                                                     
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                                   
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                                                             
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                                                                                 
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                                                                                            
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                                                   
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                                                              
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                                               
## Regulation Of Ifna Signaling                                                                                                                                                                                                                  
## Regulation Of Ifng Signaling                                                                                                                                                                                                                  
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                                                        
## Regulation Of Insulin Secretion                                                                                                                                                                                                               
## Regulation Of Kit Signaling                                                                                                                                                                                                                   
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                                   
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                                                      
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                                                           
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                                                
## Regulation Of Pten Gene Transcription                                                                                                                                                                                                         
## Regulation Of Pten Localization                                                                                                                                                                                                               
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                           
## Regulation Of Pten Stability And Activity                                                                                                                                                                                                     
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                                              
## Regulation Of Ras By Gaps                                                                                                                                                                                                                     
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Signaling By Cbl                                                                                                                                                                                                                
## Regulation Of Signaling By Nodal                                                                                                                                                                                                              
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                                        
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                                           
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                                                 
## Relaxin Receptors                                                                                                                                                                                                                             
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                                            
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                                      
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                                                                         
## Repression Of Wnt Target Genes                                                                                                                                                                                                                
## Reproduction                                                                                                                                                                                                                                  
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                           
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                                                                  
## Resolution Of D Loop Structures                                                                                                                                                                                                               
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                                                                             
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                                       
## Respiratory Electron Transport                                                                                                                                                                                                                
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                                                                                                              
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                                    
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                                             
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                               
## Response To Metal Ions                                                                                                                                                                                                                        
## Ret Signaling                                                                                                                                                                                                                                 
## Retinoid Cycle Disease Events                                                                                                                                                                                                                 
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                            
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                                               
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                                        
## Rho Gtpase Cycle                                                                                                                                                                                                                              
## Rho Gtpase Effectors                                                                                                                                                                                                                          
## Rho Gtpases Activate Cit                                                                                                                                                                                                                      
## Rho Gtpases Activate Formins                                                                                                                                                                                                                  
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                     
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                           
## Rho Gtpases Activate Paks                                                                                                                                                                                                                     
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                     
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                                  
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                    
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                          
## Rhoa Gtpase Cycle                                                                                                                                                                                                                             
## Rhob Gtpase Cycle                                                                                                                                                                                                                             
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                           
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                          
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                          
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                          
## Rhoc Gtpase Cycle                                                                                                                                                                                                                             
## Rhod Gtpase Cycle                                                                                                                                                                                                                             
## Rhof Gtpase Cycle                                                                                                                                                                                                                             
## Rhog Gtpase Cycle                                                                                                                                                                                                                             
## Rhoh Gtpase Cycle                                                                                                                                                                                                                             
## Rhoj Gtpase Cycle                                                                                                                                                                                                                             
## Rhoq Gtpase Cycle                                                                                                                                                                                                                             
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                            
## Rhou Gtpase Cycle                                                                                                                                                                                                                             
## Rhov Gtpase Cycle                                                                                                                                                                                                                             
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                              
## Rna Polymerase I Transcription                                                                                                                                                                                                                
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                                     
## Rna Polymerase I Transcription Termination                                                                                                                                                                                                    
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                                     
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                                   
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                           
## Rna Polymerase Iii Transcription                                                                                                                                                                                                              
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                                                              
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                                                              
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                                  
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                             
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                             
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                             
## Robo Receptors Bind Akap5                                                                                                                                                                                                                     
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                            
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                                                 
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                                         
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                                               
## Rora Activates Gene Expression                                                                                                                                                                                                                
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                          
## Rrna Modification In The Mitochondrion                                                                                                                                                                                                        
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                                  
## Rrna Processing                                                                                                                                                                                                                               
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                          
## Rsk Activation                                                                                                                                                                                                                                
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                                                                     
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                                                                            
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                                                      
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                                                   
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                                                                                         
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                                                              
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                                                                    
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                                                                      
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                                                              
## Runx2 Regulates Bone Development                                                                                                                                                                                                              
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                                        
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                                              
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                                    
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                                     
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                          
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                                            
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                               
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                       
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                                 
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                                   
## S Phase                                                                                                                                                                                                                                       
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                                               
## Sars Cov 1 Infection                                                                                                                                                                                                                          
## Sars Cov 2 Infection                                                                                                                                                                                                                          
## Sars Cov Infections                                                                                                                                                                                                                           
## Scavenging By Class A Receptors                                                                                                                                                                                                               
## Scavenging By Class B Receptors                                                                                                                                                                                                               
## Scavenging By Class F Receptors                                                                                                                                                                                                               
## Scavenging Of Heme From Plasma                                                                                                                                                                                                                
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                                      
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                                               
## Selective Autophagy                                                                                                                                                                                                                           
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                           
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                                                             
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                                
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                                                        
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                                                   
## Semaphorin Interactions                                                                                                                                                                                                                       
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                           
## Sensory Perception                                                                                                                                                                                                                            
## Sensory Processing Of Sound                                                                                                                                                                                                                   
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                                                                
## Separation Of Sister Chromatids                                                                                                                                                                                                               
## Serine Biosynthesis                                                                                                                                                                                                                           
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                          
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                                      
## Serotonin Receptors                                                                                                                                                                                                                           
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                    
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                    
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                    
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                                         
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                                
## Signal Amplification                                                                                                                                                                                                                          
## Signal Attenuation                                                                                                                                                                                                                            
## Signal Regulatory Protein Family Interactions                                                                                                                                                                                                 
## Signaling By Activin                                                                                                                                                                                                                          
## Signaling By Bmp                                                                                                                                                                                                                              
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                             
## Signaling By Csf3 G Csf                                                                                                                                                                                                                       
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                                      
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                                   
## Signaling By Erythropoietin                                                                                                                                                                                                                   
## Signaling By Fgfr                                                                                                                                                                                                                             
## Signaling By Fgfr In Disease                                                                                                                                                                                                                  
## Signaling By Fgfr1                                                                                                                                                                                                                            
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                                 
## Signaling By Fgfr2                                                                                                                                                                                                                            
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                    
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                                 
## Signaling By Fgfr3                                                                                                                                                                                                                            
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                          
## Signaling By Fgfr4                                                                                                                                                                                                                            
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                                 
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                             
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                                         
## Signaling By Gpcr                                                                                                                                                                        CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL8,EGFR,WNT5A
## Signaling By Hedgehog                                                                                                                                                                                                                         
## Signaling By Hippo                                                                                                                                                                                                                            
## Signaling By Insulin Receptor                                                                                                                                                                                                                 
## Signaling By Kit In Disease                                                                                                                                                                                                                   
## Signaling By Leptin                                                                                                                                                                                                                           
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                     
## Signaling By Mapk Mutants                                                                                                                                                                                                                     
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                                                    
## Signaling By Met                                                                                                                                                                                                                              
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                                            
## Signaling By Mras Complex Mutants                                                                                                                                                                                                             
## Signaling By Mst1                                                                                                                                                                                                                             
## Signaling By Nodal                                                                                                                                                                                                                            
## Signaling By Notch                                                                                                                                                                                                                  CREB1,EGFR
## Signaling By Notch1                                                                                                                                                                                                                           
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                                               
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                                             
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                                                             
## Signaling By Notch4                                                                                                                                                                                                                           
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                       
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                       
## Signaling By Nuclear Receptors                                                                                                                                                                                             CREB1,EGFR,FOS,MMP9
## Signaling By Pdgf                                                                                                                                                                                                                             
## Signaling By Pdgfr In Disease                                                                                                                                                                                                                 
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                                                                     
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                     CREB1,EGFR,FOS,MMP9
## Signaling By Retinoic Acid                                                                                                                                                                                                                    
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                                             
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                    
## Signaling By Robo Receptors                                                                                                                                                                                                                   
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                                              
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                          
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                                                               
## Signaling By Vegf                                                                                                                                                                                                                             
## Signaling By Wnt                                                                                                                                                                                                                         WNT5A
## Signaling By Wnt In Cancer                                                                                                                                                                                                                    
## Signalling To Erks                                                                                                                                                                                                                            
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                             
## Signalling To Ras                                                                                                                                                                                                                             
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                                    
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                                                          
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                          
## Slc Transporter Disorders                                                                                                                                                                                                                     
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                                        
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                                        
## Smooth Muscle Contraction                                                                                                                                                                                                                     
## Snrnp Assembly                                                                                                                                                                                                                                
## Sodium Calcium Exchangers                                                                                                                                                                                                                     
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                                       
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                                                   
## Sodium Proton Exchangers                                                                                                                                                                                                                      
## Sos Mediated Signalling                                                                                                                                                                                                                       
## Sperm Motility And Taxes                                                                                                                                                                                                                      
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                             
## Sphingolipid Metabolism                                                                                                                                                                                                                       
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                              
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                                                   
## Stabilization Of P53                                                                                                                                                                                                                          
## Stat5 Activation                                                                                                                                                                                                                              
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                                               
## Striated Muscle Contraction                                                                                                                                                                                                                   
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                  
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                  
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                            
## Sumo Is Proteolytically Processed                                                                                                                                                                                                             
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                                  
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                                                
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                                                        
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                                       
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                                       
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                                        
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                           
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                           
## Sumoylation Of Transcription Factors                                                                                                                                                                                                          
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                                      
## Suppression Of Apoptosis                                                                                                                                                                                                                      
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                          
## Surfactant Metabolism                                                                                                                                                                                                                         
## Switching Of Origins To A Post Replicative State                                                                                                                                                                                              
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                              
## Syndecan Interactions                                                                                                                                                                                                                         
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                             
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                             
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                                                         
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                                         
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                                                      
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                                        
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                                                              
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                                                              
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                                                          
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                                 
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                               
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                                                                 
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                      
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                                                 
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                                    
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                                       
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                    
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                                    
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                      
## Synthesis Of Pa                                                                                                                                                                                                                               
## Synthesis Of Pc                                                                                                                                                                                                                               
## Synthesis Of Pe                                                                                                                                                                                                                               
## Synthesis Of Pg                                                                                                                                                                                                                               
## Synthesis Of Pi                                                                                                                                                                                                                               
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                                              
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                          
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                                       
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                                               
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                                      
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                                            
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                                    
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                                         
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                                  
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                                    
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                                                
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                                                                         
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                                                                                      
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                                         
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                                                                         
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                                         
## Tbc Rabgaps                                                                                                                                                                                                                                   
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                               WNT5A
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                                    
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                                        
## Telomere Extension By Telomerase                                                                                                                                                                                                              
## Telomere Maintenance                                                                                                                                                                                                                          
## Terminal Pathway Of Complement                                                                                                                                                                                                                
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                                      
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                                                            
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                                                               
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                                                                                  
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                                   
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                                                                       
## The Activation Of Arylsulfatases                                                                                                                                                                                                              
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                                          
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                                                  
## The Fatty Acid Cycling Model                                                                                                                                                                                                                  
## The Nlrp3 Inflammasome                                                                                                                                                                                                                        
## The Phototransduction Cascade                                                                                                                                                                                                                 
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                                   
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                                                     
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                                                                 
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                                                               
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                                    
## Thyroxine Biosynthesis                                                                                                                                                                                                                        
## Tie2 Signaling                                                                                                                                                                                                                                
## Tight Junction Interactions                                                                                                                                                                                                                   
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                          
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                            
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                                       
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                                                                                                              
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                                                               
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                                              
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                                              
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                                                   
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                                                                        
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                                                                        
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                                                                        
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain                                                                                                          
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                                        
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                                                  
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                                
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                                                       
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                               
## Trafficking Of Ampa Receptors                                                                                                                                                                                                                 
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                                                
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                                           
## Trail Signaling                                                                                                                                                                                                                               
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                           
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                                                       
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                                                          
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                                                                                          
## Transcription Of The Hiv Genome                                                                                                                                                                                                               
## Transcriptional Regulation By E2f6                                                                                                                                                                                                            
## Transcriptional Regulation By Runx1                                                                                                                                                                                                           
## Transcriptional Regulation By Runx2                                                                                                                                                                                                           
## Transcriptional Regulation By Runx3                                                                                                                                                                                                           
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                                      
## Transcriptional Regulation By Tp53                                                                                                                                                                                                         FOS
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                                          
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                                          
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                                                                 
## Transferrin Endocytosis And Recycling                                                                                                                                                                                                         
## Translation                                                                                                                                                                                                                                   
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                                                                                
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                                                 
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                                                 
## Translesion Synthesis By Polh                                                                                                                                                                                                                 
## Translesion Synthesis By Polk                                                                                                                                                                                                                 
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                                                                            
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                                          
## Transmission Across Chemical Synapses                                                                                                                                                                                                    CREB1
## Transport And Synthesis Of Paps                                                                                                                                                                                                               
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                                                                      
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                                                 
## Transport Of Fatty Acids                                                                                                                                                                                                                      
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                                                           
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                                                                 
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                                   
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                                                                                      
## Transport Of Nucleotide Sugars                                                                                                                                                                                                                
## Transport Of Organic Anions                                                                                                                                                                                                                   
## Transport Of Small Molecules                                                                                                                                                                                                       BEST2,PCSK9
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                                   
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                                                       
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                                            
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                           
## Triglyceride Biosynthesis                                                                                                                                                                                                                     
## Triglyceride Catabolism                                                                                                                                                                                                                       
## Triglyceride Metabolism                                                                                                                                                                                                                       
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                                                         
## Trna Aminoacylation                                                                                                                                                                                                                           
## Trna Modification In The Mitochondrion                                                                                                                                                                                                        
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                                  
## Trna Processing                                                                                                                                                                                                                               
## Trna Processing In The Mitochondrion                                                                                                                                                                                                          
## Trna Processing In The Nucleus                                                                                                                                                                                                                
## Trp Channels                                                                                                                                                                                                                                  
## Tryptophan Catabolism                                                                                                                                                                                                                         
## Type I Hemidesmosome Assembly                                                                                                                                                                                                                 
## Tyrosine Catabolism                                                                                                                                                                                                                           
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                           
## Ub Specific Processing Proteases                                                                                                                                                                                                    BIRC3,IL33
## Ubiquinol Biosynthesis                                                                                                                                                                                                                        
## Uch Proteinases                                                                                                                                                                                                                               
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                                                                 
## Unwinding Of Dna                                                                                                                                                                                                                              
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                                        
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                                         
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                                       
## Urea Cycle                                                                                                                                                                                                                                    
## Vasopressin Like Receptors                                                                                                                                                                                                                    
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                                                  
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                             
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                            
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                                         
## Vesicle Mediated Transport                                                                                                                                                                                                          EGFR,WNT5A
## Viral Messenger Rna Synthesis                                                                                                                                                                                                                 
## Visual Phototransduction                                                                                                                                                                                                                      
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                                 
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                              
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                            
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                                
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                               
## Vitamins                                                                                                                                                                                                                                      
## Vldl Assembly                                                                                                                                                                                                                                 
## Vldl Clearance                                                                                                                                                                                                                                
## Voltage Gated Potassium Channels                                                                                                                                                                                                              
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                                
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                              
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                                
## Xenobiotics                                                                                                                                                                                                                                   
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                                                 
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                                                      
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                                               
## Zinc Transporters                                                                                                                                                                                                                             
## 
## $pml
##                                                                                                                                                                                                                                                                     label
## Interleukin 10 Signaling                                                                                                                                                                                                                         Interleukin 10 Signaling
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                     Interleukin 4 And Interleukin 13 Signaling
## Interleukin 18 Signaling                                                                                                                                                                                                                         Interleukin 18 Signaling
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                   Chemokine Receptors Bind Chemokines
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                 Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                       Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                               Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                         P75ntr Signals Via Nf Kb
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                           Purinergic Signaling In Leishmaniasis Infection
## Interleukin 1 Processing                                                                                                                                                                                                                         Interleukin 1 Processing
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                           Tnfs Bind Their Physiological Receptors
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                       Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Diseases Of Immune System                                                                                                                                                                                                                       Diseases Of Immune System
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                             Regulation Of Tlr By Endogenous Ligand
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                         Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                   Cd28 Dependent Vav1 Pathway
## Killing Mechanisms                                                                                                                                                                                                                                     Killing Mechanisms
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                       Toll Like Receptor 9 Tlr9 Cascade
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                   Activated Tak1 Mediates P38 Mapk Activation
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                             Myd88 Independent Tlr4 Cascade
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                           Nf Kb Is Activated And Signals Survival
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                 P75ntr Recruits Signalling Complexes
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                           Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                   Trafficking And Processing Of Endosomal Tlr
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                         Nod1 2 Signaling Pathway
## Interleukin 15 Signaling                                                                                                                                                                                                                         Interleukin 15 Signaling
## Toll Like Receptor Cascades                                                                                                                                                                                                                   Toll Like Receptor Cascades
## Pyroptosis                                                                                                                                                                                                                                                     Pyroptosis
## Alternative Complement Activation                                                                                                                                                                                                       Alternative Complement Activation
## Fasl Cd95l Signaling                                                                                                                                                                                                                                 Fasl Cd95l Signaling
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                           G2 M Dna Replication Checkpoint
## Galactose Catabolism                                                                                                                                                                                                                                 Galactose Catabolism
## Hdl Clearance                                                                                                                                                                                                                                               Hdl Clearance
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                               Mecp2 Regulates Transcription Factors
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                       Nostrin Mediated Enos Trafficking
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                         Caspase Activation Via Death Receptors In The Presence Of Ligand
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                           Sumoylation Of Dna Methylation Proteins
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                               Rip Mediated Nfkb Activation Via Zbp1
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                         Biosynthesis Of Epa Derived Spms
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                   Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation                                                                                                                                                                                                                 Fibronectin Matrix Formation
## Phosphorylation Of Emi1                                                                                                                                                                                                                           Phosphorylation Of Emi1
## Regulated Necrosis                                                                                                                                                                                                                                     Regulated Necrosis
## Scavenging By Class B Receptors                                                                                                                                                                                                           Scavenging By Class B Receptors
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                 Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                     Tnfr1 Mediated Ceramide Production
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                           Irak4 Deficiency Tlr2 4
## Interleukin 2 Family Signaling                                                                                                                                                                                                             Interleukin 2 Family Signaling
## Interleukin 17 Signaling                                                                                                                                                                                                                         Interleukin 17 Signaling
## Interleukin 1 Family Signaling                                                                                                                                                                                                             Interleukin 1 Family Signaling
## Scavenging By Class A Receptors                                                                                                                                                                                                           Scavenging By Class A Receptors
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                 Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                       Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation                                                                                                                                                                                                                                 Creb Phosphorylation
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                 Ikba Variant Leads To Eda Id
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 Toll Like Receptor Tlr1 Tlr2 Cascade
## Activation Of C3 And C5                                                                                                                                                                                                                           Activation Of C3 And C5
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                     Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                 Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                     Ctla4 Inhibitory Signaling
## Hdl Assembly                                                                                                                                                                                                                                                 Hdl Assembly
## Heme Signaling                                                                                                                                                                                                                                             Heme Signaling
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                             Inactivation Of Cdc42 And Rac1
## Inflammasomes                                                                                                                                                                                                                                               Inflammasomes
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                       Mecp2 Regulates Transcription Of Neuronal Ligands
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                               Runx3 Regulates Wnt Signaling
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                     Zbp1 Dai Mediated Induction Of Type I Ifns
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                 Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                               Cd163 Mediating An Anti Inflammatory Response
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                   E2f Enabled Inhibition Of Pre Replication Complex Formation
## Interleukin 23 Signaling                                                                                                                                                                                                                         Interleukin 23 Signaling
## Interleukin 9 Signaling                                                                                                                                                                                                                           Interleukin 9 Signaling
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                   Trif Mediated Programmed Cell Death
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                         Ikk Complex Recruitment Mediated By Rip1
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                             Ovarian Tumor Domain Proteases
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                           Traf6 Mediated Nf Kb Activation
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                             Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                       Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                         Camk Iv Mediated Phosphorylation Of Creb
## Chylomicron Assembly                                                                                                                                                                                                                                 Chylomicron Assembly
## Chylomicron Remodeling                                                                                                                                                                                                                             Chylomicron Remodeling
## Hdl Remodeling                                                                                                                                                                                                                                             Hdl Remodeling
## Interleukin 21 Signaling                                                                                                                                                                                                                         Interleukin 21 Signaling
## Mapk3 Erk1 Activation                                                                                                                                                                                                                               Mapk3 Erk1 Activation
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                               Mastl Facilitates Mitotic Progression
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                     Regulation Of Foxo Transcriptional Activity By Acetylation
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                               Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                         Condensation Of Prometaphase Chromosomes
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                               Dermatan Sulfate Biosynthesis
## Dscam Interactions                                                                                                                                                                                                                                     Dscam Interactions
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                     Endosomal Vacuolar Pathway
## Enos Activation                                                                                                                                                                                                                                           Enos Activation
## Interleukin 27 Signaling                                                                                                                                                                                                                         Interleukin 27 Signaling
## Interleukin 6 Signaling                                                                                                                                                                                                                           Interleukin 6 Signaling
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   Receptor Mediated Mitophagy
## Regulation By C Flip                                                                                                                                                                                                                                 Regulation By C Flip
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                       Rho Gtpases Activate Ktn1
## Signaling By Leptin                                                                                                                                                                                                                                   Signaling By Leptin
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                           Sumoylation Of Immune Response Proteins
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                         Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                       Tnfr2 Non Canonical Nf Kb Pathway
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                         Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                       Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## G0 And Early G1                                                                                                                                                                                                                                           G0 And Early G1
## Interleukin 2 Signaling                                                                                                                                                                                                                           Interleukin 2 Signaling
## Interleukin 35 Signalling                                                                                                                                                                                                                       Interleukin 35 Signalling
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                     Interleukin Receptor Shc Signaling
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch2 Intracellular Domain Regulates Transcription
## Signaling By Interleukins                                                                                                                                                                                                                       Signaling By Interleukins
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                       Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                               Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                         Ticam1 Dependent Activation Of Irf3 Irf7
## Costimulation By The Cd28 Family                                                                                                                                                                                                         Costimulation By The Cd28 Family
## Pd 1 Signaling                                                                                                                                                                                                                                             Pd 1 Signaling
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                 Advanced Glycosylation Endproduct Receptor Signaling
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                   Apoptosis Induced Dna Fragmentation
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                               Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                     Dissolution Of Fibrin Clot
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                             Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                         Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                 Tnfr1 Induced Proapoptotic Signaling
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                               Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Dap12 Interactions                                                                                                                                                                                                                                     Dap12 Interactions
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                       Ripk1 Mediated Regulated Necrosis
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                         Tnfr1 Induced Nfkappab Signaling Pathway
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                       Dcc Mediated Attractive Signaling
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                               Early Phase Of Hiv Life Cycle
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                   Golgi Cisternae Pericentriolar Stack Reorganization
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                     Irak1 Recruits Ikk Complex
## Repression Of Wnt Target Genes                                                                                                                                                                                                             Repression Of Wnt Target Genes
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                   Mapk Targets Nuclear Events Mediated By Map Kinases
## Nicotinate Metabolism                                                                                                                                                                                                                               Nicotinate Metabolism
## Peptide Ligand Binding Receptors                                                                                                                                                                                                         Peptide Ligand Binding Receptors
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                             Depolymerisation Of The Nuclear Lamina
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                       Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                         Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Perk Regulates Gene Expression                                                                                                                                                                                                             Perk Regulates Gene Expression
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                             Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                     Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                           Wnt5a Dependent Internalization Of Fzd4
## Cargo Concentration In The Er                                                                                                                                                                                                               Cargo Concentration In The Er
## Cd28 Co Stimulation                                                                                                                                                                                                                                   Cd28 Co Stimulation
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Death Genes
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                         Nrif Signals Cell Death From The Nucleus
## The Nlrp3 Inflammasome                                                                                                                                                                                                                             The Nlrp3 Inflammasome
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                 Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                 Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Cycle Genes
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                               Regulation Of Tnfr1 Signaling
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                               Abc Transporters In Lipid Homeostasis
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                               Diseases Associated With Glycosylation Precursor Biosynthesis
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                         Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                           Mecp2 Regulates Neuronal Receptors And Channels
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                   Signaling By Cytosolic Fgfr1 Fusion Mutants
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Interleukin 1 Signaling                                                                                                                                                                                                                           Interleukin 1 Signaling
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                           Biosynthesis Of Specialized Proresolving Mediators Spms
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                               Initiation Of Nuclear Envelope Ne Reformation
## Nicotinamide Salvaging                                                                                                                                                                                                                             Nicotinamide Salvaging
## Other Semaphorin Interactions                                                                                                                                                                                                               Other Semaphorin Interactions
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                     Phase 4 Resting Membrane Potential
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   Plasma Lipoprotein Assembly
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                 Transcription Of E2f Targets Under Negative Control By Dream Complex
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                     Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                               G Beta Gamma Signalling Through Cdc42
## Phosphorylation Of The Apc C                                                                                                                                                                                                                 Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                 Pka Mediated Phosphorylation Of Creb
## Signaling By Kit In Disease                                                                                                                                                                                                                   Signaling By Kit In Disease
## Signaling By Pdgfr In Disease                                                                                                                                                                                                               Signaling By Pdgfr In Disease
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                               Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                 Branched Chain Amino Acid Catabolism
## Interleukin 12 Family Signaling                                                                                                                                                                                                           Interleukin 12 Family Signaling
## Interleukin 37 Signaling                                                                                                                                                                                                                         Interleukin 37 Signaling
## Rho Gtpases Activate Paks                                                                                                                                                                                                                       Rho Gtpases Activate Paks
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                       Cd28 Dependent Pi3k Akt Signaling
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                   Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                     E2f Mediated Regulation Of Dna Replication
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                               Pink1 Prkn Mediated Mitophagy
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                               Incretin Synthesis Secretion And Inactivation
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                     Raf Independent Mapk1 3 Activation
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                 Apc C Cdc20 Mediated Degradation Of Cyclin B
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                             Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Growth Hormone Receptor Signaling                                                                                                                                                                                                       Growth Hormone Receptor Signaling
## Interleukin 6 Family Signaling                                                                                                                                                                                                             Interleukin 6 Family Signaling
## Tnf Signaling                                                                                                                                                                                                                                               Tnf Signaling
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                     Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Triglyceride Catabolism                                                                                                                                                                                                                           Triglyceride Catabolism
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                         Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Basigin Interactions                                                                                                                                                                                                                                 Basigin Interactions
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                           Cyclin A B1 B2 Associated Events During G2 M Transition
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                 Inactivation Of Csf3 G Csf Signaling
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                               Constitutive Signaling By Akt1 E17k In Cancer
## Interleukin 20 Family Signaling                                                                                                                                                                                                           Interleukin 20 Family Signaling
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                               Wnt Ligand Biogenesis And Trafficking
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                               Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Foxo Mediated Transcription                                                                                                                                                                                                                   Foxo Mediated Transcription
## Interleukin 12 Signaling                                                                                                                                                                                                                         Interleukin 12 Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                         Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                               Vegfr2 Mediated Vascular Permeability
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                         Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Circadian Clock                                                                                                                                                                                                                                           Circadian Clock
## Dap12 Signaling                                                                                                                                                                                                                                           Dap12 Signaling
## Death Receptor Signalling                                                                                                                                                                                                                       Death Receptor Signalling
## Downstream Signal Transduction                                                                                                                                                                                                             Downstream Signal Transduction
## G1 S Specific Transcription                                                                                                                                                                                                                   G1 S Specific Transcription
## Mitophagy                                                                                                                                                                                                                                                       Mitophagy
## Myogenesis                                                                                                                                                                                                                                                     Myogenesis
## Netrin 1 Signaling                                                                                                                                                                                                                                     Netrin 1 Signaling
## Scavenging Of Heme From Plasma                                                                                                                                                                                                             Scavenging Of Heme From Plasma
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                           Activation Of Bh3 Only Proteins
## Signaling By Csf3 G Csf                                                                                                                                                                                                                           Signaling By Csf3 G Csf
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                             Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Egfr Downregulation                                                                                                                                                                                                                                   Egfr Downregulation
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr1 Mutant Receptor Activation
## G Protein Beta Gamma Signalling                                                                                                                                                                                                           G Protein Beta Gamma Signalling
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                               Plasma Lipoprotein Remodeling
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                   Regulation Of Mecp2 Expression And Activity
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   Rho Gtpases Activate Iqgaps
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                 Transcriptional Regulation Of Pluripotent Stem Cells
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                           Activation Of Matrix Metalloproteinases
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                           Intrinsic Pathway For Apoptosis
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                 Plasma Lipoprotein Clearance
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                       Rhoj Gtpase Cycle
## Rhov Gtpase Cycle                                                                                                                                                                                                                                       Rhov Gtpase Cycle
## Signaling By Notch2                                                                                                                                                                                                                                   Signaling By Notch2
## Complement Cascade                                                                                                                                                                                                                                     Complement Cascade
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                         Gpvi Mediated Activation Cascade
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                 Negative Regulators Of Ddx58 Ifih1 Signaling
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                 P75 Ntr Receptor Mediated Signalling
## Rhou Gtpase Cycle                                                                                                                                                                                                                                       Rhou Gtpase Cycle
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                 Binding And Uptake Of Ligands By Scavenger Receptors
## Ca Dependent Events                                                                                                                                                                                                                                   Ca Dependent Events
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                           Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Interleukin 7 Signaling                                                                                                                                                                                                                           Interleukin 7 Signaling
## Metalloprotease Dubs                                                                                                                                                                                                                                 Metalloprotease Dubs
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                 Nuclear Pore Complex Npc Disassembly
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                               Regulation Of Tp53 Expression And Degradation
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                 Rho Gtpases Activate Wasps And Waves
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                       Rhoh Gtpase Cycle
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                       Rhoq Gtpase Cycle
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                 Ros And Rns Production In Phagocytes
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                         Association Of Tric Cct With Target Proteins During Biosynthesis
## Ca2 Pathway                                                                                                                                                                                                                                                   Ca2 Pathway
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                 Cytosolic Sensors Of Pathogen Associated Dna
## Generation Of Second Messenger Molecules                                                                                                                                                                                         Generation Of Second Messenger Molecules
## Ngf Stimulated Transcription                                                                                                                                                                                                                 Ngf Stimulated Transcription
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                               Signaling By Fgfr1 In Disease
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                   Transcriptional Regulation By Mecp2
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                 Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Triglyceride Metabolism                                                                                                                                                                                                                           Triglyceride Metabolism
## Beta Defensins                                                                                                                                                                                                                                             Beta Defensins
## Dag And Ip3 Signaling                                                                                                                                                                                                                               Dag And Ip3 Signaling
## Dna Methylation                                                                                                                                                                                                                                           Dna Methylation
## Ephb Mediated Forward Signaling                                                                                                                                                                                                           Ephb Mediated Forward Signaling
## Rhof Gtpase Cycle                                                                                                                                                                                                                                       Rhof Gtpase Cycle
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                       Rnd1 Gtpase Cycle
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                       Rnd3 Gtpase Cycle
## Copii Mediated Vesicle Transport                                                                                                                                                                                                         Copii Mediated Vesicle Transport
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                       Rnd2 Gtpase Cycle
## Signaling By Scf Kit                                                                                                                                                                                                                                 Signaling By Scf Kit
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                 Transcriptional Regulation Of Granulopoiesis
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                         Extra Nuclear Estrogen Signaling
## Interferon Alpha Beta Signaling                                                                                                                                                                                                           Interferon Alpha Beta Signaling
## Interferon Gamma Signaling                                                                                                                                                                                                                     Interferon Gamma Signaling
## Irs Mediated Signalling                                                                                                                                                                                                                           Irs Mediated Signalling
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                               Mapk6 Mapk4 Signaling
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                     Metabolism Of Fat Soluble Vitamins
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch1 Intracellular Domain Regulates Transcription
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                         Prc2 Methylates Histones And Dna
## Rhog Gtpase Cycle                                                                                                                                                                                                                                       Rhog Gtpase Cycle
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                             Signaling By Tgf Beta Receptor Complex
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Cycle Genes
## Antigen Processing Cross Presentation                                                                                                                                                                                               Antigen Processing Cross Presentation
## Apoptotic Execution Phase                                                                                                                                                                                                                       Apoptotic Execution Phase
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                           Chondroitin Sulfate Dermatan Sulfate Metabolism
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                       Clec7a Dectin 1 Signaling
## Defensins                                                                                                                                                                                                                                                       Defensins
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       Diseases Of Programmed Cell Death
## G Protein Mediated Events                                                                                                                                                                                                                       G Protein Mediated Events
## Initial Triggering Of Complement                                                                                                                                                                                                         Initial Triggering Of Complement
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                   Insulin Receptor Signalling Cascade
## Nuclear Envelope Breakdown                                                                                                                                                                                                                     Nuclear Envelope Breakdown
## Rhod Gtpase Cycle                                                                                                                                                                                                                                       Rhod Gtpase Cycle
## Signaling By Egfr                                                                                                                                                                                                                                       Signaling By Egfr
## Signaling By Ptk6                                                                                                                                                                                                                                       Signaling By Ptk6
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                           Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                             Transcriptional Activation Of Mitochondrial Biogenesis
## Antimicrobial Peptides                                                                                                                                                                                                                             Antimicrobial Peptides
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   Arachidonic Acid Metabolism
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                           Asymmetric Localization Of Pcp Proteins
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                   Class B 2 Secretin Family Receptors
## Collagen Degradation                                                                                                                                                                                                                                 Collagen Degradation
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                             Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                         Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                               Ncam Signaling For Neurite Out Growth
## Nrage Signals Death Through Jnk                                                                                                                                                                                                           Nrage Signals Death Through Jnk
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                       Nuclear Events Kinase And Transcription Factor Activation
## Programmed Cell Death                                                                                                                                                                                                                               Programmed Cell Death
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                       Rac2 Gtpase Cycle
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                       Rac3 Gtpase Cycle
## Rhob Gtpase Cycle                                                                                                                                                                                                                                       Rhob Gtpase Cycle
## Semaphorin Interactions                                                                                                                                                                                                                           Semaphorin Interactions
## Signaling By Fgfr In Disease                                                                                                                                                                                                                 Signaling By Fgfr In Disease
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                       Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Pdgf                                                                                                                                                                                                                                       Signaling By Pdgf
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                     Sirt1 Negatively Regulates Rrna Expression
## Unfolded Protein Response Upr                                                                                                                                                                                                               Unfolded Protein Response Upr
## 2 Ltr Circle Formation                                                                                                                                                                                                                             2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                           A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism                                                                                                                                                                                                                                   Abacavir Metabolism
## Abacavir Transmembrane Transport                                                                                                                                                                                                         Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism                                                                                                                                                                                                       Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport                                                                                                                                                                                             Abc Family Proteins Mediated Transport
## Abc Transporter Disorders                                                                                                                                                                                                                       Abc Transporter Disorders
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                         Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                   Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                               Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                   Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                             Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                 Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                       Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                   Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                         Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                               Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                   Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                               Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                           Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                 Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                   Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                   Activation Of Bad And Translocation To Mitochondria
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                   Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                 Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                             Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                 Activation Of Nmda Receptors And Postsynaptic Events
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                 Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                 Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                 Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1                                                                                                                                                                                                                                     Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                           Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells                                                                                                                                                                                                                 Activation Of Ras In B Cells
## Activation Of Smo                                                                                                                                                                                                                                       Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                               Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade                                                                                                                                                                                   Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex                                                                                                                                                                                       Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                 Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors                                                                                                                                                                                                                 Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                 Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                 Acyl Chain Remodelling Of Ps
## Adaptive Immune System                                                                                                                                                                                                                             Adaptive Immune System
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                 Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                 Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions                                                                                                                                                                                                           Adherens Junctions Interactions
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                           Adora2b Mediated Anti Inflammatory Cytokines Production
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                       Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                     Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                   Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors                                                                                                                                                                                                                                               Adrenoceptors
## Aflatoxin Activation And Detoxification                                                                                                                                                                                           Aflatoxin Activation And Detoxification
## Aggrephagy                                                                                                                                                                                                                                                     Aggrephagy
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                       Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins                                                                                                                                                                                                                                           Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                     Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                 Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                         Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors                                                                                                                                                                                                             Amine Ligand Binding Receptors
## Amino Acid Conjugation                                                                                                                                                                                                                             Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                           Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                         Ampk Inhibits Chrebp Transcriptional Activation Activity
## Amyloid Fiber Formation                                                                                                                                                                                                                           Amyloid Fiber Formation
## Anchoring Fibril Formation                                                                                                                                                                                                                     Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                     Anchoring Of The Basal Body To The Plasma Membrane
## Androgen Biosynthesis                                                                                                                                                                                                                               Androgen Biosynthesis
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                     Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                         Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                         Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                   Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                         Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                       Apc C Mediated Degradation Of Cell Cycle Proteins
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                           Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                             Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                           Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis                                                                                                                                                                                                                                                       Apoptosis
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                 Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                           Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response                                                                                                                                                                                                     Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport                                                                                                                                                                                                                 Aquaporin Mediated Transport
## Arachidonate Production From Dag                                                                                                                                                                                                         Arachidonate Production From Dag
## Arms Mediated Activation                                                                                                                                                                                                                         Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                 Aryl Hydrocarbon Receptor Signalling
## Asparagine N Linked Glycosylation                                                                                                                                                                                                       Asparagine N Linked Glycosylation
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                   Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                         Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                         Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                 Assembly Of Collagen Fibrils And Other Multimeric Structures
## Assembly Of The Hiv Virion                                                                                                                                                                                                                     Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                         Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                           Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                       Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                 Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry                                                                                                                                                                                                                                 Attachment And Entry
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                         Attachment Of Gpi Anchor To Upar
## Attenuation Phase                                                                                                                                                                                                                                       Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                       Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Aurka Activation By Tpx2                                                                                                                                                                                                                         Aurka Activation By Tpx2
## Autophagy                                                                                                                                                                                                                                                       Autophagy
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                   B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair                                                                                                                                                                                                                                 Base Excision Repair
## Base Excision Repair Ap Site Formation                                                                                                                                                                                             Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                       Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                             Beta Catenin Independent Wnt Signaling
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                 Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                 Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                     Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                             Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                       Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                             Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                         Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                               Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters                                                                                                                                                                                                                         Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                     Bile Acid And Bile Salt Metabolism
## Biological Oxidations                                                                                                                                                                                                                               Biological Oxidations
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                       Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins                                                                                                                                                                                                                         Biosynthesis Of Maresins
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                     Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Biotin Transport And Metabolism                                                                                                                                                                                                           Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis                                                                                                                                                                                                         Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                 Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                   Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                 Butyrophilin Btn Family Interactions
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                 C Type Lectin Receptors Clrs
## Ca2 Activated K Channels                                                                                                                                                                                                                         Ca2 Activated K Channels
## Calcineurin Activates Nfat                                                                                                                                                                                                                     Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                         Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                   Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction                                                                                                                                                                                                                                     Cardiac Conduction
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                   Cargo Recognition For Clathrin Mediated Endocytosis
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                               Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism                                                                                                                                                                                                                                 Carnitine Metabolism
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                 Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                     Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                             Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                           Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                 Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                     Cdc42 Gtpase Cycle
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                 Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication                                                                                                                                                                                                                           Cell Cell Communication
## Cell Cell Junction Organization                                                                                                                                                                                                           Cell Cell Junction Organization
## Cell Cycle                                                                                                                                                                                                                                                     Cell Cycle
## Cell Cycle Checkpoints                                                                                                                                                                                                                             Cell Cycle Checkpoints
## Cell Cycle Mitotic                                                                                                                                                                                                                                     Cell Cycle Mitotic
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                               Cell Death Signalling Via Nrage Nrif And Nade
## Cell Extracellular Matrix Interactions                                                                                                                                                                                             Cell Extracellular Matrix Interactions
## Cell Junction Organization                                                                                                                                                                                                                     Cell Junction Organization
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                             Cell Surface Interactions At The Vascular Wall
## Cellular Hexose Transport                                                                                                                                                                                                                       Cellular Hexose Transport
## Cellular Response To Chemical Stress                                                                                                                                                                                                 Cellular Response To Chemical Stress
## Cellular Response To Heat Stress                                                                                                                                                                                                         Cellular Response To Heat Stress
## Cellular Response To Hypoxia                                                                                                                                                                                                                 Cellular Response To Hypoxia
## Cellular Response To Starvation                                                                                                                                                                                                           Cellular Response To Starvation
## Cellular Responses To External Stimuli                                                                                                                                                                                             Cellular Responses To External Stimuli
## Cellular Senescence                                                                                                                                                                                                                                   Cellular Senescence
## Cgmp Effects                                                                                                                                                                                                                                                 Cgmp Effects
## Chaperone Mediated Autophagy                                                                                                                                                                                                                 Chaperone Mediated Autophagy
## Chl1 Interactions                                                                                                                                                                                                                                       Chl1 Interactions
## Cholesterol Biosynthesis                                                                                                                                                                                                                         Cholesterol Biosynthesis
## Choline Catabolism                                                                                                                                                                                                                                     Choline Catabolism
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                         Chondroitin Sulfate Biosynthesis
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                     Chrebp Activates Metabolic Gene Expression
## Chromatin Modifying Enzymes                                                                                                                                                                                                                   Chromatin Modifying Enzymes
## Chromosome Maintenance                                                                                                                                                                                                                             Chromosome Maintenance
## Chylomicron Clearance                                                                                                                                                                                                                               Chylomicron Clearance
## Cilium Assembly                                                                                                                                                                                                                                           Cilium Assembly
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   Citric Acid Cycle Tca Cycle
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                     Class A 1 Rhodopsin Like Receptors
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                 Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                 Class I Mhc Mediated Antigen Processing Presentation
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                   Class I Peroxisomal Membrane Protein Import
## Clathrin Mediated Endocytosis                                                                                                                                                                                                               Clathrin Mediated Endocytosis
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                           Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                     Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis                                                                                                                                                                                                                           Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                             Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                   Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization                                                                                                                                                                                                                 Collagen Chain Trimerization
## Collagen Formation                                                                                                                                                                                                                                     Collagen Formation
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                           Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                     Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis                                                                                                                                                                                                                                 Complex I Biogenesis
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                 Condensation Of Prophase Chromosomes
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                 Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                       Constitutive Signaling By Aberrant Pi3k In Cancer
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                     Constitutive Signaling By Egfrviii
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                         Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                               Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                     Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                         Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                     Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                               Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                           Copi Independent Golgi To Er Retrograde Traffic
## Copi Mediated Anterograde Transport                                                                                                                                                                                                   Copi Mediated Anterograde Transport
## Creatine Metabolism                                                                                                                                                                                                                                   Creatine Metabolism
## Creation Of C4 And C2 Activators                                                                                                                                                                                                         Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes                                                                                                                                                                                                                 Creb3 Factors Activate Genes
## Cristae Formation                                                                                                                                                                                                                                       Cristae Formation
## Crmps In Sema3a Signaling                                                                                                                                                                                                                       Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                           Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                     Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                         Crosslinking Of Collagen Fibrils
## Cs Ds Degradation                                                                                                                                                                                                                                       Cs Ds Degradation
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                         Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1                                                                                                                                                                                                         Cyclin D Associated Events In G1
## Cyp2e1 Reactions                                                                                                                                                                                                                                         Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                         Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                     Cytochrome P450 Arranged By Substrate Type
## Cytokine Signaling In Immune System                                                                                                                                                                                                   Cytokine Signaling In Immune System
## Cytoprotection By Hmox1                                                                                                                                                                                                                           Cytoprotection By Hmox1
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                             Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                         Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                               Cytosolic Trna Aminoacylation
## Darpp 32 Events                                                                                                                                                                                                                                           Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                         Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                     Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna                                                                                                                                                                                                                               Deadenylation Of Mrna
## Dectin 2 Family                                                                                                                                                                                                                                           Dectin 2 Family
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                   Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                   Defective B4galt7 Causes Eds Progeroid Type
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                               Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                               Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                 Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                               Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                               Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                       Defective Ext2 Causes Exostoses 2
## Defective F9 Activation                                                                                                                                                                                                                           Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                           Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                       Defective Factor Viii Causes Hemophilia A
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                     Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                   Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                       Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                         Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                   Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                     Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                         Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin                                                                                                                                                                                                                                   Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                             Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                         Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl                                                                                                                                                                                                                                     Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                               Degradation Of Gli1 By The Proteasome
## Degradation Of The Extracellular Matrix                                                                                                                                                                                           Degradation Of The Extracellular Matrix
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                         Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                       Detoxification Of Reactive Oxygen Species
## Deubiquitination                                                                                                                                                                                                                                         Deubiquitination
## Developmental Biology                                                                                                                                                                                                                               Developmental Biology
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                               Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion                                                                                                                                                                                                                                                       Digestion
## Digestion And Absorption                                                                                                                                                                                                                         Digestion And Absorption
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                       Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid                                                                                                                                                                                                                     Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                               Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With O Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                             Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair                                                                                                                                                                                                         Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                   Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair                                                                                                                                                                                                                             Diseases Of Dna Repair
## Diseases Of Glycosylation                                                                                                                                                                                                                       Diseases Of Glycosylation
## Diseases Of Metabolism                                                                                                                                                                                                                             Diseases Of Metabolism
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                           Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                             Diseases Of Mitotic Cell Cycle
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                         Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Disinhibition Of Snare Formation                                                                                                                                                                                                         Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters                                                                                                                                                                                           Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                         Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass                                                                                                                                                                                                                                       Dna Damage Bypass
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                         Dna Damage Recognition In Gg Ner
## Dna Damage Reversal                                                                                                                                                                                                                                   Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                               Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair                                                                                                                                                                                                             Dna Double Strand Break Repair
## Dna Double Strand Break Response                                                                                                                                                                                                         Dna Double Strand Break Response
## Dna Repair                                                                                                                                                                                                                                                     Dna Repair
## Dna Replication                                                                                                                                                                                                                                           Dna Replication
## Dna Replication Initiation                                                                                                                                                                                                                     Dna Replication Initiation
## Dna Replication Pre Initiation                                                                                                                                                                                                             Dna Replication Pre Initiation
## Dna Strand Elongation                                                                                                                                                                                                                               Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                           Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors                                                                                                                                                                                                                                     Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                           Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                       Downregulation Of Erbb2 Signaling
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                       Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                         Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                               Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                     Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner                                                                                                                                                                                                                           Dual Incision In Gg Ner
## Dual Incision In Tc Ner                                                                                                                                                                                                                           Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                       E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Ecm Proteoglycans                                                                                                                                                                                                                                       Ecm Proteoglycans
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                     Effects Of Pip2 Hydrolysis
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                       Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           Egfr Transactivation By Gastrin
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                             Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                   Eicosanoid Ligand Binding Receptors
## Eicosanoids                                                                                                                                                                                                                                                   Eicosanoids
## Elastic Fibre Formation                                                                                                                                                                                                                           Elastic Fibre Formation
## Electric Transmission Across Gap Junctions                                                                                                                                                                                     Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                       Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols                                                                                                                                                                                                                                     Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                             Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                         Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                             Eph Ephrin Mediated Repulsion Of Cells
## Eph Ephrin Signaling                                                                                                                                                                                                                                 Eph Ephrin Signaling
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                     Epha Mediated Growth Cone Collapse
## Ephrin Signaling                                                                                                                                                                                                                                         Ephrin Signaling
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                         Epigenetic Regulation Of Gene Expression
## Er Quality Control Compartment Erqc                                                                                                                                                                                                   Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport                                                                                                                                                                                                       Er To Golgi Anterograde Transport
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                             Erbb2 Activates Ptk6 Signaling
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                               Erbb2 Regulates Cell Motility
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                   Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets                                                                                                                                                                                                                                         Erk Mapk Targets
## Erks Are Inactivated                                                                                                                                                                                                                                 Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                             Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                             Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                           Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                   Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras                                                                                                                                                                                                                 Erythropoietin Activates Ras
## Erythropoietin Activates Stat5                                                                                                                                                                                                             Erythropoietin Activates Stat5
## Esr Mediated Signaling                                                                                                                                                                                                                             Esr Mediated Signaling
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                     Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis                                                                                                                                                                                                                               Estrogen Biosynthesis
## Estrogen Dependent Gene Expression                                                                                                                                                                                                     Estrogen Dependent Gene Expression
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                   Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation                                                                                                                                                                                                                                       Ethanol Oxidation
## Eukaryotic Translation Elongation                                                                                                                                                                                                       Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation                                                                                                                                                                                                       Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                           Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres                                                                                                                                                                                                                             Extension Of Telomeres
## Extracellular Matrix Organization                                                                                                                                                                                                       Extracellular Matrix Organization
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                               Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway                                                                                                                                                                                                                             Fanconi Anemia Pathway
## Fatty Acid Metabolism                                                                                                                                                                                                                               Fatty Acid Metabolism
## Fatty Acids                                                                                                                                                                                                                                                   Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                   Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                     Fbxw7 Mutants And Notch1 In Cancer
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                   Fc Epsilon Receptor Fceri Signaling
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                         Fceri Mediated Ca 2 Mobilization
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             Fceri Mediated Mapk Activation
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                           Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                 Fcgamma Receptor Fcgr Dependent Phagocytosis
## Fcgr Activation                                                                                                                                                                                                                                           Fcgr Activation
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                             Fcgr3a Mediated Il10 Synthesis
## Fertilization                                                                                                                                                                                                                                               Fertilization
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                     Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                 Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                             Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling                                                                                                                                                                                                                                             Flt3 Signaling
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                               Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease                                                                                                                                                                                                                       Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                       Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                 Folding Of Actin By Cct Tric
## Formation Of Apoptosome                                                                                                                                                                                                                           Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                       Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                       Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                           Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                     Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                 Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                         Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                       Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope                                                                                                                                                                                                   Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex                                                                                                                                                                                       Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                             Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                       Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                 Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                 Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors                                                                                                                                                                                                                       Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                   Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr4 Signaling
## Fructose Catabolism                                                                                                                                                                                                                                   Fructose Catabolism
## Fructose Metabolism                                                                                                                                                                                                                                   Fructose Metabolism
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                           G Alpha 12 13 Signalling Events
## G Alpha I Signalling Events                                                                                                                                                                                                                   G Alpha I Signalling Events
## G Alpha Q Signalling Events                                                                                                                                                                                                                   G Alpha Q Signalling Events
## G Alpha S Signalling Events                                                                                                                                                                                                                   G Alpha S Signalling Events
## G Alpha Z Signalling Events                                                                                                                                                                                                                   G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                       G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation                                                                                                                                                                                                                                 G Protein Activation
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   G1 S Dna Damage Checkpoints
## G2 M Checkpoints                                                                                                                                                                                                                                         G2 M Checkpoints
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                     G2 M Dna Damage Checkpoint
## G2 Phase                                                                                                                                                                                                                                                         G2 Phase
## Gab1 Signalosome                                                                                                                                                                                                                                         Gab1 Signalosome
## Gaba B Receptor Activation                                                                                                                                                                                                                     Gaba B Receptor Activation
## Gaba Receptor Activation                                                                                                                                                                                                                         Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                           Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                   Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                               Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                           Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly                                                                                                                                                                                                                               Gap Junction Assembly
## Gap Junction Degradation                                                                                                                                                                                                                         Gap Junction Degradation
## Gap Junction Trafficking And Regulation                                                                                                                                                                                           Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                           Gdp Fucose Biosynthesis
## Gene Silencing By Rna                                                                                                                                                                                                                               Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                   Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                           Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                         Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                     Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors                                                                                                                                                                                                             Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   Glucocorticoid Biosynthesis
## Gluconeogenesis                                                                                                                                                                                                                                           Gluconeogenesis
## Glucose Metabolism                                                                                                                                                                                                                                     Glucose Metabolism
## Glucuronidation                                                                                                                                                                                                                                           Glucuronidation
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                     Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                         Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation                                                                                                                                                                                                                           Glutathione Conjugation
## Glutathione Synthesis And Recycling                                                                                                                                                                                                   Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                         Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism                                                                                                                                                                                                             Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                       Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism                                                                                                                                                                                                                                   Glycogen Metabolism
## Glycogen Storage Diseases                                                                                                                                                                                                                       Glycogen Storage Diseases
## Glycogen Synthesis                                                                                                                                                                                                                                     Glycogen Synthesis
## Glycolysis                                                                                                                                                                                                                                                     Glycolysis
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                 Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism                                                                                                                                                                                                                 Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                               Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                   Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport                                                                                                                                                                                                         Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                           Gp1b Ix V Activation Signalling
## Gpcr Ligand Binding                                                                                                                                                                                                                                   Gpcr Ligand Binding
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb2 Events In Erbb2 Signaling
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                       Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones                                                                                                                                                                                                                           Hats Acetylate Histones
## Hcmv Early Events                                                                                                                                                                                                                                       Hcmv Early Events
## Hcmv Infection                                                                                                                                                                                                                                             Hcmv Infection
## Hcmv Late Events                                                                                                                                                                                                                                         Hcmv Late Events
## Hdacs Deacetylate Histones                                                                                                                                                                                                                     Hdacs Deacetylate Histones
## Hdms Demethylate Histones                                                                                                                                                                                                                       Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                         Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                       Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                           Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                     Hedgehog Ligand Biogenesis
## Hedgehog Off State                                                                                                                                                                                                                                     Hedgehog Off State
## Hedgehog On State                                                                                                                                                                                                                                       Hedgehog On State
## Heme Biosynthesis                                                                                                                                                                                                                                       Heme Biosynthesis
## Heme Degradation                                                                                                                                                                                                                                         Heme Degradation
## Hemostasis                                                                                                                                                                                                                                                     Hemostasis
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                       Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                     Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                           Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                             Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism                                                                                                                                                                                                                                 Histidine Catabolism
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                     Hiv Elongation Arrest And Recovery
## Hiv Infection                                                                                                                                                                                                                                               Hiv Infection
## Hiv Life Cycle                                                                                                                                                                                                                                             Hiv Life Cycle
## Hiv Transcription Elongation                                                                                                                                                                                                                 Hiv Transcription Elongation
## Hiv Transcription Initiation                                                                                                                                                                                                                 Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                     Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair                                                                                                                                                                                                                         Homology Directed Repair
## Hormone Ligand Binding Receptors                                                                                                                                                                                                         Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors                                                                                                                                                                                                         Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis                                                                                                                                                                                                                                   Hs Gag Biosynthesis
## Hs Gag Degradation                                                                                                                                                                                                                                     Hs Gag Degradation
## Hsf1 Activation                                                                                                                                                                                                                                           Hsf1 Activation
## Hsf1 Dependent Transactivation                                                                                                                                                                                                             Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                           Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                 Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                     Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism                                                                                                                                                                                                                               Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                       Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc                                                                                                                                                                                                                                       Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                           Il 6 Type Cytokine Receptor Ligand Interactions
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                       Infection With Mycobacterium Tuberculosis
## Infectious Disease                                                                                                                                                                                                                                     Infectious Disease
## Influenza Infection                                                                                                                                                                                                                                   Influenza Infection
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                   Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                           Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                   Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                               Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                 Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Innate Immune System                                                                                                                                                                                                                                 Innate Immune System
## Inositol Phosphate Metabolism                                                                                                                                                                                                               Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                   Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing                                                                                                                                                                                                                                     Insulin Processing
## Insulin Receptor Recycling                                                                                                                                                                                                                     Insulin Receptor Recycling
## Integration Of Energy Metabolism                                                                                                                                                                                                         Integration Of Energy Metabolism
## Integration Of Provirus                                                                                                                                                                                                                           Integration Of Provirus
## Integrin Cell Surface Interactions                                                                                                                                                                                                     Integrin Cell Surface Interactions
## Integrin Signaling                                                                                                                                                                                                                                     Integrin Signaling
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                   Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                               Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                           Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                           Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                     Interconversion Of Nucleotide Di And Triphosphates
## Interferon Signaling                                                                                                                                                                                                                                 Interferon Signaling
## Interleukin 36 Pathway                                                                                                                                                                                                                             Interleukin 36 Pathway
## Intestinal Absorption                                                                                                                                                                                                                               Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                             Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic                                                                                                                                                                                                                                   Intra Golgi Traffic
## Intracellular Signaling By Second Messengers                                                                                                                                                                                 Intracellular Signaling By Second Messengers
## Intraflagellar Transport                                                                                                                                                                                                                         Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels                                                                                                                                                                                                             Inwardly Rectifying K Channels
## Ion Channel Transport                                                                                                                                                                                                                               Ion Channel Transport
## Ion Homeostasis                                                                                                                                                                                                                                           Ion Homeostasis
## Ion Transport By P Type Atpases                                                                                                                                                                                                           Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                         Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                       Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones                                                                                                                                                                                                             Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                             Irf3 Mediated Activation Of Type 1 Ifn
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                               Irf3 Mediated Induction Of Type I Ifn
## Iron Uptake And Transport                                                                                                                                                                                                                       Iron Uptake And Transport
## Irs Activation                                                                                                                                                                                                                                             Irs Activation
## Josephin Domain Dubs                                                                                                                                                                                                                                 Josephin Domain Dubs
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                 Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation                                                                                                                                                                                                                   Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                     Keratan Sulfate Keratin Metabolism
## Keratinization                                                                                                                                                                                                                                             Keratinization
## Ketone Body Metabolism                                                                                                                                                                                                                             Ketone Body Metabolism
## Kinesins                                                                                                                                                                                                                                                         Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                             Ksrp Khsrp Binds And Destabilizes Mrna
## L1cam Interactions                                                                                                                                                                                                                                     L1cam Interactions
## Lagging Strand Synthesis                                                                                                                                                                                                                         Lagging Strand Synthesis
## Laminin Interactions                                                                                                                                                                                                                                 Laminin Interactions
## Late Endosomal Microautophagy                                                                                                                                                                                                               Late Endosomal Microautophagy
## Ldl Clearance                                                                                                                                                                                                                                               Ldl Clearance
## Lectin Pathway Of Complement Activation                                                                                                                                                                                           Lectin Pathway Of Complement Activation
## Leishmania Infection                                                                                                                                                                                                                                 Leishmania Infection
## Leukotriene Receptors                                                                                                                                                                                                                               Leukotriene Receptors
## Lgi Adam Interactions                                                                                                                                                                                                                               Lgi Adam Interactions
## Ligand Receptor Interactions                                                                                                                                                                                                                 Ligand Receptor Interactions
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   Linoleic Acid La Metabolism
## Lipid Particle Organization                                                                                                                                                                                                                   Lipid Particle Organization
## Lipophagy                                                                                                                                                                                                                                                       Lipophagy
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                 Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation                                                                                                                                                                                                                             Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                     Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                               Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                             Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                             Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                   Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism                                                                                                                                                                                                                                       Lysine Catabolism
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                     Lysosphingolipid And Lpa Receptors
## M Phase                                                                                                                                                                                                                                                           M Phase
## Map2k And Mapk Activation                                                                                                                                                                                                                       Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                         Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk Family Signaling Cascades                                                                                                                                                                                                             Mapk Family Signaling Cascades
## Mapk1 Erk2 Activation                                                                                                                                                                                                                               Mapk1 Erk2 Activation
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   Maturation Of Nucleoprotein
## Maturation Of Protein 3a                                                                                                                                                                                                                         Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 2 Spike Protein
## Meiosis                                                                                                                                                                                                                                                           Meiosis
## Meiotic Recombination                                                                                                                                                                                                                               Meiotic Recombination
## Meiotic Synapsis                                                                                                                                                                                                                                         Meiotic Synapsis
## Melanin Biosynthesis                                                                                                                                                                                                                                 Melanin Biosynthesis
## Membrane Trafficking                                                                                                                                                                                                                                 Membrane Trafficking
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                         Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                 Met Activates Ptk2 Signaling
## Met Activates Ptpn11                                                                                                                                                                                                                                 Met Activates Ptpn11
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   Met Activates Rap1 And Rac1
## Met Activates Ras Signaling                                                                                                                                                                                                                   Met Activates Ras Signaling
## Met Interacts With Tns Proteins                                                                                                                                                                                                           Met Interacts With Tns Proteins
## Met Promotes Cell Motility                                                                                                                                                                                                                     Met Promotes Cell Motility
## Met Receptor Activation                                                                                                                                                                                                                           Met Receptor Activation
## Met Receptor Recycling                                                                                                                                                                                                                             Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                   Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                 Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                       Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                               Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   Metabolism Of Carbohydrates
## Metabolism Of Cofactors                                                                                                                                                                                                                           Metabolism Of Cofactors
## Metabolism Of Folate And Pterines                                                                                                                                                                                                       Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                         Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids                                                                                                                                                                                                                                 Metabolism Of Lipids
## Metabolism Of Nucleotides                                                                                                                                                                                                                       Metabolism Of Nucleotides
## Metabolism Of Polyamines                                                                                                                                                                                                                         Metabolism Of Polyamines
## Metabolism Of Porphyrins                                                                                                                                                                                                                         Metabolism Of Porphyrins
## Metabolism Of Rna                                                                                                                                                                                                                                       Metabolism Of Rna
## Metabolism Of Steroid Hormones                                                                                                                                                                                                             Metabolism Of Steroid Hormones
## Metabolism Of Steroids                                                                                                                                                                                                                             Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                 Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                     Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters                                                                                                                                                                                                                     Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                               Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals                                                                                                                                                                                                                 Metallothioneins Bind Metals
## Methionine Salvage Pathway                                                                                                                                                                                                                     Methionine Salvage Pathway
## Methylation                                                                                                                                                                                                                                                   Methylation
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                       Mhc Class Ii Antigen Presentation
## Microrna Mirna Biogenesis                                                                                                                                                                                                                       Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                             Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle                                                                                                                                                                                                                                       Miro Gtpase Cycle
## Miscellaneous Substrates                                                                                                                                                                                                                         Miscellaneous Substrates
## Miscellaneous Transport And Binding Events                                                                                                                                                                                     Miscellaneous Transport And Binding Events
## Mismatch Repair                                                                                                                                                                                                                                           Mismatch Repair
## Mitochondrial Biogenesis                                                                                                                                                                                                                         Mitochondrial Biogenesis
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                   Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                           Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                         Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                     Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                 Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import                                                                                                                                                                                                                 Mitochondrial Protein Import
## Mitochondrial Translation                                                                                                                                                                                                                       Mitochondrial Translation
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                       Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling                                                                                                                                                                                                                         Mitochondrial Uncoupling
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                 Mitotic G1 Phase And G1 S Transition
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                             Mitotic G2 G2 M Phases
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                             Mitotic Metaphase And Anaphase
## Mitotic Prometaphase                                                                                                                                                                                                                                 Mitotic Prometaphase
## Mitotic Prophase                                                                                                                                                                                                                                         Mitotic Prophase
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                     Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                               Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                           Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres                                                                                                                                                                                         Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                         Molybdenum Cofactor Biosynthesis
## Mrna Capping                                                                                                                                                                                                                                                 Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing                                                                                                                                                                                                                                                 Mrna Editing
## Mrna Editing C To U Conversion                                                                                                                                                                                                             Mrna Editing C To U Conversion
## Mrna Splicing                                                                                                                                                                                                                                               Mrna Splicing
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   Mrna Splicing Minor Pathway
## Mtor Signalling                                                                                                                                                                                                                                           Mtor Signalling
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                     Mtorc1 Mediated Signalling
## Mucopolysaccharidoses                                                                                                                                                                                                                               Mucopolysaccharidoses
## Multifunctional Anion Exchangers                                                                                                                                                                                                         Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                     Muscarinic Acetylcholine Receptors
## Muscle Contraction                                                                                                                                                                                                                                     Muscle Contraction
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                 Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation                                                                                                                                                                                                                 N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                             N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                       N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                   N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                               Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling                                                                                                                                                                                                           Nade Modulates Death Signalling
## Ncam1 Interactions                                                                                                                                                                                                                                     Ncam1 Interactions
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                 Nectin Necl Trans Heterodimerization
## Neddylation                                                                                                                                                                                                                                                   Neddylation
## Nef And Signal Transduction                                                                                                                                                                                                                   Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                     Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                             Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                 Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                     Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3                                                                                                                                                                                                                   Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                   Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity                                                                                                                                                                                                   Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                   Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                           Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                     Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                   Negative Regulation Of The Pi3k Akt Network
## Nephrin Family Interactions                                                                                                                                                                                                                   Nephrin Family Interactions
## Nervous System Development                                                                                                                                                                                                                     Nervous System Development
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                       Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins                                                                                                                                                                                                                       Neurexins And Neuroligins
## Neurofascin Interactions                                                                                                                                                                                                                         Neurofascin Interactions
## Neuronal System                                                                                                                                                                                                                                           Neuronal System
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                   Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance                                                                                                                                                                                                                     Neurotransmitter Clearance
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                           Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Neurotransmitter Release Cycle                                                                                                                                                                                                             Neurotransmitter Release Cycle
## Neutrophil Degranulation                                                                                                                                                                                                                         Neutrophil Degranulation
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                         Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Ngf Independant Trka Activation                                                                                                                                                                                                           Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                       Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                             Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3                                                                                                                                                                                                       Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej                                                                                                                                                                                                             Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                               Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway                                                                                                                                                                                                           Notch Hlh Transcription Pathway
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch3 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                     Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                             Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                     Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                               Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                           Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions                                                                                                                                                                                                                                     Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                               Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                 Ntrk2 Activates Rac1
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                             Nuclear Envelope Ne Reassembly
## Nuclear Import Of Rev Protein                                                                                                                                                                                                               Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                             Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                     Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis                                                                                                                                                                                                                           Nucleobase Biosynthesis
## Nucleobase Catabolism                                                                                                                                                                                                                               Nucleobase Catabolism
## Nucleotide Excision Repair                                                                                                                                                                                                                     Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                 Nucleotide Like Purinergic Receptors
## Nucleotide Salvage                                                                                                                                                                                                                                     Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                       O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation                                                                                                                                                                                                                             O Linked Glycosylation
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         O Linked Glycosylation Of Mucins
## Oas Antiviral Response                                                                                                                                                                                                                             Oas Antiviral Response
## Olfactory Signaling Pathway                                                                                                                                                                                                                   Olfactory Signaling Pathway
## Oncogene Induced Senescence                                                                                                                                                                                                                   Oncogene Induced Senescence
## Oncogenic Mapk Signaling                                                                                                                                                                                                                         Oncogenic Mapk Signaling
## Opioid Signalling                                                                                                                                                                                                                                       Opioid Signalling
## Opsins                                                                                                                                                                                                                                                             Opsins
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                           Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                 Organelle Biogenesis And Maintenance
## Organic Anion Transport                                                                                                                                                                                                                           Organic Anion Transport
## Organic Anion Transporters                                                                                                                                                                                                                     Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                       Organic Cation Anion Zwitterion Transport
## Organic Cation Transport                                                                                                                                                                                                                         Organic Cation Transport
## Other Interleukin Signaling                                                                                                                                                                                                                   Other Interleukin Signaling
## Oxidative Stress Induced Senescence                                                                                                                                                                                                   Oxidative Stress Induced Senescence
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                           P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors                                                                                                                                                                                                                                               P2y Receptors
## P38mapk Events                                                                                                                                                                                                                                             P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                             P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                               P75ntr Regulates Axonogenesis
## Parasite Infection                                                                                                                                                                                                                                     Parasite Infection
## Passive Transport By Aquaporins                                                                                                                                                                                                           Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                             Pcna Dependent Long Patch Base Excision Repair
## Pcp Ce Pathway                                                                                                                                                                                                                                             Pcp Ce Pathway
## Pecam1 Interactions                                                                                                                                                                                                                                   Pecam1 Interactions
## Pentose Phosphate Pathway                                                                                                                                                                                                                       Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                 Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism                                                                                                                                                                                                                     Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                 Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import                                                                                                                                                                                                                     Peroxisomal Protein Import
## Pexophagy                                                                                                                                                                                                                                                       Pexophagy
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                 Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                         Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase                                                                                                                                                                                                                               Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                 Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds                                                                                                                                                                                             Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                       Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                               Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism                                                                                                                                                                                                                         Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                               Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                     Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism                                                                                                                                                                                                                           Phospholipid Metabolism
## Physiological Factors                                                                                                                                                                                                                               Physiological Factors
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr4
## Pi Metabolism                                                                                                                                                                                                                                               Pi Metabolism
## Pi3k Akt Activation                                                                                                                                                                                                                                   Pi3k Akt Activation
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                 Pi3k Akt Signaling In Cancer
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb2 Signaling
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                           Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                               Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling                                                                                                                                                                                               Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                               Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                           Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                 Plasma Lipoprotein Assembly Remodeling And Clearance
## Platelet Activation Signaling And Aggregation                                                                                                                                                                               Platelet Activation Signaling And Aggregation
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                               Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation                                                                                                                                                                                                   Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis                                                                                                                                                                                                                 Platelet Calcium Homeostasis
## Platelet Homeostasis                                                                                                                                                                                                                                 Platelet Homeostasis
## Platelet Sensitization By Ldl                                                                                                                                                                                                               Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                             Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events                                                                                                                                                                                                         Polo Like Kinase Mediated Events
## Polymerase Switching                                                                                                                                                                                                                                 Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                 Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                           Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                     Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                         Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels                                                                                                                                                                                                                                     Potassium Channels
## Potential Therapeutics For Sars                                                                                                                                                                                                           Potential Therapeutics For Sars
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                           Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                         Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing                                                                                                                                                                                                   Pre Notch Expression And Processing
## Pre Notch Processing In Golgi                                                                                                                                                                                                               Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                       Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis                                                                                                                                                                                                                       Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                             Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                       Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                       Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo                                                                                                                                                                                                       Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                           Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                         Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                     Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                     Processing Of Intronless Pre Mrnas
## Processing Of Smdt1                                                                                                                                                                                                                                   Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                 Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                     Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling                                                                                                                                                                                                                 Prolactin Receptor Signaling
## Prolonged Erk Activation Events                                                                                                                                                                                                           Prolonged Erk Activation Events
## Propionyl Coa Catabolism                                                                                                                                                                                                                         Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                               Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   Prostanoid Ligand Receptors
## Protein Folding                                                                                                                                                                                                                                           Protein Folding
## Protein Localization                                                                                                                                                                                                                                 Protein Localization
## Protein Methylation                                                                                                                                                                                                                                   Protein Methylation
## Protein Protein Interactions At Synapses                                                                                                                                                                                         Protein Protein Interactions At Synapses
## Protein Repair                                                                                                                                                                                                                                             Protein Repair
## Protein Ubiquitination                                                                                                                                                                                                                             Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                         Proton Coupled Monocarboxylate Transport
## Pten Regulation                                                                                                                                                                                                                                           Pten Regulation
## Ptk6 Expression                                                                                                                                                                                                                                           Ptk6 Expression
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                       Ptk6 Promotes Hif1a Stabilization
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                       Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                     Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                               Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                               Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism                                                                                                                                                                                                                                       Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                         Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage                                                                                                                                                                                                                                             Purine Salvage
## Pyrimidine Catabolism                                                                                                                                                                                                                               Pyrimidine Catabolism
## Pyrimidine Salvage                                                                                                                                                                                                                                     Pyrimidine Salvage
## Pyruvate Metabolism                                                                                                                                                                                                                                   Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                               Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway                                                                                                                                                                                                                           Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                               Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation                                                                                                                                                                                                                           Rab Geranylgeranylation
## Rab Regulation Of Trafficking                                                                                                                                                                                                               Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                       Rac1 Gtpase Cycle
## Raf Activation                                                                                                                                                                                                                                             Raf Activation
## Rap1 Signalling                                                                                                                                                                                                                                           Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                 Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing                                                                                                                                                                                                                                             Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                       Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                 Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                   Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                             Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                         Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                         Recruitment Of Mitotic Centrosome Proteins And Complexes
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                     Recruitment Of Numa To Mitotic Centrosomes
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                       Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                               Recycling Of Eif2 Gdp
## Recycling Pathway Of L1                                                                                                                                                                                                                           Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                         Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway                                                                                                                                                                                                                       Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                           Regulated Proteolysis Of P75ntr
## Regulation Of Bach1 Activity                                                                                                                                                                                                                 Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development                                                                                                                                                                                                   Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                               Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                   Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                     Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                   Regulation Of Expression Of Slits And Robos
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                   Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                       Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                   Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                       Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                               Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                     Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                   Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                         Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                   Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                           Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling                                                                                                                                                                                                                 Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling                                                                                                                                                                                                                 Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                             Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                           Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Regulation Of Insulin Secretion                                                                                                                                                                                                           Regulation Of Insulin Secretion
## Regulation Of Kit Signaling                                                                                                                                                                                                                   Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                   Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                         Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                   Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                             Regulation Of Plk1 Activity At G2 M Transition
## Regulation Of Pten Gene Transcription                                                                                                                                                                                               Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization                                                                                                                                                                                                           Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                   Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity                                                                                                                                                                                       Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                         Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps                                                                                                                                                                                                                       Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                   Regulation Of Runx1 Expression And Activity
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                   Regulation Of Runx2 Expression And Activity
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                   Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl                                                                                                                                                                                                             Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal                                                                                                                                                                                                         Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   Regulation Of Tp53 Activity
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                           Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                   Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors                                                                                                                                                                                                                                       Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                     Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                         Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                               Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Reproduction                                                                                                                                                                                                                                                 Reproduction
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                   Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                 Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures                                                                                                                                                                                                           Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                       Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                           Resolution Of Sister Chromatid Cohesion
## Respiratory Electron Transport                                                                                                                                                                                                             Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                         Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                     Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                       Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                           Response Of Mtb To Phagocytosis
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                   Response To Elevated Platelet Cytosolic Ca2
## Response To Metal Ions                                                                                                                                                                                                                             Response To Metal Ions
## Ret Signaling                                                                                                                                                                                                                                               Ret Signaling
## Retinoid Cycle Disease Events                                                                                                                                                                                                               Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                     Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                           Retrograde Transport At The Trans Golgi Network
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                             Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle                                                                                                                                                                                                                                         Rho Gtpase Cycle
## Rho Gtpase Effectors                                                                                                                                                                                                                                 Rho Gtpase Effectors
## Rho Gtpases Activate Cit                                                                                                                                                                                                                         Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins                                                                                                                                                                                                                 Rho Gtpases Activate Formins
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                   Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                       Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                 Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                     Rho Gtpases Activate Rocks
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                       Rhoa Gtpase Cycle
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                   Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                 Rhobtb3 Atpase Cycle
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                       Rhoc Gtpase Cycle
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                     Rhot1 Gtpase Cycle
## Rmts Methylate Histone Arginines                                                                                                                                                                                                         Rmts Methylate Histone Arginines
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                         Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription                                                                                                                                                                                                             Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                       Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination                                                                                                                                                                                     Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                       Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                   Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                   Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription                                                                                                                                                                                                         Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                 Rna Polymerase Iii Transcription Termination
## Robo Receptors Bind Akap5                                                                                                                                                                                                                       Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                     Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                               Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                               Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                           Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression                                                                                                                                                                                                             Rora Activates Gene Expression
## Rrna Modification In The Mitochondrion                                                                                                                                                                                             Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Rrna Modification In The Nucleus And Cytosol
## Rrna Processing                                                                                                                                                                                                                                           Rrna Processing
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                 Rrna Processing In The Mitochondrion
## Rsk Activation                                                                                                                                                                                                                                             Rsk Activation
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                     Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                         Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                   Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                               Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                     Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx2 Regulates Bone Development                                                                                                                                                                                                         Runx2 Regulates Bone Development
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                             Runx2 Regulates Chondrocyte Maturation
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                         Runx2 Regulates Genes Involved In Cell Migration
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                     Runx2 Regulates Osteoblast Differentiation
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                       Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                 Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                     Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                           Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                           Runx3 Regulates P14 Arf
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                   Runx3 Regulates Yap1 Mediated Transcription
## S Phase                                                                                                                                                                                                                                                           S Phase
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                           Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection                                                                                                                                                                                                                                 Sars Cov 1 Infection
## Sars Cov 2 Infection                                                                                                                                                                                                                                 Sars Cov 2 Infection
## Sars Cov Infections                                                                                                                                                                                                                                   Sars Cov Infections
## Scavenging By Class F Receptors                                                                                                                                                                                                           Scavenging By Class F Receptors
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                         Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                           Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy                                                                                                                                                                                                                                   Selective Autophagy
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                   Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                       Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                             Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                             Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                   Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                             Senescence Associated Secretory Phenotype Sasp
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                   Sensing Of Dna Double Strand Breaks
## Sensory Perception                                                                                                                                                                                                                                     Sensory Perception
## Sensory Processing Of Sound                                                                                                                                                                                                                   Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                             Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids                                                                                                                                                                                                           Separation Of Sister Chromatids
## Serine Biosynthesis                                                                                                                                                                                                                                   Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                 Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                         Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors                                                                                                                                                                                                                                   Serotonin Receptors
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                               Shc Related Events Triggered By Igf1r
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                               Shc1 Events In Egfr Signaling
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb2 Signaling
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb4 Signaling
## Sialic Acid Metabolism                                                                                                                                                                                                                             Sialic Acid Metabolism
## Signal Amplification                                                                                                                                                                                                                                 Signal Amplification
## Signal Attenuation                                                                                                                                                                                                                                     Signal Attenuation
## Signal Regulatory Protein Family Interactions                                                                                                                                                                               Signal Regulatory Protein Family Interactions
## Signal Transduction By L1                                                                                                                                                                                                                       Signal Transduction By L1
## Signaling By Activin                                                                                                                                                                                                                                 Signaling By Activin
## Signaling By Bmp                                                                                                                                                                                                                                         Signaling By Bmp
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                       Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                         Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Egfr In Cancer                                                                                                                                                                                                                   Signaling By Egfr In Cancer
## Signaling By Erbb2                                                                                                                                                                                                                                     Signaling By Erbb2
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                             Signaling By Erbb2 Ecd Mutants
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                 Signaling By Erbb2 In Cancer
## Signaling By Erbb4                                                                                                                                                                                                                                     Signaling By Erbb4
## Signaling By Erythropoietin                                                                                                                                                                                                                   Signaling By Erythropoietin
## Signaling By Fgfr                                                                                                                                                                                                                                       Signaling By Fgfr
## Signaling By Fgfr1                                                                                                                                                                                                                                     Signaling By Fgfr1
## Signaling By Fgfr2                                                                                                                                                                                                                                     Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                     Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                               Signaling By Fgfr2 In Disease
## Signaling By Fgfr3                                                                                                                                                                                                                                     Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                 Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4                                                                                                                                                                                                                                     Signaling By Fgfr4
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                               Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                       Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                               Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Gpcr                                                                                                                                                                                                                                       Signaling By Gpcr
## Signaling By Hedgehog                                                                                                                                                                                                                               Signaling By Hedgehog
## Signaling By Hippo                                                                                                                                                                                                                                     Signaling By Hippo
## Signaling By Insulin Receptor                                                                                                                                                                                                               Signaling By Insulin Receptor
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                       Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants                                                                                                                                                                                                                       Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                     Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Met                                                                                                                                                                                                                                         Signaling By Met
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                     Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants                                                                                                                                                                                                       Signaling By Mras Complex Mutants
## Signaling By Mst1                                                                                                                                                                                                                                       Signaling By Mst1
## Signaling By Nodal                                                                                                                                                                                                                                     Signaling By Nodal
## Signaling By Notch                                                                                                                                                                                                                                     Signaling By Notch
## Signaling By Notch1                                                                                                                                                                                                                                   Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                           Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                       Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch3                                                                                                                                                                                                                                   Signaling By Notch3
## Signaling By Notch4                                                                                                                                                                                                                                   Signaling By Notch4
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                           Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                           Signaling By Ntrk3 Trkc
## Signaling By Ntrks                                                                                                                                                                                                                                     Signaling By Ntrks
## Signaling By Nuclear Receptors                                                                                                                                                                                                             Signaling By Nuclear Receptors
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                             Signaling By Receptor Tyrosine Kinases
## Signaling By Retinoic Acid                                                                                                                                                                                                                     Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                       Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                     Signaling By Rnf43 Mutants
## Signaling By Robo Receptors                                                                                                                                                                                                                   Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                         Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Tgfb Family Members                                                                                                                                                                                                         Signaling By Tgfb Family Members
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                 Signaling By The B Cell Receptor Bcr
## Signaling By Vegf                                                                                                                                                                                                                                       Signaling By Vegf
## Signaling By Wnt                                                                                                                                                                                                                                         Signaling By Wnt
## Signaling By Wnt In Cancer                                                                                                                                                                                                                     Signaling By Wnt In Cancer
## Signalling To Erks                                                                                                                                                                                                                                     Signalling To Erks
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                       Signalling To P38 Via Rit And Rin
## Signalling To Ras                                                                                                                                                                                                                                       Signalling To Ras
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                 Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                 Slc Mediated Transmembrane Transport
## Slc Transporter Disorders                                                                                                                                                                                                                       Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                             Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                             Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction                                                                                                                                                                                                                       Smooth Muscle Contraction
## Snrnp Assembly                                                                                                                                                                                                                                             Snrnp Assembly
## Sodium Calcium Exchangers                                                                                                                                                                                                                       Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                           Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                   Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers                                                                                                                                                                                                                         Sodium Proton Exchangers
## Sos Mediated Signalling                                                                                                                                                                                                                           Sos Mediated Signalling
## Sperm Motility And Taxes                                                                                                                                                                                                                         Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                       Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism                                                                                                                                                                                                                           Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                         Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                   Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53                                                                                                                                                                                                                                 Stabilization Of P53
## Stat5 Activation                                                                                                                                                                                                                                         Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                           Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels                                                                                                                                                                                                                         Stimuli Sensing Channels
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                       Sting Mediated Induction Of Host Immune Responses
## Striated Muscle Contraction                                                                                                                                                                                                                   Striated Muscle Contraction
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                 Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                 Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                     Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed                                                                                                                                                                                                       Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation                                                                                                                                                                                                                                                   Sumoylation
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                             Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                             Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                           Sumoylation Of Dna Replication Proteins
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                             Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                   Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                   Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                             Sumoylation Of Transcription Cofactors
## Sumoylation Of Transcription Factors                                                                                                                                                                                                 Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                         Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis                                                                                                                                                                                                                         Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                 Suppression Of Phagosomal Maturation
## Surfactant Metabolism                                                                                                                                                                                                                               Surfactant Metabolism
## Switching Of Origins To A Post Replicative State                                                                                                                                                                         Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                         Synaptic Adhesion Like Molecules
## Syndecan Interactions                                                                                                                                                                                                                               Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                               Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                               Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                         Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                             Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                 Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                               Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                           Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                               Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                         Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                               Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                     Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                           Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                     Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                     Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                         Synthesis Of Lipoxins Lx
## Synthesis Of Pa                                                                                                                                                                                                                                           Synthesis Of Pa
## Synthesis Of Pc                                                                                                                                                                                                                                           Synthesis Of Pc
## Synthesis Of Pe                                                                                                                                                                                                                                           Synthesis Of Pe
## Synthesis Of Pg                                                                                                                                                                                                                                           Synthesis Of Pg
## Synthesis Of Pi                                                                                                                                                                                                                                           Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                         Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                 Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                           Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                           Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                         Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                     Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                           Synthesis Of Substrates In N Glycan Biosythesis
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                               Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                 Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                     Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                             Synthesis Secretion And Deacylation Of Ghrelin
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                               Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps                                                                                                                                                                                                                                                   Tbc Rabgaps
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                     Tcf Dependent Signaling In Response To Wnt
## Tcr Signaling                                                                                                                                                                                                                                               Tcr Signaling
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                     Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                             Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase                                                                                                                                                                                                         Telomere Extension By Telomerase
## Telomere Maintenance                                                                                                                                                                                                                                 Telomere Maintenance
## Terminal Pathway Of Complement                                                                                                                                                                                                             Terminal Pathway Of Complement
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                 Termination Of O Glycan Biosynthesis
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                         Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                     Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                 Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                   Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                           Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases                                                                                                                                                                                                         The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                 The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                 The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model                                                                                                                                                                                                                 The Fatty Acid Cycling Model
## The Phototransduction Cascade                                                                                                                                                                                                               The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                   The Retinoid Cycle In Cones Daylight Vision
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                       The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                               The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                           Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                     Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis                                                                                                                                                                                                                             Thyroxine Biosynthesis
## Tie2 Signaling                                                                                                                                                                                                                                             Tie2 Signaling
## Tight Junction Interactions                                                                                                                                                                                                                   Tight Junction Interactions
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                           Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                             Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                         Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                           Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Death Genes
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                   Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Dna Repair Genes
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                             Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                             Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors                                                                                                                                                                                                               Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                             Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                   Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling                                                                                                                                                                                                                                           Trail Signaling
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                   Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                           Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of The Hiv Genome                                                                                                                                                                                                           Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6                                                                                                                                                                                                     Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx1                                                                                                                                                                                                   Transcriptional Regulation By Runx1
## Transcriptional Regulation By Runx2                                                                                                                                                                                                   Transcriptional Regulation By Runx2
## Transcriptional Regulation By Runx3                                                                                                                                                                                                   Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                         Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Tp53                                                                                                                                                                                                     Transcriptional Regulation By Tp53
## Transcriptional Regulation By Ventx                                                                                                                                                                                                   Transcriptional Regulation By Ventx
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                 Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                               Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling                                                                                                                                                                                               Transferrin Endocytosis And Recycling
## Translation                                                                                                                                                                                                                                                   Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                             Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh                                                                                                                                                                                                               Translesion Synthesis By Polh
## Translesion Synthesis By Polk                                                                                                                                                                                                               Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                     Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                 Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transmission Across Chemical Synapses                                                                                                                                                                                               Transmission Across Chemical Synapses
## Transport And Synthesis Of Paps                                                                                                                                                                                                           Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                         Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                               Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids                                                                                                                                                                                                                         Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                   Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                               Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                   Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                         Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars                                                                                                                                                                                                             Transport Of Nucleotide Sugars
## Transport Of Organic Anions                                                                                                                                                                                                                   Transport Of Organic Anions
## Transport Of Small Molecules                                                                                                                                                                                                                 Transport Of Small Molecules
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                   Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                           Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                     Transport To The Golgi And Subsequent Modification
## Triglyceride Biosynthesis                                                                                                                                                                                                                       Triglyceride Biosynthesis
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                               Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation                                                                                                                                                                                                                                   Trna Aminoacylation
## Trna Modification In The Mitochondrion                                                                                                                                                                                             Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Trna Modification In The Nucleus And Cytosol
## Trna Processing                                                                                                                                                                                                                                           Trna Processing
## Trna Processing In The Mitochondrion                                                                                                                                                                                                 Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus                                                                                                                                                                                                             Trna Processing In The Nucleus
## Trp Channels                                                                                                                                                                                                                                                 Trp Channels
## Tryptophan Catabolism                                                                                                                                                                                                                               Tryptophan Catabolism
## Type I Hemidesmosome Assembly                                                                                                                                                                                                               Type I Hemidesmosome Assembly
## Tyrosine Catabolism                                                                                                                                                                                                                                   Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                   Tysnd1 Cleaves Peroxisomal Proteins
## Ub Specific Processing Proteases                                                                                                                                                                                                         Ub Specific Processing Proteases
## Ubiquinol Biosynthesis                                                                                                                                                                                                                             Ubiquinol Biosynthesis
## Uch Proteinases                                                                                                                                                                                                                                           Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                               Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna                                                                                                                                                                                                                                         Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                             Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                               Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                           Uptake And Function Of Diphtheria Toxin
## Urea Cycle                                                                                                                                                                                                                                                     Urea Cycle
## Vasopressin Like Receptors                                                                                                                                                                                                                     Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                 Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                       Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                     Vegfr2 Mediated Cell Proliferation
## Vesicle Mediated Transport                                                                                                                                                                                                                     Vesicle Mediated Transport
## Viral Messenger Rna Synthesis                                                                                                                                                                                                               Viral Messenger Rna Synthesis
## Visual Phototransduction                                                                                                                                                                                                                         Visual Phototransduction
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                               Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                         Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                     Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                             Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                           Vitamin D Calciferol Metabolism
## Vitamins                                                                                                                                                                                                                                                         Vitamins
## Vldl Assembly                                                                                                                                                                                                                                               Vldl Assembly
## Vldl Clearance                                                                                                                                                                                                                                             Vldl Clearance
## Vldlr Internalisation And Degradation                                                                                                                                                                                               Vldlr Internalisation And Degradation
## Voltage Gated Potassium Channels                                                                                                                                                                                                         Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                             Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                         Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                             Wnt Mediated Activation Of Dvl
## Xenobiotics                                                                                                                                                                                                                                                   Xenobiotics
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                               Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                         Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                           Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters                                                                                                                                                                                                                                       Zinc Transporters
##                                                                                                                                         pval
## Interleukin 10 Signaling                                                                                                             6.2e-06
## Interleukin 4 And Interleukin 13 Signaling                                                                                           3.0e-03
## Interleukin 18 Signaling                                                                                                             1.4e-02
## Chemokine Receptors Bind Chemokines                                                                                                  1.6e-02
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         2.6e-02
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    6.2e-02
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                6.7e-02
## P75ntr Signals Via Nf Kb                                                                                                             9.6e-02
## Purinergic Signaling In Leishmaniasis Infection                                                                                      1.0e-01
## Interleukin 1 Processing                                                                                                             1.3e-01
## Tnfs Bind Their Physiological Receptors                                                                                              1.4e-01
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.5e-01
## Diseases Of Immune System                                                                                                            1.7e-01
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.8e-01
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             1.9e-01
## Cd28 Dependent Vav1 Pathway                                                                                                          2.0e-01
## Killing Mechanisms                                                                                                                   2.0e-01
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    2.0e-01
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          2.1e-01
## Myd88 Independent Tlr4 Cascade                                                                                                       2.3e-01
## Nf Kb Is Activated And Signals Survival                                                                                              2.3e-01
## P75ntr Recruits Signalling Complexes                                                                                                 2.3e-01
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              2.3e-01
## Trafficking And Processing Of Endosomal Tlr                                                                                          2.3e-01
## Nod1 2 Signaling Pathway                                                                                                             2.4e-01
## Interleukin 15 Signaling                                                                                                             2.6e-01
## Toll Like Receptor Cascades                                                                                                          2.8e-01
## Pyroptosis                                                                                                                           2.9e-01
## Alternative Complement Activation                                                                                                    3.0e-01
## Fasl Cd95l Signaling                                                                                                                 3.0e-01
## G2 M Dna Replication Checkpoint                                                                                                      3.0e-01
## Galactose Catabolism                                                                                                                 3.0e-01
## Hdl Clearance                                                                                                                        3.0e-01
## Mecp2 Regulates Transcription Factors                                                                                                3.0e-01
## Nostrin Mediated Enos Trafficking                                                                                                    3.0e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      3.0e-01
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     3.1e-01
## Sumoylation Of Dna Methylation Proteins                                                                                              3.1e-01
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                3.4e-01
## Biosynthesis Of Epa Derived Spms                                                                                                     3.5e-01
## Clec7a Inflammasome Pathway                                                                                                          3.5e-01
## Fibronectin Matrix Formation                                                                                                         3.5e-01
## Phosphorylation Of Emi1                                                                                                              3.5e-01
## Regulated Necrosis                                                                                                                   3.5e-01
## Scavenging By Class B Receptors                                                                                                      3.5e-01
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    3.5e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 3.5e-01
## Tnfr1 Mediated Ceramide Production                                                                                                   3.5e-01
## Irak4 Deficiency Tlr2 4                                                                                                              3.6e-01
## Interleukin 2 Family Signaling                                                                                                       3.7e-01
## Interleukin 17 Signaling                                                                                                             3.8e-01
## Interleukin 1 Family Signaling                                                                                                       3.9e-01
## Scavenging By Class A Receptors                                                                                                      3.9e-01
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         3.9e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            4.0e-01
## Creb Phosphorylation                                                                                                                 4.0e-01
## Ikba Variant Leads To Eda Id                                                                                                         4.0e-01
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  4.0e-01
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 4.3e-01
## Activation Of C3 And C5                                                                                                              4.4e-01
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   4.4e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         4.4e-01
## Ctla4 Inhibitory Signaling                                                                                                           4.4e-01
## Hdl Assembly                                                                                                                         4.4e-01
## Heme Signaling                                                                                                                       4.4e-01
## Inactivation Of Cdc42 And Rac1                                                                                                       4.4e-01
## Inflammasomes                                                                                                                        4.4e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    4.4e-01
## Runx3 Regulates Wnt Signaling                                                                                                        4.4e-01
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           4.4e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         4.8e-01
## Cd163 Mediating An Anti Inflammatory Response                                                                                        4.8e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          4.8e-01
## Interleukin 23 Signaling                                                                                                             4.8e-01
## Interleukin 9 Signaling                                                                                                              4.8e-01
## Trif Mediated Programmed Cell Death                                                                                                  4.8e-01
## Ikk Complex Recruitment Mediated By Rip1                                                                                             4.9e-01
## Ovarian Tumor Domain Proteases                                                                                                       5.0e-01
## Traf6 Mediated Nf Kb Activation                                                                                                      5.1e-01
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               5.2e-01
## Akt Phosphorylates Targets In The Nucleus                                                                                            5.2e-01
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             5.2e-01
## Chylomicron Assembly                                                                                                                 5.2e-01
## Chylomicron Remodeling                                                                                                               5.2e-01
## Hdl Remodeling                                                                                                                       5.2e-01
## Interleukin 21 Signaling                                                                                                             5.2e-01
## Mapk3 Erk1 Activation                                                                                                                5.2e-01
## Mastl Facilitates Mitotic Progression                                                                                                5.2e-01
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           5.2e-01
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        5.5e-01
## Condensation Of Prometaphase Chromosomes                                                                                             5.5e-01
## Dermatan Sulfate Biosynthesis                                                                                                        5.5e-01
## Dscam Interactions                                                                                                                   5.5e-01
## Endosomal Vacuolar Pathway                                                                                                           5.5e-01
## Enos Activation                                                                                                                      5.5e-01
## Interleukin 27 Signaling                                                                                                             5.5e-01
## Interleukin 6 Signaling                                                                                                              5.5e-01
## Receptor Mediated Mitophagy                                                                                                          5.5e-01
## Regulation By C Flip                                                                                                                 5.5e-01
## Rho Gtpases Activate Ktn1                                                                                                            5.5e-01
## Signaling By Leptin                                                                                                                  5.5e-01
## Sumoylation Of Immune Response Proteins                                                                                              5.5e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     5.5e-01
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    5.7e-01
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     5.8e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    5.8e-01
## G0 And Early G1                                                                                                                      5.8e-01
## Interleukin 2 Signaling                                                                                                              5.8e-01
## Interleukin 35 Signalling                                                                                                            5.8e-01
## Interleukin Receptor Shc Signaling                                                                                                   5.8e-01
## Notch2 Intracellular Domain Regulates Transcription                                                                                  5.8e-01
## Signaling By Interleukins                                                                                                            5.8e-01
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            5.8e-01
## Tandem Pore Domain Potassium Channels                                                                                                5.8e-01
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             5.8e-01
## Costimulation By The Cd28 Family                                                                                                     6.0e-01
## Pd 1 Signaling                                                                                                                       6.0e-01
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 6.1e-01
## Apoptosis Induced Dna Fragmentation                                                                                                  6.1e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        6.1e-01
## Dissolution Of Fibrin Clot                                                                                                           6.1e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       6.1e-01
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             6.1e-01
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 6.1e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                6.1e-01
## Dap12 Interactions                                                                                                                   6.2e-01
## Ripk1 Mediated Regulated Necrosis                                                                                                    6.2e-01
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             6.3e-01
## Dcc Mediated Attractive Signaling                                                                                                    6.4e-01
## Early Phase Of Hiv Life Cycle                                                                                                        6.4e-01
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  6.4e-01
## Irak1 Recruits Ikk Complex                                                                                                           6.4e-01
## Repression Of Wnt Target Genes                                                                                                       6.4e-01
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  6.5e-01
## Nicotinate Metabolism                                                                                                                6.5e-01
## Peptide Ligand Binding Receptors                                                                                                     6.5e-01
## Depolymerisation Of The Nuclear Lamina                                                                                               6.7e-01
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            6.7e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             6.7e-01
## Perk Regulates Gene Expression                                                                                                       6.7e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               6.7e-01
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   6.7e-01
## Wnt5a Dependent Internalization Of Fzd4                                                                                              6.7e-01
## Cargo Concentration In The Er                                                                                                        6.9e-01
## Cd28 Co Stimulation                                                                                                                  6.9e-01
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      6.9e-01
## Nrif Signals Cell Death From The Nucleus                                                                                             6.9e-01
## The Nlrp3 Inflammasome                                                                                                               6.9e-01
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         6.9e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 6.9e-01
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 7.1e-01
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      7.1e-01
## Regulation Of Tnfr1 Signaling                                                                                                        7.2e-01
## Abc Transporters In Lipid Homeostasis                                                                                                7.3e-01
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        7.3e-01
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     7.3e-01
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      7.3e-01
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          7.3e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               7.3e-01
## Interleukin 1 Signaling                                                                                                              7.4e-01
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              7.5e-01
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        7.5e-01
## Nicotinamide Salvaging                                                                                                               7.5e-01
## Other Semaphorin Interactions                                                                                                        7.5e-01
## Phase 4 Resting Membrane Potential                                                                                                   7.5e-01
## Plasma Lipoprotein Assembly                                                                                                          7.5e-01
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 7.5e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   7.6e-01
## G Beta Gamma Signalling Through Cdc42                                                                                                7.7e-01
## Phosphorylation Of The Apc C                                                                                                         7.7e-01
## Pka Mediated Phosphorylation Of Creb                                                                                                 7.7e-01
## Signaling By Kit In Disease                                                                                                          7.7e-01
## Signaling By Pdgfr In Disease                                                                                                        7.7e-01
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                7.7e-01
## Branched Chain Amino Acid Catabolism                                                                                                 7.8e-01
## Interleukin 12 Family Signaling                                                                                                      7.8e-01
## Interleukin 37 Signaling                                                                                                             7.8e-01
## Rho Gtpases Activate Paks                                                                                                            7.8e-01
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    8.0e-01
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          8.0e-01
## E2f Mediated Regulation Of Dna Replication                                                                                           8.0e-01
## Pink1 Prkn Mediated Mitophagy                                                                                                        8.0e-01
## Incretin Synthesis Secretion And Inactivation                                                                                        8.1e-01
## Raf Independent Mapk1 3 Activation                                                                                                   8.1e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         8.3e-01
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               8.3e-01
## Growth Hormone Receptor Signaling                                                                                                    8.3e-01
## Interleukin 6 Family Signaling                                                                                                       8.3e-01
## Tnf Signaling                                                                                                                        8.3e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           8.3e-01
## Triglyceride Catabolism                                                                                                              8.3e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             8.4e-01
## Basigin Interactions                                                                                                                 8.4e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              8.4e-01
## Inactivation Of Csf3 G Csf Signaling                                                                                                 8.4e-01
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        8.5e-01
## Interleukin 20 Family Signaling                                                                                                      8.5e-01
## Wnt Ligand Biogenesis And Trafficking                                                                                                8.5e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                8.6e-01
## Foxo Mediated Transcription                                                                                                          8.6e-01
## Interleukin 12 Signaling                                                                                                             8.6e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     8.6e-01
## Vegfr2 Mediated Vascular Permeability                                                                                                8.6e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     8.7e-01
## Circadian Clock                                                                                                                      8.8e-01
## Dap12 Signaling                                                                                                                      8.8e-01
## Death Receptor Signalling                                                                                                            8.8e-01
## Downstream Signal Transduction                                                                                                       8.8e-01
## G1 S Specific Transcription                                                                                                          8.8e-01
## Mitophagy                                                                                                                            8.8e-01
## Myogenesis                                                                                                                           8.8e-01
## Netrin 1 Signaling                                                                                                                   8.8e-01
## Scavenging Of Heme From Plasma                                                                                                       8.8e-01
## Activation Of Bh3 Only Proteins                                                                                                      8.9e-01
## Signaling By Csf3 G Csf                                                                                                              8.9e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       9.0e-01
## Egfr Downregulation                                                                                                                  9.0e-01
## Fgfr1 Mutant Receptor Activation                                                                                                     9.0e-01
## G Protein Beta Gamma Signalling                                                                                                      9.0e-01
## Plasma Lipoprotein Remodeling                                                                                                        9.0e-01
## Regulation Of Mecp2 Expression And Activity                                                                                          9.0e-01
## Rho Gtpases Activate Iqgaps                                                                                                          9.0e-01
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 9.0e-01
## Activation Of Matrix Metalloproteinases                                                                                              9.1e-01
## Intrinsic Pathway For Apoptosis                                                                                                      9.1e-01
## Plasma Lipoprotein Clearance                                                                                                         9.1e-01
## Rhoj Gtpase Cycle                                                                                                                    9.1e-01
## Rhov Gtpase Cycle                                                                                                                    9.1e-01
## Signaling By Notch2                                                                                                                  9.1e-01
## Complement Cascade                                                                                                                   9.2e-01
## Gpvi Mediated Activation Cascade                                                                                                     9.2e-01
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         9.2e-01
## P75 Ntr Receptor Mediated Signalling                                                                                                 9.2e-01
## Rhou Gtpase Cycle                                                                                                                    9.2e-01
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 9.3e-01
## Ca Dependent Events                                                                                                                  9.3e-01
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              9.3e-01
## Interleukin 7 Signaling                                                                                                              9.3e-01
## Metalloprotease Dubs                                                                                                                 9.3e-01
## Nuclear Pore Complex Npc Disassembly                                                                                                 9.3e-01
## Regulation Of Tp53 Expression And Degradation                                                                                        9.3e-01
## Rho Gtpases Activate Wasps And Waves                                                                                                 9.3e-01
## Rhoh Gtpase Cycle                                                                                                                    9.3e-01
## Rhoq Gtpase Cycle                                                                                                                    9.3e-01
## Ros And Rns Production In Phagocytes                                                                                                 9.3e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     9.4e-01
## Ca2 Pathway                                                                                                                          9.4e-01
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         9.4e-01
## Generation Of Second Messenger Molecules                                                                                             9.4e-01
## Ngf Stimulated Transcription                                                                                                         9.4e-01
## Signaling By Fgfr1 In Disease                                                                                                        9.4e-01
## Transcriptional Regulation By Mecp2                                                                                                  9.4e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         9.4e-01
## Triglyceride Metabolism                                                                                                              9.4e-01
## Beta Defensins                                                                                                                       9.5e-01
## Dag And Ip3 Signaling                                                                                                                9.5e-01
## Dna Methylation                                                                                                                      9.5e-01
## Ephb Mediated Forward Signaling                                                                                                      9.5e-01
## Rhof Gtpase Cycle                                                                                                                    9.5e-01
## Rnd1 Gtpase Cycle                                                                                                                    9.5e-01
## Rnd3 Gtpase Cycle                                                                                                                    9.5e-01
## Copii Mediated Vesicle Transport                                                                                                     9.6e-01
## Rnd2 Gtpase Cycle                                                                                                                    9.6e-01
## Signaling By Scf Kit                                                                                                                 9.6e-01
## Transcriptional Regulation Of Granulopoiesis                                                                                         9.6e-01
## Extra Nuclear Estrogen Signaling                                                                                                     9.7e-01
## Interferon Alpha Beta Signaling                                                                                                      9.7e-01
## Interferon Gamma Signaling                                                                                                           9.7e-01
## Irs Mediated Signalling                                                                                                              9.7e-01
## Mapk6 Mapk4 Signaling                                                                                                                9.7e-01
## Metabolism Of Fat Soluble Vitamins                                                                                                   9.7e-01
## Notch1 Intracellular Domain Regulates Transcription                                                                                  9.7e-01
## Prc2 Methylates Histones And Dna                                                                                                     9.7e-01
## Rhog Gtpase Cycle                                                                                                                    9.7e-01
## Signaling By Tgf Beta Receptor Complex                                                                                               9.7e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     9.7e-01
## Antigen Processing Cross Presentation                                                                                                9.8e-01
## Apoptotic Execution Phase                                                                                                            9.8e-01
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      9.8e-01
## Clec7a Dectin 1 Signaling                                                                                                            9.8e-01
## Defensins                                                                                                                            9.8e-01
## Diseases Of Programmed Cell Death                                                                                                    9.8e-01
## G Protein Mediated Events                                                                                                            9.8e-01
## Initial Triggering Of Complement                                                                                                     9.8e-01
## Insulin Receptor Signalling Cascade                                                                                                  9.8e-01
## Nuclear Envelope Breakdown                                                                                                           9.8e-01
## Rhod Gtpase Cycle                                                                                                                    9.8e-01
## Signaling By Egfr                                                                                                                    9.8e-01
## Signaling By Ptk6                                                                                                                    9.8e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      9.8e-01
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               9.8e-01
## Antimicrobial Peptides                                                                                                               9.9e-01
## Arachidonic Acid Metabolism                                                                                                          9.9e-01
## Asymmetric Localization Of Pcp Proteins                                                                                              9.9e-01
## Class B 2 Secretin Family Receptors                                                                                                  9.9e-01
## Collagen Degradation                                                                                                                 9.9e-01
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       9.9e-01
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             9.9e-01
## Ncam Signaling For Neurite Out Growth                                                                                                9.9e-01
## Nrage Signals Death Through Jnk                                                                                                      9.9e-01
## Nuclear Events Kinase And Transcription Factor Activation                                                                            9.9e-01
## Programmed Cell Death                                                                                                                9.9e-01
## Rac2 Gtpase Cycle                                                                                                                    9.9e-01
## Rac3 Gtpase Cycle                                                                                                                    9.9e-01
## Rhob Gtpase Cycle                                                                                                                    9.9e-01
## Semaphorin Interactions                                                                                                              9.9e-01
## Signaling By Fgfr In Disease                                                                                                         9.9e-01
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    9.9e-01
## Signaling By Pdgf                                                                                                                    9.9e-01
## Sirt1 Negatively Regulates Rrna Expression                                                                                           9.9e-01
## Unfolded Protein Response Upr                                                                                                        9.9e-01
## 2 Ltr Circle Formation                                                                                                               1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.0e+00
## Abacavir Metabolism                                                                                                                  1.0e+00
## Abacavir Transmembrane Transport                                                                                                     1.0e+00
## Abacavir Transport And Metabolism                                                                                                    1.0e+00
## Abc Family Proteins Mediated Transport                                                                                               1.0e+00
## Abc Transporter Disorders                                                                                                            1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.0e+00
## Acetylcholine Binding And Downstream Events                                                                                          1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.0e+00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.0e+00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.0e+00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.0e+00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.0e+00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.0e+00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.0e+00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.0e+00
## Activation Of Atr In Response To Replication Stress                                                                                  1.0e+00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.0e+00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.0e+00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.0e+00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Rac1                                                                                                                   1.0e+00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Ras In B Cells                                                                                                         1.0e+00
## Activation Of Smo                                                                                                                    1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.0e+00
## Activation Of The Phototransduction Cascade                                                                                          1.0e+00
## Activation Of The Pre Replicative Complex                                                                                            1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.0e+00
## Activation Of Trka Receptors                                                                                                         1.0e+00
## Acyl Chain Remodeling Of Cl                                                                                                          1.0e+00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.0e+00
## Acyl Chain Remodelling Of Pc                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pe                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pg                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pi                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Ps                                                                                                         1.0e+00
## Adaptive Immune System                                                                                                               1.0e+00
## Adenylate Cyclase Activating Pathway                                                                                                 1.0e+00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.0e+00
## Adherens Junctions Interactions                                                                                                      1.0e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              1.0e+00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.0e+00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.0e+00
## Adrenoceptors                                                                                                                        1.0e+00
## Aflatoxin Activation And Detoxification                                                                                              1.0e+00
## Aggrephagy                                                                                                                           1.0e+00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.0e+00
## Alpha Defensins                                                                                                                      1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.0e+00
## Alpha Oxidation Of Phytanate                                                                                                         1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.0e+00
## Amine Ligand Binding Receptors                                                                                                       1.0e+00
## Amino Acid Conjugation                                                                                                               1.0e+00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.0e+00
## Amino Acids Regulate Mtorc1                                                                                                          1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.0e+00
## Amyloid Fiber Formation                                                                                                              1.0e+00
## Anchoring Fibril Formation                                                                                                           1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.0e+00
## Androgen Biosynthesis                                                                                                                1.0e+00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.0e+00
## Apoptosis                                                                                                                            1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.0e+00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.0e+00
## Apoptotic Factor Mediated Response                                                                                                   1.0e+00
## Aquaporin Mediated Transport                                                                                                         1.0e+00
## Arachidonate Production From Dag                                                                                                     1.0e+00
## Arms Mediated Activation                                                                                                             1.0e+00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.0e+00
## Asparagine N Linked Glycosylation                                                                                                    1.0e+00
## Aspartate And Asparagine Metabolism                                                                                                  1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.0e+00
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.0e+00
## Assembly Of The Hiv Virion                                                                                                           1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.0e+00
## Assembly Of The Pre Replicative Complex                                                                                              1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.0e+00
## Attachment And Entry                                                                                                                 1.0e+00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.0e+00
## Attenuation Phase                                                                                                                    1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.0e+00
## Aurka Activation By Tpx2                                                                                                             1.0e+00
## Autophagy                                                                                                                            1.0e+00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.0e+00
## Base Excision Repair                                                                                                                 1.0e+00
## Base Excision Repair Ap Site Formation                                                                                               1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.0e+00
## Beta Catenin Independent Wnt Signaling                                                                                               1.0e+00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.0e+00
## Bicarbonate Transporters                                                                                                             1.0e+00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.0e+00
## Biological Oxidations                                                                                                                1.0e+00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.0e+00
## Biosynthesis Of Maresins                                                                                                             1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.0e+00
## Biotin Transport And Metabolism                                                                                                      1.0e+00
## Blood Group Systems Biosynthesis                                                                                                     1.0e+00
## Budding And Maturation Of Hiv Virion                                                                                                 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.0e+00
## Butyrophilin Btn Family Interactions                                                                                                 1.0e+00
## C Type Lectin Receptors Clrs                                                                                                         1.0e+00
## Ca2 Activated K Channels                                                                                                             1.0e+00
## Calcineurin Activates Nfat                                                                                                           1.0e+00
## Calcitonin Like Ligand Receptors                                                                                                     1.0e+00
## Calnexin Calreticulin Cycle                                                                                                          1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.0e+00
## Cardiac Conduction                                                                                                                   1.0e+00
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  1.0e+00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.0e+00
## Carnitine Metabolism                                                                                                                 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.0e+00
## Cation Coupled Chloride Cotransporters                                                                                               1.0e+00
## Cd209 Dc Sign Signaling                                                                                                              1.0e+00
## Cd22 Mediated Bcr Regulation                                                                                                         1.0e+00
## Cdc42 Gtpase Cycle                                                                                                                   1.0e+00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.0e+00
## Cell Cell Communication                                                                                                              1.0e+00
## Cell Cell Junction Organization                                                                                                      1.0e+00
## Cell Cycle                                                                                                                           1.0e+00
## Cell Cycle Checkpoints                                                                                                               1.0e+00
## Cell Cycle Mitotic                                                                                                                   1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.0e+00
## Cell Extracellular Matrix Interactions                                                                                               1.0e+00
## Cell Junction Organization                                                                                                           1.0e+00
## Cell Surface Interactions At The Vascular Wall                                                                                       1.0e+00
## Cellular Hexose Transport                                                                                                            1.0e+00
## Cellular Response To Chemical Stress                                                                                                 1.0e+00
## Cellular Response To Heat Stress                                                                                                     1.0e+00
## Cellular Response To Hypoxia                                                                                                         1.0e+00
## Cellular Response To Starvation                                                                                                      1.0e+00
## Cellular Responses To External Stimuli                                                                                               1.0e+00
## Cellular Senescence                                                                                                                  1.0e+00
## Cgmp Effects                                                                                                                         1.0e+00
## Chaperone Mediated Autophagy                                                                                                         1.0e+00
## Chl1 Interactions                                                                                                                    1.0e+00
## Cholesterol Biosynthesis                                                                                                             1.0e+00
## Choline Catabolism                                                                                                                   1.0e+00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.0e+00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.0e+00
## Chromatin Modifying Enzymes                                                                                                          1.0e+00
## Chromosome Maintenance                                                                                                               1.0e+00
## Chylomicron Clearance                                                                                                                1.0e+00
## Cilium Assembly                                                                                                                      1.0e+00
## Citric Acid Cycle Tca Cycle                                                                                                          1.0e+00
## Class A 1 Rhodopsin Like Receptors                                                                                                   1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.0e+00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.0e+00
## Clathrin Mediated Endocytosis                                                                                                        1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.0e+00
## Coenzyme A Biosynthesis                                                                                                              1.0e+00
## Cohesin Loading Onto Chromatin                                                                                                       1.0e+00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.0e+00
## Collagen Chain Trimerization                                                                                                         1.0e+00
## Collagen Formation                                                                                                                   1.0e+00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.0e+00
## Complex I Biogenesis                                                                                                                 1.0e+00
## Condensation Of Prophase Chromosomes                                                                                                 1.0e+00
## Conjugation Of Benzoate With Glycine                                                                                                 1.0e+00
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    1.0e+00
## Constitutive Signaling By Egfrviii                                                                                                   1.0e+00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     1.0e+00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.0e+00
## Copi Mediated Anterograde Transport                                                                                                  1.0e+00
## Creatine Metabolism                                                                                                                  1.0e+00
## Creation Of C4 And C2 Activators                                                                                                     1.0e+00
## Creb3 Factors Activate Genes                                                                                                         1.0e+00
## Cristae Formation                                                                                                                    1.0e+00
## Crmps In Sema3a Signaling                                                                                                            1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.0e+00
## Crosslinking Of Collagen Fibrils                                                                                                     1.0e+00
## Cs Ds Degradation                                                                                                                    1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.0e+00
## Cyclin D Associated Events In G1                                                                                                     1.0e+00
## Cyp2e1 Reactions                                                                                                                     1.0e+00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.0e+00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.0e+00
## Cytokine Signaling In Immune System                                                                                                  1.0e+00
## Cytoprotection By Hmox1                                                                                                              1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.0e+00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.0e+00
## Cytosolic Trna Aminoacylation                                                                                                        1.0e+00
## Darpp 32 Events                                                                                                                      1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.0e+00
## Deadenylation Dependent Mrna Decay                                                                                                   1.0e+00
## Deadenylation Of Mrna                                                                                                                1.0e+00
## Dectin 2 Family                                                                                                                      1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.0e+00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        1.0e+00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.0e+00
## Defective Chst3 Causes Sedcjd                                                                                                        1.0e+00
## Defective Chst6 Causes Mcdc1                                                                                                         1.0e+00
## Defective Chsy1 Causes Tpbs                                                                                                          1.0e+00
## Defective Csf2rb Causes Smdp5                                                                                                        1.0e+00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.0e+00
## Defective F9 Activation                                                                                                              1.0e+00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.0e+00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.0e+00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           1.0e+00
## Defective Lfng Causes Scdo3                                                                                                          1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.0e+00
## Defects In Biotin Btn Metabolism                                                                                                     1.0e+00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.0e+00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.0e+00
## Degradation Of Axin                                                                                                                  1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.0e+00
## Degradation Of Cysteine And Homocysteine                                                                                             1.0e+00
## Degradation Of Dvl                                                                                                                   1.0e+00
## Degradation Of Gli1 By The Proteasome                                                                                                1.0e+00
## Degradation Of The Extracellular Matrix                                                                                              1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.0e+00
## Detoxification Of Reactive Oxygen Species                                                                                            1.0e+00
## Deubiquitination                                                                                                                     1.0e+00
## Developmental Biology                                                                                                                1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.0e+00
## Digestion                                                                                                                            1.0e+00
## Digestion And Absorption                                                                                                             1.0e+00
## Digestion Of Dietary Carbohydrate                                                                                                    1.0e+00
## Digestion Of Dietary Lipid                                                                                                           1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.0e+00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With Surfactant Metabolism                                                                                       1.0e+00
## Diseases Of Base Excision Repair                                                                                                     1.0e+00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.0e+00
## Diseases Of Dna Repair                                                                                                               1.0e+00
## Diseases Of Glycosylation                                                                                                            1.0e+00
## Diseases Of Metabolism                                                                                                               1.0e+00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.0e+00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.0e+00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     1.0e+00
## Disinhibition Of Snare Formation                                                                                                     1.0e+00
## Disorders Of Transmembrane Transporters                                                                                              1.0e+00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.0e+00
## Dna Damage Bypass                                                                                                                    1.0e+00
## Dna Damage Recognition In Gg Ner                                                                                                     1.0e+00
## Dna Damage Reversal                                                                                                                  1.0e+00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.0e+00
## Dna Double Strand Break Repair                                                                                                       1.0e+00
## Dna Double Strand Break Response                                                                                                     1.0e+00
## Dna Repair                                                                                                                           1.0e+00
## Dna Replication                                                                                                                      1.0e+00
## Dna Replication Initiation                                                                                                           1.0e+00
## Dna Replication Pre Initiation                                                                                                       1.0e+00
## Dna Strand Elongation                                                                                                                1.0e+00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.0e+00
## Dopamine Receptors                                                                                                                   1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.0e+00
## Downregulation Of Erbb2 Signaling                                                                                                    1.0e+00
## Downregulation Of Erbb4 Signaling                                                                                                    1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.0e+00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.0e+00
## Dual Incision In Gg Ner                                                                                                              1.0e+00
## Dual Incision In Tc Ner                                                                                                              1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.0e+00
## Ecm Proteoglycans                                                                                                                    1.0e+00
## Effects Of Pip2 Hydrolysis                                                                                                           1.0e+00
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.0e+00
## Egfr Transactivation By Gastrin                                                                                                      1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.0e+00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.0e+00
## Eicosanoids                                                                                                                          1.0e+00
## Elastic Fibre Formation                                                                                                              1.0e+00
## Electric Transmission Across Gap Junctions                                                                                           1.0e+00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.0e+00
## Endogenous Sterols                                                                                                                   1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.0e+00
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               1.0e+00
## Eph Ephrin Signaling                                                                                                                 1.0e+00
## Epha Mediated Growth Cone Collapse                                                                                                   1.0e+00
## Ephrin Signaling                                                                                                                     1.0e+00
## Epigenetic Regulation Of Gene Expression                                                                                             1.0e+00
## Er Quality Control Compartment Erqc                                                                                                  1.0e+00
## Er To Golgi Anterograde Transport                                                                                                    1.0e+00
## Erbb2 Activates Ptk6 Signaling                                                                                                       1.0e+00
## Erbb2 Regulates Cell Motility                                                                                                        1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.0e+00
## Erk Mapk Targets                                                                                                                     1.0e+00
## Erks Are Inactivated                                                                                                                 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.0e+00
## Erythropoietin Activates Ras                                                                                                         1.0e+00
## Erythropoietin Activates Stat5                                                                                                       1.0e+00
## Esr Mediated Signaling                                                                                                               1.0e+00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.0e+00
## Estrogen Biosynthesis                                                                                                                1.0e+00
## Estrogen Dependent Gene Expression                                                                                                   1.0e+00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.0e+00
## Ethanol Oxidation                                                                                                                    1.0e+00
## Eukaryotic Translation Elongation                                                                                                    1.0e+00
## Eukaryotic Translation Initiation                                                                                                    1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.0e+00
## Extension Of Telomeres                                                                                                               1.0e+00
## Extracellular Matrix Organization                                                                                                    1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.0e+00
## Fanconi Anemia Pathway                                                                                                               1.0e+00
## Fatty Acid Metabolism                                                                                                                1.0e+00
## Fatty Acids                                                                                                                          1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.0e+00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.0e+00
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.0e+00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.0e+00
## Fceri Mediated Mapk Activation                                                                                                       1.0e+00
## Fceri Mediated Nf Kb Activation                                                                                                      1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.0e+00
## Fcgr Activation                                                                                                                      1.0e+00
## Fcgr3a Mediated Il10 Synthesis                                                                                                       1.0e+00
## Fertilization                                                                                                                        1.0e+00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2 Alternative Splicing                                                                                                           1.0e+00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.0e+00
## Flt3 Signaling                                                                                                                       1.0e+00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.0e+00
## Flt3 Signaling In Disease                                                                                                            1.0e+00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.0e+00
## Folding Of Actin By Cct Tric                                                                                                         1.0e+00
## Formation Of Apoptosome                                                                                                              1.0e+00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.0e+00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.0e+00
## Formation Of Incision Complex In Gg Ner                                                                                              1.0e+00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.0e+00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.0e+00
## Formation Of The Cornified Envelope                                                                                                  1.0e+00
## Formation Of The Early Elongation Complex                                                                                            1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.0e+00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.0e+00
## Free Fatty Acid Receptors                                                                                                            1.0e+00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.0e+00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.0e+00
## Fructose Catabolism                                                                                                                  1.0e+00
## Fructose Metabolism                                                                                                                  1.0e+00
## G Alpha 12 13 Signalling Events                                                                                                      1.0e+00
## G Alpha I Signalling Events                                                                                                          1.0e+00
## G Alpha Q Signalling Events                                                                                                          1.0e+00
## G Alpha S Signalling Events                                                                                                          1.0e+00
## G Alpha Z Signalling Events                                                                                                          1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.0e+00
## G Protein Activation                                                                                                                 1.0e+00
## G1 S Dna Damage Checkpoints                                                                                                          1.0e+00
## G2 M Checkpoints                                                                                                                     1.0e+00
## G2 M Dna Damage Checkpoint                                                                                                           1.0e+00
## G2 Phase                                                                                                                             1.0e+00
## Gab1 Signalosome                                                                                                                     1.0e+00
## Gaba B Receptor Activation                                                                                                           1.0e+00
## Gaba Receptor Activation                                                                                                             1.0e+00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.0e+00
## Gap Junction Assembly                                                                                                                1.0e+00
## Gap Junction Degradation                                                                                                             1.0e+00
## Gap Junction Trafficking And Regulation                                                                                              1.0e+00
## Gdp Fucose Biosynthesis                                                                                                              1.0e+00
## Gene Silencing By Rna                                                                                                                1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.0e+00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.0e+00
## Glucagon Type Ligand Receptors                                                                                                       1.0e+00
## Glucocorticoid Biosynthesis                                                                                                          1.0e+00
## Gluconeogenesis                                                                                                                      1.0e+00
## Glucose Metabolism                                                                                                                   1.0e+00
## Glucuronidation                                                                                                                      1.0e+00
## Glutamate And Glutamine Metabolism                                                                                                   1.0e+00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.0e+00
## Glutathione Conjugation                                                                                                              1.0e+00
## Glutathione Synthesis And Recycling                                                                                                  1.0e+00
## Glycerophospholipid Biosynthesis                                                                                                     1.0e+00
## Glycerophospholipid Catabolism                                                                                                       1.0e+00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.0e+00
## Glycogen Metabolism                                                                                                                  1.0e+00
## Glycogen Storage Diseases                                                                                                            1.0e+00
## Glycogen Synthesis                                                                                                                   1.0e+00
## Glycolysis                                                                                                                           1.0e+00
## Glycosaminoglycan Metabolism                                                                                                         1.0e+00
## Glycosphingolipid Metabolism                                                                                                         1.0e+00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.0e+00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.0e+00
## Golgi To Er Retrograde Transport                                                                                                     1.0e+00
## Gp1b Ix V Activation Signalling                                                                                                      1.0e+00
## Gpcr Ligand Binding                                                                                                                  1.0e+00
## Grb2 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.0e+00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Hats Acetylate Histones                                                                                                              1.0e+00
## Hcmv Early Events                                                                                                                    1.0e+00
## Hcmv Infection                                                                                                                       1.0e+00
## Hcmv Late Events                                                                                                                     1.0e+00
## Hdacs Deacetylate Histones                                                                                                           1.0e+00
## Hdms Demethylate Histones                                                                                                            1.0e+00
## Hdr Through Homologous Recombination Hrr                                                                                             1.0e+00
## Hdr Through Mmej Alt Nhej                                                                                                            1.0e+00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.0e+00
## Hedgehog Ligand Biogenesis                                                                                                           1.0e+00
## Hedgehog Off State                                                                                                                   1.0e+00
## Hedgehog On State                                                                                                                    1.0e+00
## Heme Biosynthesis                                                                                                                    1.0e+00
## Heme Degradation                                                                                                                     1.0e+00
## Hemostasis                                                                                                                           1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.0e+00
## Histidine Catabolism                                                                                                                 1.0e+00
## Hiv Elongation Arrest And Recovery                                                                                                   1.0e+00
## Hiv Infection                                                                                                                        1.0e+00
## Hiv Life Cycle                                                                                                                       1.0e+00
## Hiv Transcription Elongation                                                                                                         1.0e+00
## Hiv Transcription Initiation                                                                                                         1.0e+00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.0e+00
## Homology Directed Repair                                                                                                             1.0e+00
## Hormone Ligand Binding Receptors                                                                                                     1.0e+00
## Host Interactions Of Hiv Factors                                                                                                     1.0e+00
## Hs Gag Biosynthesis                                                                                                                  1.0e+00
## Hs Gag Degradation                                                                                                                   1.0e+00
## Hsf1 Activation                                                                                                                      1.0e+00
## Hsf1 Dependent Transactivation                                                                                                       1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.0e+00
## Hyaluronan Biosynthesis And Export                                                                                                   1.0e+00
## Hyaluronan Metabolism                                                                                                                1.0e+00
## Hyaluronan Uptake And Degradation                                                                                                    1.0e+00
## Hydrolysis Of Lpc                                                                                                                    1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.0e+00
## Infection With Mycobacterium Tuberculosis                                                                                            1.0e+00
## Infectious Disease                                                                                                                   1.0e+00
## Influenza Infection                                                                                                                  1.0e+00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.0e+00
## Innate Immune System                                                                                                                 1.0e+00
## Inositol Phosphate Metabolism                                                                                                        1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.0e+00
## Insulin Processing                                                                                                                   1.0e+00
## Insulin Receptor Recycling                                                                                                           1.0e+00
## Integration Of Energy Metabolism                                                                                                     1.0e+00
## Integration Of Provirus                                                                                                              1.0e+00
## Integrin Cell Surface Interactions                                                                                                   1.0e+00
## Integrin Signaling                                                                                                                   1.0e+00
## Interaction Between L1 And Ankyrins                                                                                                  1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.0e+00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.0e+00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.0e+00
## Interferon Signaling                                                                                                                 1.0e+00
## Interleukin 36 Pathway                                                                                                               1.0e+00
## Intestinal Absorption                                                                                                                1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.0e+00
## Intra Golgi Traffic                                                                                                                  1.0e+00
## Intracellular Signaling By Second Messengers                                                                                         1.0e+00
## Intraflagellar Transport                                                                                                             1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Inwardly Rectifying K Channels                                                                                                       1.0e+00
## Ion Channel Transport                                                                                                                1.0e+00
## Ion Homeostasis                                                                                                                      1.0e+00
## Ion Transport By P Type Atpases                                                                                                      1.0e+00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.0e+00
## Ire1alpha Activates Chaperones                                                                                                       1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.0e+00
## Irf3 Mediated Induction Of Type I Ifn                                                                                                1.0e+00
## Iron Uptake And Transport                                                                                                            1.0e+00
## Irs Activation                                                                                                                       1.0e+00
## Josephin Domain Dubs                                                                                                                 1.0e+00
## Keratan Sulfate Biosynthesis                                                                                                         1.0e+00
## Keratan Sulfate Degradation                                                                                                          1.0e+00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.0e+00
## Keratinization                                                                                                                       1.0e+00
## Ketone Body Metabolism                                                                                                               1.0e+00
## Kinesins                                                                                                                             1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.0e+00
## L1cam Interactions                                                                                                                   1.0e+00
## Lagging Strand Synthesis                                                                                                             1.0e+00
## Laminin Interactions                                                                                                                 1.0e+00
## Late Endosomal Microautophagy                                                                                                        1.0e+00
## Ldl Clearance                                                                                                                        1.0e+00
## Lectin Pathway Of Complement Activation                                                                                              1.0e+00
## Leishmania Infection                                                                                                                 1.0e+00
## Leukotriene Receptors                                                                                                                1.0e+00
## Lgi Adam Interactions                                                                                                                1.0e+00
## Ligand Receptor Interactions                                                                                                         1.0e+00
## Linoleic Acid La Metabolism                                                                                                          1.0e+00
## Lipid Particle Organization                                                                                                          1.0e+00
## Lipophagy                                                                                                                            1.0e+00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.0e+00
## Long Term Potentiation                                                                                                               1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.0e+00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.0e+00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.0e+00
## Lysine Catabolism                                                                                                                    1.0e+00
## Lysosome Vesicle Biogenesis                                                                                                          1.0e+00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.0e+00
## M Phase                                                                                                                              1.0e+00
## Map2k And Mapk Activation                                                                                                            1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.0e+00
## Mapk Family Signaling Cascades                                                                                                       1.0e+00
## Mapk1 Erk2 Activation                                                                                                                1.0e+00
## Maturation Of Nucleoprotein                                                                                                          1.0e+00
## Maturation Of Protein 3a                                                                                                             1.0e+00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.0e+00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.0e+00
## Meiosis                                                                                                                              1.0e+00
## Meiotic Recombination                                                                                                                1.0e+00
## Meiotic Synapsis                                                                                                                     1.0e+00
## Melanin Biosynthesis                                                                                                                 1.0e+00
## Membrane Trafficking                                                                                                                 1.0e+00
## Met Activates Pi3k Akt Signaling                                                                                                     1.0e+00
## Met Activates Ptk2 Signaling                                                                                                         1.0e+00
## Met Activates Ptpn11                                                                                                                 1.0e+00
## Met Activates Rap1 And Rac1                                                                                                          1.0e+00
## Met Activates Ras Signaling                                                                                                          1.0e+00
## Met Interacts With Tns Proteins                                                                                                      1.0e+00
## Met Promotes Cell Motility                                                                                                           1.0e+00
## Met Receptor Activation                                                                                                              1.0e+00
## Met Receptor Recycling                                                                                                               1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.0e+00
## Metabolism Of Amine Derived Hormones                                                                                                 1.0e+00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.0e+00
## Metabolism Of Carbohydrates                                                                                                          1.0e+00
## Metabolism Of Cofactors                                                                                                              1.0e+00
## Metabolism Of Folate And Pterines                                                                                                    1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.0e+00
## Metabolism Of Lipids                                                                                                                 1.0e+00
## Metabolism Of Nucleotides                                                                                                            1.0e+00
## Metabolism Of Polyamines                                                                                                             1.0e+00
## Metabolism Of Porphyrins                                                                                                             1.0e+00
## Metabolism Of Rna                                                                                                                    1.0e+00
## Metabolism Of Steroid Hormones                                                                                                       1.0e+00
## Metabolism Of Steroids                                                                                                               1.0e+00
## Metabolism Of Vitamins And Cofactors                                                                                                 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.0e+00
## Metal Ion Slc Transporters                                                                                                           1.0e+00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.0e+00
## Metallothioneins Bind Metals                                                                                                         1.0e+00
## Methionine Salvage Pathway                                                                                                           1.0e+00
## Methylation                                                                                                                          1.0e+00
## Mhc Class Ii Antigen Presentation                                                                                                    1.0e+00
## Microrna Mirna Biogenesis                                                                                                            1.0e+00
## Mineralocorticoid Biosynthesis                                                                                                       1.0e+00
## Miro Gtpase Cycle                                                                                                                    1.0e+00
## Miscellaneous Substrates                                                                                                             1.0e+00
## Miscellaneous Transport And Binding Events                                                                                           1.0e+00
## Mismatch Repair                                                                                                                      1.0e+00
## Mitochondrial Biogenesis                                                                                                             1.0e+00
## Mitochondrial Calcium Ion Transport                                                                                                  1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.0e+00
## Mitochondrial Protein Import                                                                                                         1.0e+00
## Mitochondrial Translation                                                                                                            1.0e+00
## Mitochondrial Trna Aminoacylation                                                                                                    1.0e+00
## Mitochondrial Uncoupling                                                                                                             1.0e+00
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.0e+00
## Mitotic G2 G2 M Phases                                                                                                               1.0e+00
## Mitotic Metaphase And Anaphase                                                                                                       1.0e+00
## Mitotic Prometaphase                                                                                                                 1.0e+00
## Mitotic Prophase                                                                                                                     1.0e+00
## Mitotic Spindle Checkpoint                                                                                                           1.0e+00
## Mitotic Telophase Cytokinesis                                                                                                        1.0e+00
## Modulation By Mtb Of Host Immune System                                                                                              1.0e+00
## Molecules Associated With Elastic Fibres                                                                                             1.0e+00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.0e+00
## Mrna Capping                                                                                                                         1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.0e+00
## Mrna Editing                                                                                                                         1.0e+00
## Mrna Editing C To U Conversion                                                                                                       1.0e+00
## Mrna Splicing                                                                                                                        1.0e+00
## Mrna Splicing Minor Pathway                                                                                                          1.0e+00
## Mtor Signalling                                                                                                                      1.0e+00
## Mtorc1 Mediated Signalling                                                                                                           1.0e+00
## Mucopolysaccharidoses                                                                                                                1.0e+00
## Multifunctional Anion Exchangers                                                                                                     1.0e+00
## Muscarinic Acetylcholine Receptors                                                                                                   1.0e+00
## Muscle Contraction                                                                                                                   1.0e+00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.0e+00
## N Glycan Antennae Elongation                                                                                                         1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.0e+00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.0e+00
## Nade Modulates Death Signalling                                                                                                      1.0e+00
## Ncam1 Interactions                                                                                                                   1.0e+00
## Nectin Necl Trans Heterodimerization                                                                                                 1.0e+00
## Neddylation                                                                                                                          1.0e+00
## Nef And Signal Transduction                                                                                                          1.0e+00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.0e+00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.0e+00
## Negative Regulation Of Flt3                                                                                                          1.0e+00
## Negative Regulation Of Mapk Pathway                                                                                                  1.0e+00
## Negative Regulation Of Met Activity                                                                                                  1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.0e+00
## Negative Regulation Of Notch4 Signaling                                                                                              1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.0e+00
## Negative Regulation Of The Pi3k Akt Network                                                                                          1.0e+00
## Nephrin Family Interactions                                                                                                          1.0e+00
## Nervous System Development                                                                                                           1.0e+00
## Netrin Mediated Repulsion Signals                                                                                                    1.0e+00
## Neurexins And Neuroligins                                                                                                            1.0e+00
## Neurofascin Interactions                                                                                                             1.0e+00
## Neuronal System                                                                                                                      1.0e+00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.0e+00
## Neurotransmitter Clearance                                                                                                           1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.0e+00
## Neurotransmitter Release Cycle                                                                                                       1.0e+00
## Neutrophil Degranulation                                                                                                             1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.0e+00
## Ngf Independant Trka Activation                                                                                                      1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.0e+00
## Non Integrin Membrane Ecm Interactions                                                                                               1.0e+00
## Noncanonical Activation Of Notch3                                                                                                    1.0e+00
## Nonhomologous End Joining Nhej                                                                                                       1.0e+00
## Nonsense Mediated Decay Nmd                                                                                                          1.0e+00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.0e+00
## Notch Hlh Transcription Pathway                                                                                                      1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.0e+00
## Nrcam Interactions                                                                                                                   1.0e+00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.0e+00
## Ntrk2 Activates Rac1                                                                                                                 1.0e+00
## Nuclear Envelope Ne Reassembly                                                                                                       1.0e+00
## Nuclear Import Of Rev Protein                                                                                                        1.0e+00
## Nuclear Receptor Transcription Pathway                                                                                               1.0e+00
## Nuclear Signaling By Erbb4                                                                                                           1.0e+00
## Nucleobase Biosynthesis                                                                                                              1.0e+00
## Nucleobase Catabolism                                                                                                                1.0e+00
## Nucleotide Excision Repair                                                                                                           1.0e+00
## Nucleotide Like Purinergic Receptors                                                                                                 1.0e+00
## Nucleotide Salvage                                                                                                                   1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.0e+00
## O Linked Glycosylation                                                                                                               1.0e+00
## O Linked Glycosylation Of Mucins                                                                                                     1.0e+00
## Oas Antiviral Response                                                                                                               1.0e+00
## Olfactory Signaling Pathway                                                                                                          1.0e+00
## Oncogene Induced Senescence                                                                                                          1.0e+00
## Oncogenic Mapk Signaling                                                                                                             1.0e+00
## Opioid Signalling                                                                                                                    1.0e+00
## Opsins                                                                                                                               1.0e+00
## Orc1 Removal From Chromatin                                                                                                          1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.0e+00
## Organelle Biogenesis And Maintenance                                                                                                 1.0e+00
## Organic Anion Transport                                                                                                              1.0e+00
## Organic Anion Transporters                                                                                                           1.0e+00
## Organic Cation Anion Zwitterion Transport                                                                                            1.0e+00
## Organic Cation Transport                                                                                                             1.0e+00
## Other Interleukin Signaling                                                                                                          1.0e+00
## Oxidative Stress Induced Senescence                                                                                                  1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.0e+00
## P2y Receptors                                                                                                                        1.0e+00
## P38mapk Events                                                                                                                       1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.0e+00
## P75ntr Regulates Axonogenesis                                                                                                        1.0e+00
## Parasite Infection                                                                                                                   1.0e+00
## Passive Transport By Aquaporins                                                                                                      1.0e+00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Pcp Ce Pathway                                                                                                                       1.0e+00
## Pecam1 Interactions                                                                                                                  1.0e+00
## Pentose Phosphate Pathway                                                                                                            1.0e+00
## Peptide Hormone Biosynthesis                                                                                                         1.0e+00
## Peptide Hormone Metabolism                                                                                                           1.0e+00
## Peroxisomal Lipid Metabolism                                                                                                         1.0e+00
## Peroxisomal Protein Import                                                                                                           1.0e+00
## Pexophagy                                                                                                                            1.0e+00
## Phase 0 Rapid Depolarisation                                                                                                         1.0e+00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.0e+00
## Phase 2 Plateau Phase                                                                                                                1.0e+00
## Phase 3 Rapid Repolarisation                                                                                                         1.0e+00
## Phase I Functionalization Of Compounds                                                                                               1.0e+00
## Phase Ii Conjugation Of Compounds                                                                                                    1.0e+00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.0e+00
## Phenylalanine Metabolism                                                                                                             1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.0e+00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.0e+00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.0e+00
## Phospholipid Metabolism                                                                                                              1.0e+00
## Physiological Factors                                                                                                                1.0e+00
## Pi 3k Cascade Fgfr1                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr2                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr3                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr4                                                                                                                  1.0e+00
## Pi Metabolism                                                                                                                        1.0e+00
## Pi3k Akt Activation                                                                                                                  1.0e+00
## Pi3k Akt Signaling In Cancer                                                                                                         1.0e+00
## Pi3k Events In Erbb2 Signaling                                                                                                       1.0e+00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.0e+00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.0e+00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.0e+00
## Pka Activation In Glucagon Signalling                                                                                                1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.0e+00
## Pkmts Methylate Histone Lysines                                                                                                      1.0e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.0e+00
## Platelet Activation Signaling And Aggregation                                                                                        1.0e+00
## Platelet Adhesion To Exposed Collagen                                                                                                1.0e+00
## Platelet Aggregation Plug Formation                                                                                                  1.0e+00
## Platelet Calcium Homeostasis                                                                                                         1.0e+00
## Platelet Homeostasis                                                                                                                 1.0e+00
## Platelet Sensitization By Ldl                                                                                                        1.0e+00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Polo Like Kinase Mediated Events                                                                                                     1.0e+00
## Polymerase Switching                                                                                                                 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.0e+00
## Potassium Channels                                                                                                                   1.0e+00
## Potential Therapeutics For Sars                                                                                                      1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.0e+00
## Pre Notch Expression And Processing                                                                                                  1.0e+00
## Pre Notch Processing In Golgi                                                                                                        1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.0e+00
## Pregnenolone Biosynthesis                                                                                                            1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.0e+00
## Presynaptic Function Of Kainate Receptors                                                                                            1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.0e+00
## Processing And Activation Of Sumo                                                                                                    1.0e+00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.0e+00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.0e+00
## Processing Of Dna Double Strand Break Ends                                                                                           1.0e+00
## Processing Of Intronless Pre Mrnas                                                                                                   1.0e+00
## Processing Of Smdt1                                                                                                                  1.0e+00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.0e+00
## Processive Synthesis On The Lagging Strand                                                                                           1.0e+00
## Prolactin Receptor Signaling                                                                                                         1.0e+00
## Prolonged Erk Activation Events                                                                                                      1.0e+00
## Propionyl Coa Catabolism                                                                                                             1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.0e+00
## Prostanoid Ligand Receptors                                                                                                          1.0e+00
## Protein Folding                                                                                                                      1.0e+00
## Protein Localization                                                                                                                 1.0e+00
## Protein Methylation                                                                                                                  1.0e+00
## Protein Protein Interactions At Synapses                                                                                             1.0e+00
## Protein Repair                                                                                                                       1.0e+00
## Protein Ubiquitination                                                                                                               1.0e+00
## Proton Coupled Monocarboxylate Transport                                                                                             1.0e+00
## Pten Regulation                                                                                                                      1.0e+00
## Ptk6 Expression                                                                                                                      1.0e+00
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.0e+00
## Ptk6 Regulates Cell Cycle                                                                                                            1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.0e+00
## Purine Catabolism                                                                                                                    1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.0e+00
## Purine Salvage                                                                                                                       1.0e+00
## Pyrimidine Catabolism                                                                                                                1.0e+00
## Pyrimidine Salvage                                                                                                                   1.0e+00
## Pyruvate Metabolism                                                                                                                  1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.0e+00
## Ra Biosynthesis Pathway                                                                                                              1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.0e+00
## Rab Geranylgeranylation                                                                                                              1.0e+00
## Rab Regulation Of Trafficking                                                                                                        1.0e+00
## Rac1 Gtpase Cycle                                                                                                                    1.0e+00
## Raf Activation                                                                                                                       1.0e+00
## Rap1 Signalling                                                                                                                      1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.0e+00
## Ras Processing                                                                                                                       1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.0e+00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.0e+00
## Recycling Of Bile Acids And Salts                                                                                                    1.0e+00
## Recycling Of Eif2 Gdp                                                                                                                1.0e+00
## Recycling Pathway Of L1                                                                                                              1.0e+00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.0e+00
## Reelin Signalling Pathway                                                                                                            1.0e+00
## Regulated Proteolysis Of P75ntr                                                                                                      1.0e+00
## Regulation Of Bach1 Activity                                                                                                         1.0e+00
## Regulation Of Beta Cell Development                                                                                                  1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.0e+00
## Regulation Of Expression Of Slits And Robos                                                                                          1.0e+00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.0e+00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.0e+00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.0e+00
## Regulation Of Ifna Signaling                                                                                                         1.0e+00
## Regulation Of Ifng Signaling                                                                                                         1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.0e+00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.0e+00
## Regulation Of Insulin Secretion                                                                                                      1.0e+00
## Regulation Of Kit Signaling                                                                                                          1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.0e+00
## Regulation Of Pten Gene Transcription                                                                                                1.0e+00
## Regulation Of Pten Localization                                                                                                      1.0e+00
## Regulation Of Pten Mrna Translation                                                                                                  1.0e+00
## Regulation Of Pten Stability And Activity                                                                                            1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.0e+00
## Regulation Of Ras By Gaps                                                                                                            1.0e+00
## Regulation Of Runx1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx2 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx3 Expression And Activity                                                                                          1.0e+00
## Regulation Of Signaling By Cbl                                                                                                       1.0e+00
## Regulation Of Signaling By Nodal                                                                                                     1.0e+00
## Regulation Of Tp53 Activity                                                                                                          1.0e+00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.0e+00
## Relaxin Receptors                                                                                                                    1.0e+00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.0e+00
## Release Of Hh Np From The Secreting Cell                                                                                             1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.0e+00
## Reproduction                                                                                                                         1.0e+00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.0e+00
## Resolution Of D Loop Structures                                                                                                      1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.0e+00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.0e+00
## Respiratory Electron Transport                                                                                                       1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.0e+00
## Response Of Mtb To Phagocytosis                                                                                                      1.0e+00
## Response To Elevated Platelet Cytosolic Ca2                                                                                          1.0e+00
## Response To Metal Ions                                                                                                               1.0e+00
## Ret Signaling                                                                                                                        1.0e+00
## Retinoid Cycle Disease Events                                                                                                        1.0e+00
## Retrograde Neurotrophin Signalling                                                                                                   1.0e+00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.0e+00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.0e+00
## Rho Gtpase Cycle                                                                                                                     1.0e+00
## Rho Gtpase Effectors                                                                                                                 1.0e+00
## Rho Gtpases Activate Cit                                                                                                             1.0e+00
## Rho Gtpases Activate Formins                                                                                                         1.0e+00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.0e+00
## Rho Gtpases Activate Pkns                                                                                                            1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.0e+00
## Rho Gtpases Activate Rocks                                                                                                           1.0e+00
## Rhoa Gtpase Cycle                                                                                                                    1.0e+00
## Rhobtb Gtpase Cycle                                                                                                                  1.0e+00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb3 Atpase Cycle                                                                                                                 1.0e+00
## Rhoc Gtpase Cycle                                                                                                                    1.0e+00
## Rhot1 Gtpase Cycle                                                                                                                   1.0e+00
## Rmts Methylate Histone Arginines                                                                                                     1.0e+00
## Rna Polymerase I Promoter Escape                                                                                                     1.0e+00
## Rna Polymerase I Transcription                                                                                                       1.0e+00
## Rna Polymerase I Transcription Initiation                                                                                            1.0e+00
## Rna Polymerase I Transcription Termination                                                                                           1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.0e+00
## Rna Polymerase Ii Transcription Termination                                                                                          1.0e+00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.0e+00
## Rna Polymerase Iii Transcription                                                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Termination                                                                                         1.0e+00
## Robo Receptors Bind Akap5                                                                                                            1.0e+00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.0e+00
## Role Of Phospholipids In Phagocytosis                                                                                                1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.0e+00
## Rora Activates Gene Expression                                                                                                       1.0e+00
## Rrna Modification In The Mitochondrion                                                                                               1.0e+00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Rrna Processing                                                                                                                      1.0e+00
## Rrna Processing In The Mitochondrion                                                                                                 1.0e+00
## Rsk Activation                                                                                                                       1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.0e+00
## Runx2 Regulates Bone Development                                                                                                     1.0e+00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.0e+00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.0e+00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.0e+00
## Runx3 Regulates Notch Signaling                                                                                                      1.0e+00
## Runx3 Regulates P14 Arf                                                                                                              1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.0e+00
## S Phase                                                                                                                              1.0e+00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.0e+00
## Sars Cov 1 Infection                                                                                                                 1.0e+00
## Sars Cov 2 Infection                                                                                                                 1.0e+00
## Sars Cov Infections                                                                                                                  1.0e+00
## Scavenging By Class F Receptors                                                                                                      1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.0e+00
## Selective Autophagy                                                                                                                  1.0e+00
## Selenoamino Acid Metabolism                                                                                                          1.0e+00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.0e+00
## Sema4d In Semaphorin Signaling                                                                                                       1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.0e+00
## Senescence Associated Secretory Phenotype Sasp                                                                                       1.0e+00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.0e+00
## Sensory Perception                                                                                                                   1.0e+00
## Sensory Processing Of Sound                                                                                                          1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.0e+00
## Separation Of Sister Chromatids                                                                                                      1.0e+00
## Serine Biosynthesis                                                                                                                  1.0e+00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.0e+00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.0e+00
## Serotonin Receptors                                                                                                                  1.0e+00
## Shc Mediated Cascade Fgfr1                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr3                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr4                                                                                                           1.0e+00
## Shc Related Events Triggered By Igf1r                                                                                                1.0e+00
## Shc1 Events In Egfr Signaling                                                                                                        1.0e+00
## Shc1 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.0e+00
## Sialic Acid Metabolism                                                                                                               1.0e+00
## Signal Amplification                                                                                                                 1.0e+00
## Signal Attenuation                                                                                                                   1.0e+00
## Signal Regulatory Protein Family Interactions                                                                                        1.0e+00
## Signal Transduction By L1                                                                                                            1.0e+00
## Signaling By Activin                                                                                                                 1.0e+00
## Signaling By Bmp                                                                                                                     1.0e+00
## Signaling By Braf And Raf Fusions                                                                                                    1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.0e+00
## Signaling By Egfr In Cancer                                                                                                          1.0e+00
## Signaling By Erbb2                                                                                                                   1.0e+00
## Signaling By Erbb2 Ecd Mutants                                                                                                       1.0e+00
## Signaling By Erbb2 In Cancer                                                                                                         1.0e+00
## Signaling By Erbb4                                                                                                                   1.0e+00
## Signaling By Erythropoietin                                                                                                          1.0e+00
## Signaling By Fgfr                                                                                                                    1.0e+00
## Signaling By Fgfr1                                                                                                                   1.0e+00
## Signaling By Fgfr2                                                                                                                   1.0e+00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.0e+00
## Signaling By Fgfr2 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr3                                                                                                                   1.0e+00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.0e+00
## Signaling By Fgfr4                                                                                                                   1.0e+00
## Signaling By Fgfr4 In Disease                                                                                                        1.0e+00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.0e+00
## Signaling By Gpcr                                                                                                                    1.0e+00
## Signaling By Hedgehog                                                                                                                1.0e+00
## Signaling By Hippo                                                                                                                   1.0e+00
## Signaling By Insulin Receptor                                                                                                        1.0e+00
## Signaling By Lrp5 Mutants                                                                                                            1.0e+00
## Signaling By Mapk Mutants                                                                                                            1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.0e+00
## Signaling By Met                                                                                                                     1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.0e+00
## Signaling By Mras Complex Mutants                                                                                                    1.0e+00
## Signaling By Mst1                                                                                                                    1.0e+00
## Signaling By Nodal                                                                                                                   1.0e+00
## Signaling By Notch                                                                                                                   1.0e+00
## Signaling By Notch1                                                                                                                  1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.0e+00
## Signaling By Notch3                                                                                                                  1.0e+00
## Signaling By Notch4                                                                                                                  1.0e+00
## Signaling By Ntrk2 Trkb                                                                                                              1.0e+00
## Signaling By Ntrk3 Trkc                                                                                                              1.0e+00
## Signaling By Ntrks                                                                                                                   1.0e+00
## Signaling By Nuclear Receptors                                                                                                       1.0e+00
## Signaling By Receptor Tyrosine Kinases                                                                                               1.0e+00
## Signaling By Retinoic Acid                                                                                                           1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.0e+00
## Signaling By Rnf43 Mutants                                                                                                           1.0e+00
## Signaling By Robo Receptors                                                                                                          1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.0e+00
## Signaling By Tgfb Family Members                                                                                                     1.0e+00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.0e+00
## Signaling By Vegf                                                                                                                    1.0e+00
## Signaling By Wnt                                                                                                                     1.0e+00
## Signaling By Wnt In Cancer                                                                                                           1.0e+00
## Signalling To Erks                                                                                                                   1.0e+00
## Signalling To P38 Via Rit And Rin                                                                                                    1.0e+00
## Signalling To Ras                                                                                                                    1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.0e+00
## Slc Mediated Transmembrane Transport                                                                                                 1.0e+00
## Slc Transporter Disorders                                                                                                            1.0e+00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.0e+00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.0e+00
## Smooth Muscle Contraction                                                                                                            1.0e+00
## Snrnp Assembly                                                                                                                       1.0e+00
## Sodium Calcium Exchangers                                                                                                            1.0e+00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.0e+00
## Sodium Proton Exchangers                                                                                                             1.0e+00
## Sos Mediated Signalling                                                                                                              1.0e+00
## Sperm Motility And Taxes                                                                                                             1.0e+00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.0e+00
## Sphingolipid Metabolism                                                                                                              1.0e+00
## Spry Regulation Of Fgf Signaling                                                                                                     1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.0e+00
## Stabilization Of P53                                                                                                                 1.0e+00
## Stat5 Activation                                                                                                                     1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.0e+00
## Stimuli Sensing Channels                                                                                                             1.0e+00
## Sting Mediated Induction Of Host Immune Responses                                                                                    1.0e+00
## Striated Muscle Contraction                                                                                                          1.0e+00
## Sulfide Oxidation To Sulfate                                                                                                         1.0e+00
## Sulfur Amino Acid Metabolism                                                                                                         1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.0e+00
## Sumo Is Proteolytically Processed                                                                                                    1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.0e+00
## Sumoylation                                                                                                                          1.0e+00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.0e+00
## Sumoylation Of Dna Replication Proteins                                                                                              1.0e+00
## Sumoylation Of Intracellular Receptors                                                                                               1.0e+00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.0e+00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.0e+00
## Sumoylation Of Transcription Cofactors                                                                                               1.0e+00
## Sumoylation Of Transcription Factors                                                                                                 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.0e+00
## Suppression Of Apoptosis                                                                                                             1.0e+00
## Suppression Of Phagosomal Maturation                                                                                                 1.0e+00
## Surfactant Metabolism                                                                                                                1.0e+00
## Switching Of Origins To A Post Replicative State                                                                                     1.0e+00
## Synaptic Adhesion Like Molecules                                                                                                     1.0e+00
## Syndecan Interactions                                                                                                                1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.0e+00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.0e+00
## Synthesis Of Diphthamide Eef2                                                                                                        1.0e+00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.0e+00
## Synthesis Of Gdp Mannose                                                                                                             1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.0e+00
## Synthesis Of Ketone Bodies                                                                                                           1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.0e+00
## Synthesis Of Lipoxins Lx                                                                                                             1.0e+00
## Synthesis Of Pa                                                                                                                      1.0e+00
## Synthesis Of Pc                                                                                                                      1.0e+00
## Synthesis Of Pe                                                                                                                      1.0e+00
## Synthesis Of Pg                                                                                                                      1.0e+00
## Synthesis Of Pi                                                                                                                      1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.0e+00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.0e+00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.0e+00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.0e+00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.0e+00
## Tbc Rabgaps                                                                                                                          1.0e+00
## Tcf Dependent Signaling In Response To Wnt                                                                                           1.0e+00
## Tcr Signaling                                                                                                                        1.0e+00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.0e+00
## Telomere C Strand Synthesis Initiation                                                                                               1.0e+00
## Telomere Extension By Telomerase                                                                                                     1.0e+00
## Telomere Maintenance                                                                                                                 1.0e+00
## Terminal Pathway Of Complement                                                                                                       1.0e+00
## Termination Of O Glycan Biosynthesis                                                                                                 1.0e+00
## Termination Of Translesion Dna Synthesis                                                                                             1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.0e+00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.0e+00
## The Activation Of Arylsulfatases                                                                                                     1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.0e+00
## The Fatty Acid Cycling Model                                                                                                         1.0e+00
## The Phototransduction Cascade                                                                                                        1.0e+00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.0e+00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.0e+00
## Thyroxine Biosynthesis                                                                                                               1.0e+00
## Tie2 Signaling                                                                                                                       1.0e+00
## Tight Junction Interactions                                                                                                          1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.0e+00
## Tp53 Regulates Metabolic Genes                                                                                                       1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.0e+00
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.0e+00
## Traf6 Mediated Irf7 Activation                                                                                                       1.0e+00
## Trafficking Of Ampa Receptors                                                                                                        1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.0e+00
## Trail Signaling                                                                                                                      1.0e+00
## Trans Golgi Network Vesicle Budding                                                                                                  1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.0e+00
## Transcription Of The Hiv Genome                                                                                                      1.0e+00
## Transcriptional Regulation By E2f6                                                                                                   1.0e+00
## Transcriptional Regulation By Runx1                                                                                                  1.0e+00
## Transcriptional Regulation By Runx2                                                                                                  1.0e+00
## Transcriptional Regulation By Runx3                                                                                                  1.0e+00
## Transcriptional Regulation By Small Rnas                                                                                             1.0e+00
## Transcriptional Regulation By Tp53                                                                                                   1.0e+00
## Transcriptional Regulation By Ventx                                                                                                  1.0e+00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.0e+00
## Transferrin Endocytosis And Recycling                                                                                                1.0e+00
## Translation                                                                                                                          1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.0e+00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.0e+00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.0e+00
## Translesion Synthesis By Polh                                                                                                        1.0e+00
## Translesion Synthesis By Polk                                                                                                        1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.0e+00
## Transmission Across Chemical Synapses                                                                                                1.0e+00
## Transport And Synthesis Of Paps                                                                                                      1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.0e+00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.0e+00
## Transport Of Fatty Acids                                                                                                             1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.0e+00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.0e+00
## Transport Of Nucleotide Sugars                                                                                                       1.0e+00
## Transport Of Organic Anions                                                                                                          1.0e+00
## Transport Of Small Molecules                                                                                                         1.0e+00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.0e+00
## Transport To The Golgi And Subsequent Modification                                                                                   1.0e+00
## Triglyceride Biosynthesis                                                                                                            1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.0e+00
## Trna Aminoacylation                                                                                                                  1.0e+00
## Trna Modification In The Mitochondrion                                                                                               1.0e+00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Trna Processing                                                                                                                      1.0e+00
## Trna Processing In The Mitochondrion                                                                                                 1.0e+00
## Trna Processing In The Nucleus                                                                                                       1.0e+00
## Trp Channels                                                                                                                         1.0e+00
## Tryptophan Catabolism                                                                                                                1.0e+00
## Type I Hemidesmosome Assembly                                                                                                        1.0e+00
## Tyrosine Catabolism                                                                                                                  1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.0e+00
## Ub Specific Processing Proteases                                                                                                     1.0e+00
## Ubiquinol Biosynthesis                                                                                                               1.0e+00
## Uch Proteinases                                                                                                                      1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.0e+00
## Unwinding Of Dna                                                                                                                     1.0e+00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.0e+00
## Uptake And Function Of Anthrax Toxins                                                                                                1.0e+00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.0e+00
## Urea Cycle                                                                                                                           1.0e+00
## Vasopressin Like Receptors                                                                                                           1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.0e+00
## Vegf Ligand Receptor Interactions                                                                                                    1.0e+00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.0e+00
## Vesicle Mediated Transport                                                                                                           1.0e+00
## Viral Messenger Rna Synthesis                                                                                                        1.0e+00
## Visual Phototransduction                                                                                                             1.0e+00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.0e+00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.0e+00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.0e+00
## Vitamin C Ascorbate Metabolism                                                                                                       1.0e+00
## Vitamin D Calciferol Metabolism                                                                                                      1.0e+00
## Vitamins                                                                                                                             1.0e+00
## Vldl Assembly                                                                                                                        1.0e+00
## Vldl Clearance                                                                                                                       1.0e+00
## Vldlr Internalisation And Degradation                                                                                                1.0e+00
## Voltage Gated Potassium Channels                                                                                                     1.0e+00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.0e+00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.0e+00
## Wnt Mediated Activation Of Dvl                                                                                                       1.0e+00
## Xenobiotics                                                                                                                          1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.0e+00
## Zinc Transporters                                                                                                                    1.0e+00
##                                                                                                                                       fdr
## Interleukin 10 Signaling                                                                                                             0.01
## Interleukin 4 And Interleukin 13 Signaling                                                                                           1.00
## Interleukin 18 Signaling                                                                                                             1.00
## Chemokine Receptors Bind Chemokines                                                                                                  1.00
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         1.00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.00
## P75ntr Signals Via Nf Kb                                                                                                             1.00
## Purinergic Signaling In Leishmaniasis Infection                                                                                      1.00
## Interleukin 1 Processing                                                                                                             1.00
## Tnfs Bind Their Physiological Receptors                                                                                              1.00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.00
## Diseases Of Immune System                                                                                                            1.00
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.00
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             1.00
## Cd28 Dependent Vav1 Pathway                                                                                                          1.00
## Killing Mechanisms                                                                                                                   1.00
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    1.00
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          1.00
## Myd88 Independent Tlr4 Cascade                                                                                                       1.00
## Nf Kb Is Activated And Signals Survival                                                                                              1.00
## P75ntr Recruits Signalling Complexes                                                                                                 1.00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.00
## Trafficking And Processing Of Endosomal Tlr                                                                                          1.00
## Nod1 2 Signaling Pathway                                                                                                             1.00
## Interleukin 15 Signaling                                                                                                             1.00
## Toll Like Receptor Cascades                                                                                                          1.00
## Pyroptosis                                                                                                                           1.00
## Alternative Complement Activation                                                                                                    1.00
## Fasl Cd95l Signaling                                                                                                                 1.00
## G2 M Dna Replication Checkpoint                                                                                                      1.00
## Galactose Catabolism                                                                                                                 1.00
## Hdl Clearance                                                                                                                        1.00
## Mecp2 Regulates Transcription Factors                                                                                                1.00
## Nostrin Mediated Enos Trafficking                                                                                                    1.00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.00
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.00
## Sumoylation Of Dna Methylation Proteins                                                                                              1.00
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                1.00
## Biosynthesis Of Epa Derived Spms                                                                                                     1.00
## Clec7a Inflammasome Pathway                                                                                                          1.00
## Fibronectin Matrix Formation                                                                                                         1.00
## Phosphorylation Of Emi1                                                                                                              1.00
## Regulated Necrosis                                                                                                                   1.00
## Scavenging By Class B Receptors                                                                                                      1.00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    1.00
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 1.00
## Tnfr1 Mediated Ceramide Production                                                                                                   1.00
## Irak4 Deficiency Tlr2 4                                                                                                              1.00
## Interleukin 2 Family Signaling                                                                                                       1.00
## Interleukin 17 Signaling                                                                                                             1.00
## Interleukin 1 Family Signaling                                                                                                       1.00
## Scavenging By Class A Receptors                                                                                                      1.00
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         1.00
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            1.00
## Creb Phosphorylation                                                                                                                 1.00
## Ikba Variant Leads To Eda Id                                                                                                         1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  1.00
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 1.00
## Activation Of C3 And C5                                                                                                              1.00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   1.00
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         1.00
## Ctla4 Inhibitory Signaling                                                                                                           1.00
## Hdl Assembly                                                                                                                         1.00
## Heme Signaling                                                                                                                       1.00
## Inactivation Of Cdc42 And Rac1                                                                                                       1.00
## Inflammasomes                                                                                                                        1.00
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    1.00
## Runx3 Regulates Wnt Signaling                                                                                                        1.00
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           1.00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         1.00
## Cd163 Mediating An Anti Inflammatory Response                                                                                        1.00
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          1.00
## Interleukin 23 Signaling                                                                                                             1.00
## Interleukin 9 Signaling                                                                                                              1.00
## Trif Mediated Programmed Cell Death                                                                                                  1.00
## Ikk Complex Recruitment Mediated By Rip1                                                                                             1.00
## Ovarian Tumor Domain Proteases                                                                                                       1.00
## Traf6 Mediated Nf Kb Activation                                                                                                      1.00
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               1.00
## Akt Phosphorylates Targets In The Nucleus                                                                                            1.00
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             1.00
## Chylomicron Assembly                                                                                                                 1.00
## Chylomicron Remodeling                                                                                                               1.00
## Hdl Remodeling                                                                                                                       1.00
## Interleukin 21 Signaling                                                                                                             1.00
## Mapk3 Erk1 Activation                                                                                                                1.00
## Mastl Facilitates Mitotic Progression                                                                                                1.00
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           1.00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        1.00
## Condensation Of Prometaphase Chromosomes                                                                                             1.00
## Dermatan Sulfate Biosynthesis                                                                                                        1.00
## Dscam Interactions                                                                                                                   1.00
## Endosomal Vacuolar Pathway                                                                                                           1.00
## Enos Activation                                                                                                                      1.00
## Interleukin 27 Signaling                                                                                                             1.00
## Interleukin 6 Signaling                                                                                                              1.00
## Receptor Mediated Mitophagy                                                                                                          1.00
## Regulation By C Flip                                                                                                                 1.00
## Rho Gtpases Activate Ktn1                                                                                                            1.00
## Signaling By Leptin                                                                                                                  1.00
## Sumoylation Of Immune Response Proteins                                                                                              1.00
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     1.00
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    1.00
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     1.00
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    1.00
## G0 And Early G1                                                                                                                      1.00
## Interleukin 2 Signaling                                                                                                              1.00
## Interleukin 35 Signalling                                                                                                            1.00
## Interleukin Receptor Shc Signaling                                                                                                   1.00
## Notch2 Intracellular Domain Regulates Transcription                                                                                  1.00
## Signaling By Interleukins                                                                                                            1.00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            1.00
## Tandem Pore Domain Potassium Channels                                                                                                1.00
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             1.00
## Costimulation By The Cd28 Family                                                                                                     1.00
## Pd 1 Signaling                                                                                                                       1.00
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 1.00
## Apoptosis Induced Dna Fragmentation                                                                                                  1.00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        1.00
## Dissolution Of Fibrin Clot                                                                                                           1.00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       1.00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             1.00
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 1.00
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                1.00
## Dap12 Interactions                                                                                                                   1.00
## Ripk1 Mediated Regulated Necrosis                                                                                                    1.00
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             1.00
## Dcc Mediated Attractive Signaling                                                                                                    1.00
## Early Phase Of Hiv Life Cycle                                                                                                        1.00
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  1.00
## Irak1 Recruits Ikk Complex                                                                                                           1.00
## Repression Of Wnt Target Genes                                                                                                       1.00
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  1.00
## Nicotinate Metabolism                                                                                                                1.00
## Peptide Ligand Binding Receptors                                                                                                     1.00
## Depolymerisation Of The Nuclear Lamina                                                                                               1.00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            1.00
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             1.00
## Perk Regulates Gene Expression                                                                                                       1.00
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               1.00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   1.00
## Wnt5a Dependent Internalization Of Fzd4                                                                                              1.00
## Cargo Concentration In The Er                                                                                                        1.00
## Cd28 Co Stimulation                                                                                                                  1.00
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      1.00
## Nrif Signals Cell Death From The Nucleus                                                                                             1.00
## The Nlrp3 Inflammasome                                                                                                               1.00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         1.00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 1.00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 1.00
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      1.00
## Regulation Of Tnfr1 Signaling                                                                                                        1.00
## Abc Transporters In Lipid Homeostasis                                                                                                1.00
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        1.00
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     1.00
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      1.00
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          1.00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               1.00
## Interleukin 1 Signaling                                                                                                              1.00
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              1.00
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        1.00
## Nicotinamide Salvaging                                                                                                               1.00
## Other Semaphorin Interactions                                                                                                        1.00
## Phase 4 Resting Membrane Potential                                                                                                   1.00
## Plasma Lipoprotein Assembly                                                                                                          1.00
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 1.00
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   1.00
## G Beta Gamma Signalling Through Cdc42                                                                                                1.00
## Phosphorylation Of The Apc C                                                                                                         1.00
## Pka Mediated Phosphorylation Of Creb                                                                                                 1.00
## Signaling By Kit In Disease                                                                                                          1.00
## Signaling By Pdgfr In Disease                                                                                                        1.00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                1.00
## Branched Chain Amino Acid Catabolism                                                                                                 1.00
## Interleukin 12 Family Signaling                                                                                                      1.00
## Interleukin 37 Signaling                                                                                                             1.00
## Rho Gtpases Activate Paks                                                                                                            1.00
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    1.00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          1.00
## E2f Mediated Regulation Of Dna Replication                                                                                           1.00
## Pink1 Prkn Mediated Mitophagy                                                                                                        1.00
## Incretin Synthesis Secretion And Inactivation                                                                                        1.00
## Raf Independent Mapk1 3 Activation                                                                                                   1.00
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         1.00
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               1.00
## Growth Hormone Receptor Signaling                                                                                                    1.00
## Interleukin 6 Family Signaling                                                                                                       1.00
## Tnf Signaling                                                                                                                        1.00
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           1.00
## Triglyceride Catabolism                                                                                                              1.00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             1.00
## Basigin Interactions                                                                                                                 1.00
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              1.00
## Inactivation Of Csf3 G Csf Signaling                                                                                                 1.00
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        1.00
## Interleukin 20 Family Signaling                                                                                                      1.00
## Wnt Ligand Biogenesis And Trafficking                                                                                                1.00
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                1.00
## Foxo Mediated Transcription                                                                                                          1.00
## Interleukin 12 Signaling                                                                                                             1.00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.00
## Vegfr2 Mediated Vascular Permeability                                                                                                1.00
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     1.00
## Circadian Clock                                                                                                                      1.00
## Dap12 Signaling                                                                                                                      1.00
## Death Receptor Signalling                                                                                                            1.00
## Downstream Signal Transduction                                                                                                       1.00
## G1 S Specific Transcription                                                                                                          1.00
## Mitophagy                                                                                                                            1.00
## Myogenesis                                                                                                                           1.00
## Netrin 1 Signaling                                                                                                                   1.00
## Scavenging Of Heme From Plasma                                                                                                       1.00
## Activation Of Bh3 Only Proteins                                                                                                      1.00
## Signaling By Csf3 G Csf                                                                                                              1.00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.00
## Egfr Downregulation                                                                                                                  1.00
## Fgfr1 Mutant Receptor Activation                                                                                                     1.00
## G Protein Beta Gamma Signalling                                                                                                      1.00
## Plasma Lipoprotein Remodeling                                                                                                        1.00
## Regulation Of Mecp2 Expression And Activity                                                                                          1.00
## Rho Gtpases Activate Iqgaps                                                                                                          1.00
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.00
## Activation Of Matrix Metalloproteinases                                                                                              1.00
## Intrinsic Pathway For Apoptosis                                                                                                      1.00
## Plasma Lipoprotein Clearance                                                                                                         1.00
## Rhoj Gtpase Cycle                                                                                                                    1.00
## Rhov Gtpase Cycle                                                                                                                    1.00
## Signaling By Notch2                                                                                                                  1.00
## Complement Cascade                                                                                                                   1.00
## Gpvi Mediated Activation Cascade                                                                                                     1.00
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.00
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.00
## Rhou Gtpase Cycle                                                                                                                    1.00
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.00
## Ca Dependent Events                                                                                                                  1.00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              1.00
## Interleukin 7 Signaling                                                                                                              1.00
## Metalloprotease Dubs                                                                                                                 1.00
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.00
## Regulation Of Tp53 Expression And Degradation                                                                                        1.00
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.00
## Rhoh Gtpase Cycle                                                                                                                    1.00
## Rhoq Gtpase Cycle                                                                                                                    1.00
## Ros And Rns Production In Phagocytes                                                                                                 1.00
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.00
## Ca2 Pathway                                                                                                                          1.00
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         1.00
## Generation Of Second Messenger Molecules                                                                                             1.00
## Ngf Stimulated Transcription                                                                                                         1.00
## Signaling By Fgfr1 In Disease                                                                                                        1.00
## Transcriptional Regulation By Mecp2                                                                                                  1.00
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         1.00
## Triglyceride Metabolism                                                                                                              1.00
## Beta Defensins                                                                                                                       1.00
## Dag And Ip3 Signaling                                                                                                                1.00
## Dna Methylation                                                                                                                      1.00
## Ephb Mediated Forward Signaling                                                                                                      1.00
## Rhof Gtpase Cycle                                                                                                                    1.00
## Rnd1 Gtpase Cycle                                                                                                                    1.00
## Rnd3 Gtpase Cycle                                                                                                                    1.00
## Copii Mediated Vesicle Transport                                                                                                     1.00
## Rnd2 Gtpase Cycle                                                                                                                    1.00
## Signaling By Scf Kit                                                                                                                 1.00
## Transcriptional Regulation Of Granulopoiesis                                                                                         1.00
## Extra Nuclear Estrogen Signaling                                                                                                     1.00
## Interferon Alpha Beta Signaling                                                                                                      1.00
## Interferon Gamma Signaling                                                                                                           1.00
## Irs Mediated Signalling                                                                                                              1.00
## Mapk6 Mapk4 Signaling                                                                                                                1.00
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.00
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.00
## Prc2 Methylates Histones And Dna                                                                                                     1.00
## Rhog Gtpase Cycle                                                                                                                    1.00
## Signaling By Tgf Beta Receptor Complex                                                                                               1.00
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.00
## Antigen Processing Cross Presentation                                                                                                1.00
## Apoptotic Execution Phase                                                                                                            1.00
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.00
## Clec7a Dectin 1 Signaling                                                                                                            1.00
## Defensins                                                                                                                            1.00
## Diseases Of Programmed Cell Death                                                                                                    1.00
## G Protein Mediated Events                                                                                                            1.00
## Initial Triggering Of Complement                                                                                                     1.00
## Insulin Receptor Signalling Cascade                                                                                                  1.00
## Nuclear Envelope Breakdown                                                                                                           1.00
## Rhod Gtpase Cycle                                                                                                                    1.00
## Signaling By Egfr                                                                                                                    1.00
## Signaling By Ptk6                                                                                                                    1.00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.00
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               1.00
## Antimicrobial Peptides                                                                                                               1.00
## Arachidonic Acid Metabolism                                                                                                          1.00
## Asymmetric Localization Of Pcp Proteins                                                                                              1.00
## Class B 2 Secretin Family Receptors                                                                                                  1.00
## Collagen Degradation                                                                                                                 1.00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       1.00
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             1.00
## Ncam Signaling For Neurite Out Growth                                                                                                1.00
## Nrage Signals Death Through Jnk                                                                                                      1.00
## Nuclear Events Kinase And Transcription Factor Activation                                                                            1.00
## Programmed Cell Death                                                                                                                1.00
## Rac2 Gtpase Cycle                                                                                                                    1.00
## Rac3 Gtpase Cycle                                                                                                                    1.00
## Rhob Gtpase Cycle                                                                                                                    1.00
## Semaphorin Interactions                                                                                                              1.00
## Signaling By Fgfr In Disease                                                                                                         1.00
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    1.00
## Signaling By Pdgf                                                                                                                    1.00
## Sirt1 Negatively Regulates Rrna Expression                                                                                           1.00
## Unfolded Protein Response Upr                                                                                                        1.00
## 2 Ltr Circle Formation                                                                                                               1.00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.00
## Abacavir Metabolism                                                                                                                  1.00
## Abacavir Transmembrane Transport                                                                                                     1.00
## Abacavir Transport And Metabolism                                                                                                    1.00
## Abc Family Proteins Mediated Transport                                                                                               1.00
## Abc Transporter Disorders                                                                                                            1.00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.00
## Acetylcholine Binding And Downstream Events                                                                                          1.00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.00
## Activation Of Atr In Response To Replication Stress                                                                                  1.00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.00
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.00
## Activation Of Rac1                                                                                                                   1.00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.00
## Activation Of Ras In B Cells                                                                                                         1.00
## Activation Of Smo                                                                                                                    1.00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.00
## Activation Of The Phototransduction Cascade                                                                                          1.00
## Activation Of The Pre Replicative Complex                                                                                            1.00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.00
## Activation Of Trka Receptors                                                                                                         1.00
## Acyl Chain Remodeling Of Cl                                                                                                          1.00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.00
## Acyl Chain Remodelling Of Pc                                                                                                         1.00
## Acyl Chain Remodelling Of Pe                                                                                                         1.00
## Acyl Chain Remodelling Of Pg                                                                                                         1.00
## Acyl Chain Remodelling Of Pi                                                                                                         1.00
## Acyl Chain Remodelling Of Ps                                                                                                         1.00
## Adaptive Immune System                                                                                                               1.00
## Adenylate Cyclase Activating Pathway                                                                                                 1.00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.00
## Adherens Junctions Interactions                                                                                                      1.00
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              1.00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.00
## Adrenoceptors                                                                                                                        1.00
## Aflatoxin Activation And Detoxification                                                                                              1.00
## Aggrephagy                                                                                                                           1.00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.00
## Alpha Defensins                                                                                                                      1.00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.00
## Alpha Oxidation Of Phytanate                                                                                                         1.00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.00
## Amine Ligand Binding Receptors                                                                                                       1.00
## Amino Acid Conjugation                                                                                                               1.00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.00
## Amino Acids Regulate Mtorc1                                                                                                          1.00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.00
## Amyloid Fiber Formation                                                                                                              1.00
## Anchoring Fibril Formation                                                                                                           1.00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.00
## Androgen Biosynthesis                                                                                                                1.00
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   1.00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.00
## Apoptosis                                                                                                                            1.00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.00
## Apoptotic Factor Mediated Response                                                                                                   1.00
## Aquaporin Mediated Transport                                                                                                         1.00
## Arachidonate Production From Dag                                                                                                     1.00
## Arms Mediated Activation                                                                                                             1.00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.00
## Asparagine N Linked Glycosylation                                                                                                    1.00
## Aspartate And Asparagine Metabolism                                                                                                  1.00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.00
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.00
## Assembly Of The Hiv Virion                                                                                                           1.00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.00
## Assembly Of The Pre Replicative Complex                                                                                              1.00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.00
## Attachment And Entry                                                                                                                 1.00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.00
## Attenuation Phase                                                                                                                    1.00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.00
## Aurka Activation By Tpx2                                                                                                             1.00
## Autophagy                                                                                                                            1.00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.00
## Base Excision Repair                                                                                                                 1.00
## Base Excision Repair Ap Site Formation                                                                                               1.00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.00
## Beta Catenin Independent Wnt Signaling                                                                                               1.00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.00
## Bicarbonate Transporters                                                                                                             1.00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.00
## Biological Oxidations                                                                                                                1.00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.00
## Biosynthesis Of Maresins                                                                                                             1.00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.00
## Biotin Transport And Metabolism                                                                                                      1.00
## Blood Group Systems Biosynthesis                                                                                                     1.00
## Budding And Maturation Of Hiv Virion                                                                                                 1.00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.00
## Butyrophilin Btn Family Interactions                                                                                                 1.00
## C Type Lectin Receptors Clrs                                                                                                         1.00
## Ca2 Activated K Channels                                                                                                             1.00
## Calcineurin Activates Nfat                                                                                                           1.00
## Calcitonin Like Ligand Receptors                                                                                                     1.00
## Calnexin Calreticulin Cycle                                                                                                          1.00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.00
## Cardiac Conduction                                                                                                                   1.00
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  1.00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.00
## Carnitine Metabolism                                                                                                                 1.00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.00
## Cation Coupled Chloride Cotransporters                                                                                               1.00
## Cd209 Dc Sign Signaling                                                                                                              1.00
## Cd22 Mediated Bcr Regulation                                                                                                         1.00
## Cdc42 Gtpase Cycle                                                                                                                   1.00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.00
## Cell Cell Communication                                                                                                              1.00
## Cell Cell Junction Organization                                                                                                      1.00
## Cell Cycle                                                                                                                           1.00
## Cell Cycle Checkpoints                                                                                                               1.00
## Cell Cycle Mitotic                                                                                                                   1.00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.00
## Cell Extracellular Matrix Interactions                                                                                               1.00
## Cell Junction Organization                                                                                                           1.00
## Cell Surface Interactions At The Vascular Wall                                                                                       1.00
## Cellular Hexose Transport                                                                                                            1.00
## Cellular Response To Chemical Stress                                                                                                 1.00
## Cellular Response To Heat Stress                                                                                                     1.00
## Cellular Response To Hypoxia                                                                                                         1.00
## Cellular Response To Starvation                                                                                                      1.00
## Cellular Responses To External Stimuli                                                                                               1.00
## Cellular Senescence                                                                                                                  1.00
## Cgmp Effects                                                                                                                         1.00
## Chaperone Mediated Autophagy                                                                                                         1.00
## Chl1 Interactions                                                                                                                    1.00
## Cholesterol Biosynthesis                                                                                                             1.00
## Choline Catabolism                                                                                                                   1.00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.00
## Chromatin Modifying Enzymes                                                                                                          1.00
## Chromosome Maintenance                                                                                                               1.00
## Chylomicron Clearance                                                                                                                1.00
## Cilium Assembly                                                                                                                      1.00
## Citric Acid Cycle Tca Cycle                                                                                                          1.00
## Class A 1 Rhodopsin Like Receptors                                                                                                   1.00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.00
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.00
## Clathrin Mediated Endocytosis                                                                                                        1.00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.00
## Coenzyme A Biosynthesis                                                                                                              1.00
## Cohesin Loading Onto Chromatin                                                                                                       1.00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.00
## Collagen Chain Trimerization                                                                                                         1.00
## Collagen Formation                                                                                                                   1.00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.00
## Complex I Biogenesis                                                                                                                 1.00
## Condensation Of Prophase Chromosomes                                                                                                 1.00
## Conjugation Of Benzoate With Glycine                                                                                                 1.00
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    1.00
## Constitutive Signaling By Egfrviii                                                                                                   1.00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     1.00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.00
## Copi Mediated Anterograde Transport                                                                                                  1.00
## Creatine Metabolism                                                                                                                  1.00
## Creation Of C4 And C2 Activators                                                                                                     1.00
## Creb3 Factors Activate Genes                                                                                                         1.00
## Cristae Formation                                                                                                                    1.00
## Crmps In Sema3a Signaling                                                                                                            1.00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.00
## Crosslinking Of Collagen Fibrils                                                                                                     1.00
## Cs Ds Degradation                                                                                                                    1.00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.00
## Cyclin D Associated Events In G1                                                                                                     1.00
## Cyp2e1 Reactions                                                                                                                     1.00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.00
## Cytokine Signaling In Immune System                                                                                                  1.00
## Cytoprotection By Hmox1                                                                                                              1.00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.00
## Cytosolic Trna Aminoacylation                                                                                                        1.00
## Darpp 32 Events                                                                                                                      1.00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.00
## Deadenylation Dependent Mrna Decay                                                                                                   1.00
## Deadenylation Of Mrna                                                                                                                1.00
## Dectin 2 Family                                                                                                                      1.00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        1.00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.00
## Defective Chst3 Causes Sedcjd                                                                                                        1.00
## Defective Chst6 Causes Mcdc1                                                                                                         1.00
## Defective Chsy1 Causes Tpbs                                                                                                          1.00
## Defective Csf2rb Causes Smdp5                                                                                                        1.00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.00
## Defective F9 Activation                                                                                                              1.00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           1.00
## Defective Lfng Causes Scdo3                                                                                                          1.00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.00
## Defects In Biotin Btn Metabolism                                                                                                     1.00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.00
## Degradation Of Axin                                                                                                                  1.00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.00
## Degradation Of Cysteine And Homocysteine                                                                                             1.00
## Degradation Of Dvl                                                                                                                   1.00
## Degradation Of Gli1 By The Proteasome                                                                                                1.00
## Degradation Of The Extracellular Matrix                                                                                              1.00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.00
## Detoxification Of Reactive Oxygen Species                                                                                            1.00
## Deubiquitination                                                                                                                     1.00
## Developmental Biology                                                                                                                1.00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.00
## Digestion                                                                                                                            1.00
## Digestion And Absorption                                                                                                             1.00
## Digestion Of Dietary Carbohydrate                                                                                                    1.00
## Digestion Of Dietary Lipid                                                                                                           1.00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.00
## Diseases Associated With Surfactant Metabolism                                                                                       1.00
## Diseases Of Base Excision Repair                                                                                                     1.00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.00
## Diseases Of Dna Repair                                                                                                               1.00
## Diseases Of Glycosylation                                                                                                            1.00
## Diseases Of Metabolism                                                                                                               1.00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.00
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     1.00
## Disinhibition Of Snare Formation                                                                                                     1.00
## Disorders Of Transmembrane Transporters                                                                                              1.00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.00
## Dna Damage Bypass                                                                                                                    1.00
## Dna Damage Recognition In Gg Ner                                                                                                     1.00
## Dna Damage Reversal                                                                                                                  1.00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.00
## Dna Double Strand Break Repair                                                                                                       1.00
## Dna Double Strand Break Response                                                                                                     1.00
## Dna Repair                                                                                                                           1.00
## Dna Replication                                                                                                                      1.00
## Dna Replication Initiation                                                                                                           1.00
## Dna Replication Pre Initiation                                                                                                       1.00
## Dna Strand Elongation                                                                                                                1.00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.00
## Dopamine Receptors                                                                                                                   1.00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.00
## Downregulation Of Erbb2 Signaling                                                                                                    1.00
## Downregulation Of Erbb4 Signaling                                                                                                    1.00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.00
## Dual Incision In Gg Ner                                                                                                              1.00
## Dual Incision In Tc Ner                                                                                                              1.00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.00
## Ecm Proteoglycans                                                                                                                    1.00
## Effects Of Pip2 Hydrolysis                                                                                                           1.00
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.00
## Egfr Transactivation By Gastrin                                                                                                      1.00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.00
## Eicosanoids                                                                                                                          1.00
## Elastic Fibre Formation                                                                                                              1.00
## Electric Transmission Across Gap Junctions                                                                                           1.00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.00
## Endogenous Sterols                                                                                                                   1.00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.00
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               1.00
## Eph Ephrin Signaling                                                                                                                 1.00
## Epha Mediated Growth Cone Collapse                                                                                                   1.00
## Ephrin Signaling                                                                                                                     1.00
## Epigenetic Regulation Of Gene Expression                                                                                             1.00
## Er Quality Control Compartment Erqc                                                                                                  1.00
## Er To Golgi Anterograde Transport                                                                                                    1.00
## Erbb2 Activates Ptk6 Signaling                                                                                                       1.00
## Erbb2 Regulates Cell Motility                                                                                                        1.00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.00
## Erk Mapk Targets                                                                                                                     1.00
## Erks Are Inactivated                                                                                                                 1.00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.00
## Erythropoietin Activates Ras                                                                                                         1.00
## Erythropoietin Activates Stat5                                                                                                       1.00
## Esr Mediated Signaling                                                                                                               1.00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.00
## Estrogen Biosynthesis                                                                                                                1.00
## Estrogen Dependent Gene Expression                                                                                                   1.00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.00
## Ethanol Oxidation                                                                                                                    1.00
## Eukaryotic Translation Elongation                                                                                                    1.00
## Eukaryotic Translation Initiation                                                                                                    1.00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.00
## Extension Of Telomeres                                                                                                               1.00
## Extracellular Matrix Organization                                                                                                    1.00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.00
## Fanconi Anemia Pathway                                                                                                               1.00
## Fatty Acid Metabolism                                                                                                                1.00
## Fatty Acids                                                                                                                          1.00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.00
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.00
## Fceri Mediated Mapk Activation                                                                                                       1.00
## Fceri Mediated Nf Kb Activation                                                                                                      1.00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.00
## Fcgr Activation                                                                                                                      1.00
## Fcgr3a Mediated Il10 Synthesis                                                                                                       1.00
## Fertilization                                                                                                                        1.00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.00
## Fgfr2 Alternative Splicing                                                                                                           1.00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.00
## Flt3 Signaling                                                                                                                       1.00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.00
## Flt3 Signaling In Disease                                                                                                            1.00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.00
## Folding Of Actin By Cct Tric                                                                                                         1.00
## Formation Of Apoptosome                                                                                                              1.00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.00
## Formation Of Incision Complex In Gg Ner                                                                                              1.00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.00
## Formation Of The Cornified Envelope                                                                                                  1.00
## Formation Of The Early Elongation Complex                                                                                            1.00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.00
## Free Fatty Acid Receptors                                                                                                            1.00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.00
## Fructose Catabolism                                                                                                                  1.00
## Fructose Metabolism                                                                                                                  1.00
## G Alpha 12 13 Signalling Events                                                                                                      1.00
## G Alpha I Signalling Events                                                                                                          1.00
## G Alpha Q Signalling Events                                                                                                          1.00
## G Alpha S Signalling Events                                                                                                          1.00
## G Alpha Z Signalling Events                                                                                                          1.00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.00
## G Protein Activation                                                                                                                 1.00
## G1 S Dna Damage Checkpoints                                                                                                          1.00
## G2 M Checkpoints                                                                                                                     1.00
## G2 M Dna Damage Checkpoint                                                                                                           1.00
## G2 Phase                                                                                                                             1.00
## Gab1 Signalosome                                                                                                                     1.00
## Gaba B Receptor Activation                                                                                                           1.00
## Gaba Receptor Activation                                                                                                             1.00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.00
## Gap Junction Assembly                                                                                                                1.00
## Gap Junction Degradation                                                                                                             1.00
## Gap Junction Trafficking And Regulation                                                                                              1.00
## Gdp Fucose Biosynthesis                                                                                                              1.00
## Gene Silencing By Rna                                                                                                                1.00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.00
## Glucagon Type Ligand Receptors                                                                                                       1.00
## Glucocorticoid Biosynthesis                                                                                                          1.00
## Gluconeogenesis                                                                                                                      1.00
## Glucose Metabolism                                                                                                                   1.00
## Glucuronidation                                                                                                                      1.00
## Glutamate And Glutamine Metabolism                                                                                                   1.00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.00
## Glutathione Conjugation                                                                                                              1.00
## Glutathione Synthesis And Recycling                                                                                                  1.00
## Glycerophospholipid Biosynthesis                                                                                                     1.00
## Glycerophospholipid Catabolism                                                                                                       1.00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.00
## Glycogen Metabolism                                                                                                                  1.00
## Glycogen Storage Diseases                                                                                                            1.00
## Glycogen Synthesis                                                                                                                   1.00
## Glycolysis                                                                                                                           1.00
## Glycosaminoglycan Metabolism                                                                                                         1.00
## Glycosphingolipid Metabolism                                                                                                         1.00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.00
## Golgi To Er Retrograde Transport                                                                                                     1.00
## Gp1b Ix V Activation Signalling                                                                                                      1.00
## Gpcr Ligand Binding                                                                                                                  1.00
## Grb2 Events In Erbb2 Signaling                                                                                                       1.00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.00
## Hats Acetylate Histones                                                                                                              1.00
## Hcmv Early Events                                                                                                                    1.00
## Hcmv Infection                                                                                                                       1.00
## Hcmv Late Events                                                                                                                     1.00
## Hdacs Deacetylate Histones                                                                                                           1.00
## Hdms Demethylate Histones                                                                                                            1.00
## Hdr Through Homologous Recombination Hrr                                                                                             1.00
## Hdr Through Mmej Alt Nhej                                                                                                            1.00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.00
## Hedgehog Ligand Biogenesis                                                                                                           1.00
## Hedgehog Off State                                                                                                                   1.00
## Hedgehog On State                                                                                                                    1.00
## Heme Biosynthesis                                                                                                                    1.00
## Heme Degradation                                                                                                                     1.00
## Hemostasis                                                                                                                           1.00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.00
## Histidine Catabolism                                                                                                                 1.00
## Hiv Elongation Arrest And Recovery                                                                                                   1.00
## Hiv Infection                                                                                                                        1.00
## Hiv Life Cycle                                                                                                                       1.00
## Hiv Transcription Elongation                                                                                                         1.00
## Hiv Transcription Initiation                                                                                                         1.00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.00
## Homology Directed Repair                                                                                                             1.00
## Hormone Ligand Binding Receptors                                                                                                     1.00
## Host Interactions Of Hiv Factors                                                                                                     1.00
## Hs Gag Biosynthesis                                                                                                                  1.00
## Hs Gag Degradation                                                                                                                   1.00
## Hsf1 Activation                                                                                                                      1.00
## Hsf1 Dependent Transactivation                                                                                                       1.00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.00
## Hyaluronan Biosynthesis And Export                                                                                                   1.00
## Hyaluronan Metabolism                                                                                                                1.00
## Hyaluronan Uptake And Degradation                                                                                                    1.00
## Hydrolysis Of Lpc                                                                                                                    1.00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.00
## Infection With Mycobacterium Tuberculosis                                                                                            1.00
## Infectious Disease                                                                                                                   1.00
## Influenza Infection                                                                                                                  1.00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.00
## Innate Immune System                                                                                                                 1.00
## Inositol Phosphate Metabolism                                                                                                        1.00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.00
## Insulin Processing                                                                                                                   1.00
## Insulin Receptor Recycling                                                                                                           1.00
## Integration Of Energy Metabolism                                                                                                     1.00
## Integration Of Provirus                                                                                                              1.00
## Integrin Cell Surface Interactions                                                                                                   1.00
## Integrin Signaling                                                                                                                   1.00
## Interaction Between L1 And Ankyrins                                                                                                  1.00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.00
## Interferon Signaling                                                                                                                 1.00
## Interleukin 36 Pathway                                                                                                               1.00
## Intestinal Absorption                                                                                                                1.00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.00
## Intra Golgi Traffic                                                                                                                  1.00
## Intracellular Signaling By Second Messengers                                                                                         1.00
## Intraflagellar Transport                                                                                                             1.00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.00
## Inwardly Rectifying K Channels                                                                                                       1.00
## Ion Channel Transport                                                                                                                1.00
## Ion Homeostasis                                                                                                                      1.00
## Ion Transport By P Type Atpases                                                                                                      1.00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.00
## Ire1alpha Activates Chaperones                                                                                                       1.00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.00
## Irf3 Mediated Induction Of Type I Ifn                                                                                                1.00
## Iron Uptake And Transport                                                                                                            1.00
## Irs Activation                                                                                                                       1.00
## Josephin Domain Dubs                                                                                                                 1.00
## Keratan Sulfate Biosynthesis                                                                                                         1.00
## Keratan Sulfate Degradation                                                                                                          1.00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.00
## Keratinization                                                                                                                       1.00
## Ketone Body Metabolism                                                                                                               1.00
## Kinesins                                                                                                                             1.00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.00
## L1cam Interactions                                                                                                                   1.00
## Lagging Strand Synthesis                                                                                                             1.00
## Laminin Interactions                                                                                                                 1.00
## Late Endosomal Microautophagy                                                                                                        1.00
## Ldl Clearance                                                                                                                        1.00
## Lectin Pathway Of Complement Activation                                                                                              1.00
## Leishmania Infection                                                                                                                 1.00
## Leukotriene Receptors                                                                                                                1.00
## Lgi Adam Interactions                                                                                                                1.00
## Ligand Receptor Interactions                                                                                                         1.00
## Linoleic Acid La Metabolism                                                                                                          1.00
## Lipid Particle Organization                                                                                                          1.00
## Lipophagy                                                                                                                            1.00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.00
## Long Term Potentiation                                                                                                               1.00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.00
## Lysine Catabolism                                                                                                                    1.00
## Lysosome Vesicle Biogenesis                                                                                                          1.00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.00
## M Phase                                                                                                                              1.00
## Map2k And Mapk Activation                                                                                                            1.00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.00
## Mapk Family Signaling Cascades                                                                                                       1.00
## Mapk1 Erk2 Activation                                                                                                                1.00
## Maturation Of Nucleoprotein                                                                                                          1.00
## Maturation Of Protein 3a                                                                                                             1.00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.00
## Meiosis                                                                                                                              1.00
## Meiotic Recombination                                                                                                                1.00
## Meiotic Synapsis                                                                                                                     1.00
## Melanin Biosynthesis                                                                                                                 1.00
## Membrane Trafficking                                                                                                                 1.00
## Met Activates Pi3k Akt Signaling                                                                                                     1.00
## Met Activates Ptk2 Signaling                                                                                                         1.00
## Met Activates Ptpn11                                                                                                                 1.00
## Met Activates Rap1 And Rac1                                                                                                          1.00
## Met Activates Ras Signaling                                                                                                          1.00
## Met Interacts With Tns Proteins                                                                                                      1.00
## Met Promotes Cell Motility                                                                                                           1.00
## Met Receptor Activation                                                                                                              1.00
## Met Receptor Recycling                                                                                                               1.00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.00
## Metabolism Of Amine Derived Hormones                                                                                                 1.00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.00
## Metabolism Of Carbohydrates                                                                                                          1.00
## Metabolism Of Cofactors                                                                                                              1.00
## Metabolism Of Folate And Pterines                                                                                                    1.00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.00
## Metabolism Of Lipids                                                                                                                 1.00
## Metabolism Of Nucleotides                                                                                                            1.00
## Metabolism Of Polyamines                                                                                                             1.00
## Metabolism Of Porphyrins                                                                                                             1.00
## Metabolism Of Rna                                                                                                                    1.00
## Metabolism Of Steroid Hormones                                                                                                       1.00
## Metabolism Of Steroids                                                                                                               1.00
## Metabolism Of Vitamins And Cofactors                                                                                                 1.00
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.00
## Metal Ion Slc Transporters                                                                                                           1.00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.00
## Metallothioneins Bind Metals                                                                                                         1.00
## Methionine Salvage Pathway                                                                                                           1.00
## Methylation                                                                                                                          1.00
## Mhc Class Ii Antigen Presentation                                                                                                    1.00
## Microrna Mirna Biogenesis                                                                                                            1.00
## Mineralocorticoid Biosynthesis                                                                                                       1.00
## Miro Gtpase Cycle                                                                                                                    1.00
## Miscellaneous Substrates                                                                                                             1.00
## Miscellaneous Transport And Binding Events                                                                                           1.00
## Mismatch Repair                                                                                                                      1.00
## Mitochondrial Biogenesis                                                                                                             1.00
## Mitochondrial Calcium Ion Transport                                                                                                  1.00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.00
## Mitochondrial Protein Import                                                                                                         1.00
## Mitochondrial Translation                                                                                                            1.00
## Mitochondrial Trna Aminoacylation                                                                                                    1.00
## Mitochondrial Uncoupling                                                                                                             1.00
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.00
## Mitotic G2 G2 M Phases                                                                                                               1.00
## Mitotic Metaphase And Anaphase                                                                                                       1.00
## Mitotic Prometaphase                                                                                                                 1.00
## Mitotic Prophase                                                                                                                     1.00
## Mitotic Spindle Checkpoint                                                                                                           1.00
## Mitotic Telophase Cytokinesis                                                                                                        1.00
## Modulation By Mtb Of Host Immune System                                                                                              1.00
## Molecules Associated With Elastic Fibres                                                                                             1.00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.00
## Mrna Capping                                                                                                                         1.00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.00
## Mrna Editing                                                                                                                         1.00
## Mrna Editing C To U Conversion                                                                                                       1.00
## Mrna Splicing                                                                                                                        1.00
## Mrna Splicing Minor Pathway                                                                                                          1.00
## Mtor Signalling                                                                                                                      1.00
## Mtorc1 Mediated Signalling                                                                                                           1.00
## Mucopolysaccharidoses                                                                                                                1.00
## Multifunctional Anion Exchangers                                                                                                     1.00
## Muscarinic Acetylcholine Receptors                                                                                                   1.00
## Muscle Contraction                                                                                                                   1.00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.00
## N Glycan Antennae Elongation                                                                                                         1.00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.00
## Nade Modulates Death Signalling                                                                                                      1.00
## Ncam1 Interactions                                                                                                                   1.00
## Nectin Necl Trans Heterodimerization                                                                                                 1.00
## Neddylation                                                                                                                          1.00
## Nef And Signal Transduction                                                                                                          1.00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.00
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.00
## Negative Regulation Of Flt3                                                                                                          1.00
## Negative Regulation Of Mapk Pathway                                                                                                  1.00
## Negative Regulation Of Met Activity                                                                                                  1.00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.00
## Negative Regulation Of Notch4 Signaling                                                                                              1.00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.00
## Negative Regulation Of The Pi3k Akt Network                                                                                          1.00
## Nephrin Family Interactions                                                                                                          1.00
## Nervous System Development                                                                                                           1.00
## Netrin Mediated Repulsion Signals                                                                                                    1.00
## Neurexins And Neuroligins                                                                                                            1.00
## Neurofascin Interactions                                                                                                             1.00
## Neuronal System                                                                                                                      1.00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.00
## Neurotransmitter Clearance                                                                                                           1.00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.00
## Neurotransmitter Release Cycle                                                                                                       1.00
## Neutrophil Degranulation                                                                                                             1.00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.00
## Ngf Independant Trka Activation                                                                                                      1.00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.00
## Non Integrin Membrane Ecm Interactions                                                                                               1.00
## Noncanonical Activation Of Notch3                                                                                                    1.00
## Nonhomologous End Joining Nhej                                                                                                       1.00
## Nonsense Mediated Decay Nmd                                                                                                          1.00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.00
## Notch Hlh Transcription Pathway                                                                                                      1.00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.00
## Nrcam Interactions                                                                                                                   1.00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.00
## Ntrk2 Activates Rac1                                                                                                                 1.00
## Nuclear Envelope Ne Reassembly                                                                                                       1.00
## Nuclear Import Of Rev Protein                                                                                                        1.00
## Nuclear Receptor Transcription Pathway                                                                                               1.00
## Nuclear Signaling By Erbb4                                                                                                           1.00
## Nucleobase Biosynthesis                                                                                                              1.00
## Nucleobase Catabolism                                                                                                                1.00
## Nucleotide Excision Repair                                                                                                           1.00
## Nucleotide Like Purinergic Receptors                                                                                                 1.00
## Nucleotide Salvage                                                                                                                   1.00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.00
## O Linked Glycosylation                                                                                                               1.00
## O Linked Glycosylation Of Mucins                                                                                                     1.00
## Oas Antiviral Response                                                                                                               1.00
## Olfactory Signaling Pathway                                                                                                          1.00
## Oncogene Induced Senescence                                                                                                          1.00
## Oncogenic Mapk Signaling                                                                                                             1.00
## Opioid Signalling                                                                                                                    1.00
## Opsins                                                                                                                               1.00
## Orc1 Removal From Chromatin                                                                                                          1.00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.00
## Organelle Biogenesis And Maintenance                                                                                                 1.00
## Organic Anion Transport                                                                                                              1.00
## Organic Anion Transporters                                                                                                           1.00
## Organic Cation Anion Zwitterion Transport                                                                                            1.00
## Organic Cation Transport                                                                                                             1.00
## Other Interleukin Signaling                                                                                                          1.00
## Oxidative Stress Induced Senescence                                                                                                  1.00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.00
## P2y Receptors                                                                                                                        1.00
## P38mapk Events                                                                                                                       1.00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.00
## P75ntr Regulates Axonogenesis                                                                                                        1.00
## Parasite Infection                                                                                                                   1.00
## Passive Transport By Aquaporins                                                                                                      1.00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.00
## Pcp Ce Pathway                                                                                                                       1.00
## Pecam1 Interactions                                                                                                                  1.00
## Pentose Phosphate Pathway                                                                                                            1.00
## Peptide Hormone Biosynthesis                                                                                                         1.00
## Peptide Hormone Metabolism                                                                                                           1.00
## Peroxisomal Lipid Metabolism                                                                                                         1.00
## Peroxisomal Protein Import                                                                                                           1.00
## Pexophagy                                                                                                                            1.00
## Phase 0 Rapid Depolarisation                                                                                                         1.00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.00
## Phase 2 Plateau Phase                                                                                                                1.00
## Phase 3 Rapid Repolarisation                                                                                                         1.00
## Phase I Functionalization Of Compounds                                                                                               1.00
## Phase Ii Conjugation Of Compounds                                                                                                    1.00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.00
## Phenylalanine Metabolism                                                                                                             1.00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.00
## Phospholipid Metabolism                                                                                                              1.00
## Physiological Factors                                                                                                                1.00
## Pi 3k Cascade Fgfr1                                                                                                                  1.00
## Pi 3k Cascade Fgfr2                                                                                                                  1.00
## Pi 3k Cascade Fgfr3                                                                                                                  1.00
## Pi 3k Cascade Fgfr4                                                                                                                  1.00
## Pi Metabolism                                                                                                                        1.00
## Pi3k Akt Activation                                                                                                                  1.00
## Pi3k Akt Signaling In Cancer                                                                                                         1.00
## Pi3k Events In Erbb2 Signaling                                                                                                       1.00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.00
## Pka Activation In Glucagon Signalling                                                                                                1.00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.00
## Pkmts Methylate Histone Lysines                                                                                                      1.00
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.00
## Platelet Activation Signaling And Aggregation                                                                                        1.00
## Platelet Adhesion To Exposed Collagen                                                                                                1.00
## Platelet Aggregation Plug Formation                                                                                                  1.00
## Platelet Calcium Homeostasis                                                                                                         1.00
## Platelet Homeostasis                                                                                                                 1.00
## Platelet Sensitization By Ldl                                                                                                        1.00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.00
## Polo Like Kinase Mediated Events                                                                                                     1.00
## Polymerase Switching                                                                                                                 1.00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.00
## Potassium Channels                                                                                                                   1.00
## Potential Therapeutics For Sars                                                                                                      1.00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.00
## Pre Notch Expression And Processing                                                                                                  1.00
## Pre Notch Processing In Golgi                                                                                                        1.00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.00
## Pregnenolone Biosynthesis                                                                                                            1.00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.00
## Presynaptic Function Of Kainate Receptors                                                                                            1.00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.00
## Processing And Activation Of Sumo                                                                                                    1.00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.00
## Processing Of Dna Double Strand Break Ends                                                                                           1.00
## Processing Of Intronless Pre Mrnas                                                                                                   1.00
## Processing Of Smdt1                                                                                                                  1.00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.00
## Processive Synthesis On The Lagging Strand                                                                                           1.00
## Prolactin Receptor Signaling                                                                                                         1.00
## Prolonged Erk Activation Events                                                                                                      1.00
## Propionyl Coa Catabolism                                                                                                             1.00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.00
## Prostanoid Ligand Receptors                                                                                                          1.00
## Protein Folding                                                                                                                      1.00
## Protein Localization                                                                                                                 1.00
## Protein Methylation                                                                                                                  1.00
## Protein Protein Interactions At Synapses                                                                                             1.00
## Protein Repair                                                                                                                       1.00
## Protein Ubiquitination                                                                                                               1.00
## Proton Coupled Monocarboxylate Transport                                                                                             1.00
## Pten Regulation                                                                                                                      1.00
## Ptk6 Expression                                                                                                                      1.00
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.00
## Ptk6 Regulates Cell Cycle                                                                                                            1.00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.00
## Purine Catabolism                                                                                                                    1.00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.00
## Purine Salvage                                                                                                                       1.00
## Pyrimidine Catabolism                                                                                                                1.00
## Pyrimidine Salvage                                                                                                                   1.00
## Pyruvate Metabolism                                                                                                                  1.00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.00
## Ra Biosynthesis Pathway                                                                                                              1.00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.00
## Rab Geranylgeranylation                                                                                                              1.00
## Rab Regulation Of Trafficking                                                                                                        1.00
## Rac1 Gtpase Cycle                                                                                                                    1.00
## Raf Activation                                                                                                                       1.00
## Rap1 Signalling                                                                                                                      1.00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.00
## Ras Processing                                                                                                                       1.00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.00
## Recycling Of Bile Acids And Salts                                                                                                    1.00
## Recycling Of Eif2 Gdp                                                                                                                1.00
## Recycling Pathway Of L1                                                                                                              1.00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.00
## Reelin Signalling Pathway                                                                                                            1.00
## Regulated Proteolysis Of P75ntr                                                                                                      1.00
## Regulation Of Bach1 Activity                                                                                                         1.00
## Regulation Of Beta Cell Development                                                                                                  1.00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.00
## Regulation Of Expression Of Slits And Robos                                                                                          1.00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.00
## Regulation Of Ifna Signaling                                                                                                         1.00
## Regulation Of Ifng Signaling                                                                                                         1.00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.00
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.00
## Regulation Of Insulin Secretion                                                                                                      1.00
## Regulation Of Kit Signaling                                                                                                          1.00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.00
## Regulation Of Pten Gene Transcription                                                                                                1.00
## Regulation Of Pten Localization                                                                                                      1.00
## Regulation Of Pten Mrna Translation                                                                                                  1.00
## Regulation Of Pten Stability And Activity                                                                                            1.00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.00
## Regulation Of Ras By Gaps                                                                                                            1.00
## Regulation Of Runx1 Expression And Activity                                                                                          1.00
## Regulation Of Runx2 Expression And Activity                                                                                          1.00
## Regulation Of Runx3 Expression And Activity                                                                                          1.00
## Regulation Of Signaling By Cbl                                                                                                       1.00
## Regulation Of Signaling By Nodal                                                                                                     1.00
## Regulation Of Tp53 Activity                                                                                                          1.00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.00
## Relaxin Receptors                                                                                                                    1.00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.00
## Release Of Hh Np From The Secreting Cell                                                                                             1.00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.00
## Reproduction                                                                                                                         1.00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.00
## Resolution Of D Loop Structures                                                                                                      1.00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.00
## Respiratory Electron Transport                                                                                                       1.00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.00
## Response Of Mtb To Phagocytosis                                                                                                      1.00
## Response To Elevated Platelet Cytosolic Ca2                                                                                          1.00
## Response To Metal Ions                                                                                                               1.00
## Ret Signaling                                                                                                                        1.00
## Retinoid Cycle Disease Events                                                                                                        1.00
## Retrograde Neurotrophin Signalling                                                                                                   1.00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.00
## Rho Gtpase Cycle                                                                                                                     1.00
## Rho Gtpase Effectors                                                                                                                 1.00
## Rho Gtpases Activate Cit                                                                                                             1.00
## Rho Gtpases Activate Formins                                                                                                         1.00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.00
## Rho Gtpases Activate Pkns                                                                                                            1.00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.00
## Rho Gtpases Activate Rocks                                                                                                           1.00
## Rhoa Gtpase Cycle                                                                                                                    1.00
## Rhobtb Gtpase Cycle                                                                                                                  1.00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.00
## Rhobtb3 Atpase Cycle                                                                                                                 1.00
## Rhoc Gtpase Cycle                                                                                                                    1.00
## Rhot1 Gtpase Cycle                                                                                                                   1.00
## Rmts Methylate Histone Arginines                                                                                                     1.00
## Rna Polymerase I Promoter Escape                                                                                                     1.00
## Rna Polymerase I Transcription                                                                                                       1.00
## Rna Polymerase I Transcription Initiation                                                                                            1.00
## Rna Polymerase I Transcription Termination                                                                                           1.00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.00
## Rna Polymerase Ii Transcription Termination                                                                                          1.00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.00
## Rna Polymerase Iii Transcription                                                                                                     1.00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.00
## Rna Polymerase Iii Transcription Termination                                                                                         1.00
## Robo Receptors Bind Akap5                                                                                                            1.00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.00
## Role Of Phospholipids In Phagocytosis                                                                                                1.00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.00
## Rora Activates Gene Expression                                                                                                       1.00
## Rrna Modification In The Mitochondrion                                                                                               1.00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.00
## Rrna Processing                                                                                                                      1.00
## Rrna Processing In The Mitochondrion                                                                                                 1.00
## Rsk Activation                                                                                                                       1.00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.00
## Runx2 Regulates Bone Development                                                                                                     1.00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.00
## Runx3 Regulates Notch Signaling                                                                                                      1.00
## Runx3 Regulates P14 Arf                                                                                                              1.00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.00
## S Phase                                                                                                                              1.00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.00
## Sars Cov 1 Infection                                                                                                                 1.00
## Sars Cov 2 Infection                                                                                                                 1.00
## Sars Cov Infections                                                                                                                  1.00
## Scavenging By Class F Receptors                                                                                                      1.00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.00
## Selective Autophagy                                                                                                                  1.00
## Selenoamino Acid Metabolism                                                                                                          1.00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.00
## Sema4d In Semaphorin Signaling                                                                                                       1.00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.00
## Senescence Associated Secretory Phenotype Sasp                                                                                       1.00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.00
## Sensory Perception                                                                                                                   1.00
## Sensory Processing Of Sound                                                                                                          1.00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.00
## Separation Of Sister Chromatids                                                                                                      1.00
## Serine Biosynthesis                                                                                                                  1.00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.00
## Serotonin Receptors                                                                                                                  1.00
## Shc Mediated Cascade Fgfr1                                                                                                           1.00
## Shc Mediated Cascade Fgfr3                                                                                                           1.00
## Shc Mediated Cascade Fgfr4                                                                                                           1.00
## Shc Related Events Triggered By Igf1r                                                                                                1.00
## Shc1 Events In Egfr Signaling                                                                                                        1.00
## Shc1 Events In Erbb2 Signaling                                                                                                       1.00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.00
## Sialic Acid Metabolism                                                                                                               1.00
## Signal Amplification                                                                                                                 1.00
## Signal Attenuation                                                                                                                   1.00
## Signal Regulatory Protein Family Interactions                                                                                        1.00
## Signal Transduction By L1                                                                                                            1.00
## Signaling By Activin                                                                                                                 1.00
## Signaling By Bmp                                                                                                                     1.00
## Signaling By Braf And Raf Fusions                                                                                                    1.00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.00
## Signaling By Egfr In Cancer                                                                                                          1.00
## Signaling By Erbb2                                                                                                                   1.00
## Signaling By Erbb2 Ecd Mutants                                                                                                       1.00
## Signaling By Erbb2 In Cancer                                                                                                         1.00
## Signaling By Erbb4                                                                                                                   1.00
## Signaling By Erythropoietin                                                                                                          1.00
## Signaling By Fgfr                                                                                                                    1.00
## Signaling By Fgfr1                                                                                                                   1.00
## Signaling By Fgfr2                                                                                                                   1.00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.00
## Signaling By Fgfr2 In Disease                                                                                                        1.00
## Signaling By Fgfr3                                                                                                                   1.00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.00
## Signaling By Fgfr4                                                                                                                   1.00
## Signaling By Fgfr4 In Disease                                                                                                        1.00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.00
## Signaling By Gpcr                                                                                                                    1.00
## Signaling By Hedgehog                                                                                                                1.00
## Signaling By Hippo                                                                                                                   1.00
## Signaling By Insulin Receptor                                                                                                        1.00
## Signaling By Lrp5 Mutants                                                                                                            1.00
## Signaling By Mapk Mutants                                                                                                            1.00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.00
## Signaling By Met                                                                                                                     1.00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.00
## Signaling By Mras Complex Mutants                                                                                                    1.00
## Signaling By Mst1                                                                                                                    1.00
## Signaling By Nodal                                                                                                                   1.00
## Signaling By Notch                                                                                                                   1.00
## Signaling By Notch1                                                                                                                  1.00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.00
## Signaling By Notch3                                                                                                                  1.00
## Signaling By Notch4                                                                                                                  1.00
## Signaling By Ntrk2 Trkb                                                                                                              1.00
## Signaling By Ntrk3 Trkc                                                                                                              1.00
## Signaling By Ntrks                                                                                                                   1.00
## Signaling By Nuclear Receptors                                                                                                       1.00
## Signaling By Receptor Tyrosine Kinases                                                                                               1.00
## Signaling By Retinoic Acid                                                                                                           1.00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.00
## Signaling By Rnf43 Mutants                                                                                                           1.00
## Signaling By Robo Receptors                                                                                                          1.00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.00
## Signaling By Tgfb Family Members                                                                                                     1.00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.00
## Signaling By Vegf                                                                                                                    1.00
## Signaling By Wnt                                                                                                                     1.00
## Signaling By Wnt In Cancer                                                                                                           1.00
## Signalling To Erks                                                                                                                   1.00
## Signalling To P38 Via Rit And Rin                                                                                                    1.00
## Signalling To Ras                                                                                                                    1.00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.00
## Slc Mediated Transmembrane Transport                                                                                                 1.00
## Slc Transporter Disorders                                                                                                            1.00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.00
## Smooth Muscle Contraction                                                                                                            1.00
## Snrnp Assembly                                                                                                                       1.00
## Sodium Calcium Exchangers                                                                                                            1.00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.00
## Sodium Proton Exchangers                                                                                                             1.00
## Sos Mediated Signalling                                                                                                              1.00
## Sperm Motility And Taxes                                                                                                             1.00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.00
## Sphingolipid Metabolism                                                                                                              1.00
## Spry Regulation Of Fgf Signaling                                                                                                     1.00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.00
## Stabilization Of P53                                                                                                                 1.00
## Stat5 Activation                                                                                                                     1.00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.00
## Stimuli Sensing Channels                                                                                                             1.00
## Sting Mediated Induction Of Host Immune Responses                                                                                    1.00
## Striated Muscle Contraction                                                                                                          1.00
## Sulfide Oxidation To Sulfate                                                                                                         1.00
## Sulfur Amino Acid Metabolism                                                                                                         1.00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.00
## Sumo Is Proteolytically Processed                                                                                                    1.00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.00
## Sumoylation                                                                                                                          1.00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.00
## Sumoylation Of Dna Replication Proteins                                                                                              1.00
## Sumoylation Of Intracellular Receptors                                                                                               1.00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.00
## Sumoylation Of Transcription Cofactors                                                                                               1.00
## Sumoylation Of Transcription Factors                                                                                                 1.00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.00
## Suppression Of Apoptosis                                                                                                             1.00
## Suppression Of Phagosomal Maturation                                                                                                 1.00
## Surfactant Metabolism                                                                                                                1.00
## Switching Of Origins To A Post Replicative State                                                                                     1.00
## Synaptic Adhesion Like Molecules                                                                                                     1.00
## Syndecan Interactions                                                                                                                1.00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.00
## Synthesis Of Diphthamide Eef2                                                                                                        1.00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.00
## Synthesis Of Gdp Mannose                                                                                                             1.00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.00
## Synthesis Of Ketone Bodies                                                                                                           1.00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.00
## Synthesis Of Lipoxins Lx                                                                                                             1.00
## Synthesis Of Pa                                                                                                                      1.00
## Synthesis Of Pc                                                                                                                      1.00
## Synthesis Of Pe                                                                                                                      1.00
## Synthesis Of Pg                                                                                                                      1.00
## Synthesis Of Pi                                                                                                                      1.00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.00
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.00
## Tbc Rabgaps                                                                                                                          1.00
## Tcf Dependent Signaling In Response To Wnt                                                                                           1.00
## Tcr Signaling                                                                                                                        1.00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.00
## Telomere C Strand Synthesis Initiation                                                                                               1.00
## Telomere Extension By Telomerase                                                                                                     1.00
## Telomere Maintenance                                                                                                                 1.00
## Terminal Pathway Of Complement                                                                                                       1.00
## Termination Of O Glycan Biosynthesis                                                                                                 1.00
## Termination Of Translesion Dna Synthesis                                                                                             1.00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      1.00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.00
## The Activation Of Arylsulfatases                                                                                                     1.00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.00
## The Fatty Acid Cycling Model                                                                                                         1.00
## The Phototransduction Cascade                                                                                                        1.00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.00
## Thyroxine Biosynthesis                                                                                                               1.00
## Tie2 Signaling                                                                                                                       1.00
## Tight Junction Interactions                                                                                                          1.00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.00
## Tp53 Regulates Metabolic Genes                                                                                                       1.00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.00
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.00
## Traf6 Mediated Irf7 Activation                                                                                                       1.00
## Trafficking Of Ampa Receptors                                                                                                        1.00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.00
## Trail Signaling                                                                                                                      1.00
## Trans Golgi Network Vesicle Budding                                                                                                  1.00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.00
## Transcription Of The Hiv Genome                                                                                                      1.00
## Transcriptional Regulation By E2f6                                                                                                   1.00
## Transcriptional Regulation By Runx1                                                                                                  1.00
## Transcriptional Regulation By Runx2                                                                                                  1.00
## Transcriptional Regulation By Runx3                                                                                                  1.00
## Transcriptional Regulation By Small Rnas                                                                                             1.00
## Transcriptional Regulation By Tp53                                                                                                   1.00
## Transcriptional Regulation By Ventx                                                                                                  1.00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.00
## Transferrin Endocytosis And Recycling                                                                                                1.00
## Translation                                                                                                                          1.00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.00
## Translesion Synthesis By Polh                                                                                                        1.00
## Translesion Synthesis By Polk                                                                                                        1.00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.00
## Transmission Across Chemical Synapses                                                                                                1.00
## Transport And Synthesis Of Paps                                                                                                      1.00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.00
## Transport Of Fatty Acids                                                                                                             1.00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.00
## Transport Of Nucleotide Sugars                                                                                                       1.00
## Transport Of Organic Anions                                                                                                          1.00
## Transport Of Small Molecules                                                                                                         1.00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.00
## Transport To The Golgi And Subsequent Modification                                                                                   1.00
## Triglyceride Biosynthesis                                                                                                            1.00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.00
## Trna Aminoacylation                                                                                                                  1.00
## Trna Modification In The Mitochondrion                                                                                               1.00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.00
## Trna Processing                                                                                                                      1.00
## Trna Processing In The Mitochondrion                                                                                                 1.00
## Trna Processing In The Nucleus                                                                                                       1.00
## Trp Channels                                                                                                                         1.00
## Tryptophan Catabolism                                                                                                                1.00
## Type I Hemidesmosome Assembly                                                                                                        1.00
## Tyrosine Catabolism                                                                                                                  1.00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.00
## Ub Specific Processing Proteases                                                                                                     1.00
## Ubiquinol Biosynthesis                                                                                                               1.00
## Uch Proteinases                                                                                                                      1.00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.00
## Unwinding Of Dna                                                                                                                     1.00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.00
## Uptake And Function Of Anthrax Toxins                                                                                                1.00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.00
## Urea Cycle                                                                                                                           1.00
## Vasopressin Like Receptors                                                                                                           1.00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.00
## Vegf Ligand Receptor Interactions                                                                                                    1.00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.00
## Vesicle Mediated Transport                                                                                                           1.00
## Viral Messenger Rna Synthesis                                                                                                        1.00
## Visual Phototransduction                                                                                                             1.00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.00
## Vitamin C Ascorbate Metabolism                                                                                                       1.00
## Vitamin D Calciferol Metabolism                                                                                                      1.00
## Vitamins                                                                                                                             1.00
## Vldl Assembly                                                                                                                        1.00
## Vldl Clearance                                                                                                                       1.00
## Vldlr Internalisation And Degradation                                                                                                1.00
## Voltage Gated Potassium Channels                                                                                                     1.00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.00
## Wnt Mediated Activation Of Dvl                                                                                                       1.00
## Xenobiotics                                                                                                                          1.00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.00
## Zinc Transporters                                                                                                                    1.00
##                                                                                                                                      signature
## Interleukin 10 Signaling                                                                                                                    91
## Interleukin 4 And Interleukin 13 Signaling                                                                                                  91
## Interleukin 18 Signaling                                                                                                                    91
## Chemokine Receptors Bind Chemokines                                                                                                         91
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                91
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                           91
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                       91
## P75ntr Signals Via Nf Kb                                                                                                                    91
## Purinergic Signaling In Leishmaniasis Infection                                                                                             91
## Interleukin 1 Processing                                                                                                                    91
## Tnfs Bind Their Physiological Receptors                                                                                                     91
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                   91
## Diseases Of Immune System                                                                                                                   91
## Regulation Of Tlr By Endogenous Ligand                                                                                                      91
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                    91
## Cd28 Dependent Vav1 Pathway                                                                                                                 91
## Killing Mechanisms                                                                                                                          91
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                           91
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                 91
## Myd88 Independent Tlr4 Cascade                                                                                                              91
## Nf Kb Is Activated And Signals Survival                                                                                                     91
## P75ntr Recruits Signalling Complexes                                                                                                        91
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                     91
## Trafficking And Processing Of Endosomal Tlr                                                                                                 91
## Nod1 2 Signaling Pathway                                                                                                                    91
## Interleukin 15 Signaling                                                                                                                    91
## Toll Like Receptor Cascades                                                                                                                 91
## Pyroptosis                                                                                                                                  91
## Alternative Complement Activation                                                                                                           91
## Fasl Cd95l Signaling                                                                                                                        91
## G2 M Dna Replication Checkpoint                                                                                                             91
## Galactose Catabolism                                                                                                                        91
## Hdl Clearance                                                                                                                               91
## Mecp2 Regulates Transcription Factors                                                                                                       91
## Nostrin Mediated Enos Trafficking                                                                                                           91
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                             91
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                            91
## Sumoylation Of Dna Methylation Proteins                                                                                                     91
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                       91
## Biosynthesis Of Epa Derived Spms                                                                                                            91
## Clec7a Inflammasome Pathway                                                                                                                 91
## Fibronectin Matrix Formation                                                                                                                91
## Phosphorylation Of Emi1                                                                                                                     91
## Regulated Necrosis                                                                                                                          91
## Scavenging By Class B Receptors                                                                                                             91
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                           91
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                        91
## Tnfr1 Mediated Ceramide Production                                                                                                          91
## Irak4 Deficiency Tlr2 4                                                                                                                     91
## Interleukin 2 Family Signaling                                                                                                              91
## Interleukin 17 Signaling                                                                                                                    91
## Interleukin 1 Family Signaling                                                                                                              91
## Scavenging By Class A Receptors                                                                                                             91
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                91
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                   91
## Creb Phosphorylation                                                                                                                        91
## Ikba Variant Leads To Eda Id                                                                                                                91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                         91
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                        91
## Activation Of C3 And C5                                                                                                                     91
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                          91
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                91
## Ctla4 Inhibitory Signaling                                                                                                                  91
## Hdl Assembly                                                                                                                                91
## Heme Signaling                                                                                                                              91
## Inactivation Of Cdc42 And Rac1                                                                                                              91
## Inflammasomes                                                                                                                               91
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                           91
## Runx3 Regulates Wnt Signaling                                                                                                               91
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                  91
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                91
## Cd163 Mediating An Anti Inflammatory Response                                                                                               91
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                 91
## Interleukin 23 Signaling                                                                                                                    91
## Interleukin 9 Signaling                                                                                                                     91
## Trif Mediated Programmed Cell Death                                                                                                         91
## Ikk Complex Recruitment Mediated By Rip1                                                                                                    91
## Ovarian Tumor Domain Proteases                                                                                                              91
## Traf6 Mediated Nf Kb Activation                                                                                                             91
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                      91
## Akt Phosphorylates Targets In The Nucleus                                                                                                   91
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                    91
## Chylomicron Assembly                                                                                                                        91
## Chylomicron Remodeling                                                                                                                      91
## Hdl Remodeling                                                                                                                              91
## Interleukin 21 Signaling                                                                                                                    91
## Mapk3 Erk1 Activation                                                                                                                       91
## Mastl Facilitates Mitotic Progression                                                                                                       91
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                  91
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                               91
## Condensation Of Prometaphase Chromosomes                                                                                                    91
## Dermatan Sulfate Biosynthesis                                                                                                               91
## Dscam Interactions                                                                                                                          91
## Endosomal Vacuolar Pathway                                                                                                                  91
## Enos Activation                                                                                                                             91
## Interleukin 27 Signaling                                                                                                                    91
## Interleukin 6 Signaling                                                                                                                     91
## Receptor Mediated Mitophagy                                                                                                                 91
## Regulation By C Flip                                                                                                                        91
## Rho Gtpases Activate Ktn1                                                                                                                   91
## Signaling By Leptin                                                                                                                         91
## Sumoylation Of Immune Response Proteins                                                                                                     91
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                            91
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                           91
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                            91
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                           91
## G0 And Early G1                                                                                                                             91
## Interleukin 2 Signaling                                                                                                                     91
## Interleukin 35 Signalling                                                                                                                   91
## Interleukin Receptor Shc Signaling                                                                                                          91
## Notch2 Intracellular Domain Regulates Transcription                                                                                         91
## Signaling By Interleukins                                                                                                                   91
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                   91
## Tandem Pore Domain Potassium Channels                                                                                                       91
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                    91
## Costimulation By The Cd28 Family                                                                                                            91
## Pd 1 Signaling                                                                                                                              91
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                        91
## Apoptosis Induced Dna Fragmentation                                                                                                         91
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                               91
## Dissolution Of Fibrin Clot                                                                                                                  91
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                              91
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                    91
## Tnfr1 Induced Proapoptotic Signaling                                                                                                        91
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                       91
## Dap12 Interactions                                                                                                                          91
## Ripk1 Mediated Regulated Necrosis                                                                                                           91
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                    91
## Dcc Mediated Attractive Signaling                                                                                                           91
## Early Phase Of Hiv Life Cycle                                                                                                               91
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                         91
## Irak1 Recruits Ikk Complex                                                                                                                  91
## Repression Of Wnt Target Genes                                                                                                              91
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                         91
## Nicotinate Metabolism                                                                                                                       91
## Peptide Ligand Binding Receptors                                                                                                            91
## Depolymerisation Of The Nuclear Lamina                                                                                                      91
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                   91
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                    91
## Perk Regulates Gene Expression                                                                                                              91
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                      91
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                          91
## Wnt5a Dependent Internalization Of Fzd4                                                                                                     91
## Cargo Concentration In The Er                                                                                                               91
## Cd28 Co Stimulation                                                                                                                         91
## Foxo Mediated Transcription Of Cell Death Genes                                                                                             91
## Nrif Signals Cell Death From The Nucleus                                                                                                    91
## The Nlrp3 Inflammasome                                                                                                                      91
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                91
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                        91
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                        91
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                             91
## Regulation Of Tnfr1 Signaling                                                                                                               91
## Abc Transporters In Lipid Homeostasis                                                                                                       91
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                               91
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                            91
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                             91
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                 91
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                      91
## Interleukin 1 Signaling                                                                                                                     91
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                     91
## Initiation Of Nuclear Envelope Ne Reformation                                                                                               91
## Nicotinamide Salvaging                                                                                                                      91
## Other Semaphorin Interactions                                                                                                               91
## Phase 4 Resting Membrane Potential                                                                                                          91
## Plasma Lipoprotein Assembly                                                                                                                 91
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                        91
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                          91
## G Beta Gamma Signalling Through Cdc42                                                                                                       91
## Phosphorylation Of The Apc C                                                                                                                91
## Pka Mediated Phosphorylation Of Creb                                                                                                        91
## Signaling By Kit In Disease                                                                                                                 91
## Signaling By Pdgfr In Disease                                                                                                               91
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                       91
## Branched Chain Amino Acid Catabolism                                                                                                        91
## Interleukin 12 Family Signaling                                                                                                             91
## Interleukin 37 Signaling                                                                                                                    91
## Rho Gtpases Activate Paks                                                                                                                   91
## Cd28 Dependent Pi3k Akt Signaling                                                                                                           91
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                 91
## E2f Mediated Regulation Of Dna Replication                                                                                                  91
## Pink1 Prkn Mediated Mitophagy                                                                                                               91
## Incretin Synthesis Secretion And Inactivation                                                                                               91
## Raf Independent Mapk1 3 Activation                                                                                                          91
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                91
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                      91
## Growth Hormone Receptor Signaling                                                                                                           91
## Interleukin 6 Family Signaling                                                                                                              91
## Tnf Signaling                                                                                                                               91
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                  91
## Triglyceride Catabolism                                                                                                                     91
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                    91
## Basigin Interactions                                                                                                                        91
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                     91
## Inactivation Of Csf3 G Csf Signaling                                                                                                        91
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                               91
## Interleukin 20 Family Signaling                                                                                                             91
## Wnt Ligand Biogenesis And Trafficking                                                                                                       91
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                       91
## Foxo Mediated Transcription                                                                                                                 91
## Interleukin 12 Signaling                                                                                                                    91
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                            91
## Vegfr2 Mediated Vascular Permeability                                                                                                       91
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                            91
## Circadian Clock                                                                                                                             91
## Dap12 Signaling                                                                                                                             91
## Death Receptor Signalling                                                                                                                   91
## Downstream Signal Transduction                                                                                                              91
## G1 S Specific Transcription                                                                                                                 91
## Mitophagy                                                                                                                                   91
## Myogenesis                                                                                                                                  91
## Netrin 1 Signaling                                                                                                                          91
## Scavenging Of Heme From Plasma                                                                                                              91
## Activation Of Bh3 Only Proteins                                                                                                             91
## Signaling By Csf3 G Csf                                                                                                                     91
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                              91
## Egfr Downregulation                                                                                                                         91
## Fgfr1 Mutant Receptor Activation                                                                                                            91
## G Protein Beta Gamma Signalling                                                                                                             91
## Plasma Lipoprotein Remodeling                                                                                                               91
## Regulation Of Mecp2 Expression And Activity                                                                                                 91
## Rho Gtpases Activate Iqgaps                                                                                                                 91
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                        91
## Activation Of Matrix Metalloproteinases                                                                                                     91
## Intrinsic Pathway For Apoptosis                                                                                                             91
## Plasma Lipoprotein Clearance                                                                                                                91
## Rhoj Gtpase Cycle                                                                                                                           91
## Rhov Gtpase Cycle                                                                                                                           91
## Signaling By Notch2                                                                                                                         91
## Complement Cascade                                                                                                                          91
## Gpvi Mediated Activation Cascade                                                                                                            91
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                91
## P75 Ntr Receptor Mediated Signalling                                                                                                        91
## Rhou Gtpase Cycle                                                                                                                           91
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                        91
## Ca Dependent Events                                                                                                                         91
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                     91
## Interleukin 7 Signaling                                                                                                                     91
## Metalloprotease Dubs                                                                                                                        91
## Nuclear Pore Complex Npc Disassembly                                                                                                        91
## Regulation Of Tp53 Expression And Degradation                                                                                               91
## Rho Gtpases Activate Wasps And Waves                                                                                                        91
## Rhoh Gtpase Cycle                                                                                                                           91
## Rhoq Gtpase Cycle                                                                                                                           91
## Ros And Rns Production In Phagocytes                                                                                                        91
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                            91
## Ca2 Pathway                                                                                                                                 91
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                91
## Generation Of Second Messenger Molecules                                                                                                    91
## Ngf Stimulated Transcription                                                                                                                91
## Signaling By Fgfr1 In Disease                                                                                                               91
## Transcriptional Regulation By Mecp2                                                                                                         91
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                91
## Triglyceride Metabolism                                                                                                                     91
## Beta Defensins                                                                                                                              91
## Dag And Ip3 Signaling                                                                                                                       91
## Dna Methylation                                                                                                                             91
## Ephb Mediated Forward Signaling                                                                                                             91
## Rhof Gtpase Cycle                                                                                                                           91
## Rnd1 Gtpase Cycle                                                                                                                           91
## Rnd3 Gtpase Cycle                                                                                                                           91
## Copii Mediated Vesicle Transport                                                                                                            91
## Rnd2 Gtpase Cycle                                                                                                                           91
## Signaling By Scf Kit                                                                                                                        91
## Transcriptional Regulation Of Granulopoiesis                                                                                                91
## Extra Nuclear Estrogen Signaling                                                                                                            91
## Interferon Alpha Beta Signaling                                                                                                             91
## Interferon Gamma Signaling                                                                                                                  91
## Irs Mediated Signalling                                                                                                                     91
## Mapk6 Mapk4 Signaling                                                                                                                       91
## Metabolism Of Fat Soluble Vitamins                                                                                                          91
## Notch1 Intracellular Domain Regulates Transcription                                                                                         91
## Prc2 Methylates Histones And Dna                                                                                                            91
## Rhog Gtpase Cycle                                                                                                                           91
## Signaling By Tgf Beta Receptor Complex                                                                                                      91
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                            91
## Antigen Processing Cross Presentation                                                                                                       91
## Apoptotic Execution Phase                                                                                                                   91
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                             91
## Clec7a Dectin 1 Signaling                                                                                                                   91
## Defensins                                                                                                                                   91
## Diseases Of Programmed Cell Death                                                                                                           91
## G Protein Mediated Events                                                                                                                   91
## Initial Triggering Of Complement                                                                                                            91
## Insulin Receptor Signalling Cascade                                                                                                         91
## Nuclear Envelope Breakdown                                                                                                                  91
## Rhod Gtpase Cycle                                                                                                                           91
## Signaling By Egfr                                                                                                                           91
## Signaling By Ptk6                                                                                                                           91
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                             91
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                      91
## Antimicrobial Peptides                                                                                                                      91
## Arachidonic Acid Metabolism                                                                                                                 91
## Asymmetric Localization Of Pcp Proteins                                                                                                     91
## Class B 2 Secretin Family Receptors                                                                                                         91
## Collagen Degradation                                                                                                                        91
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                              91
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                    91
## Ncam Signaling For Neurite Out Growth                                                                                                       91
## Nrage Signals Death Through Jnk                                                                                                             91
## Nuclear Events Kinase And Transcription Factor Activation                                                                                   91
## Programmed Cell Death                                                                                                                       91
## Rac2 Gtpase Cycle                                                                                                                           91
## Rac3 Gtpase Cycle                                                                                                                           91
## Rhob Gtpase Cycle                                                                                                                           91
## Semaphorin Interactions                                                                                                                     91
## Signaling By Fgfr In Disease                                                                                                                91
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                           91
## Signaling By Pdgf                                                                                                                           91
## Sirt1 Negatively Regulates Rrna Expression                                                                                                  91
## Unfolded Protein Response Upr                                                                                                               91
## 2 Ltr Circle Formation                                                                                                                      91
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                             91
## Abacavir Metabolism                                                                                                                         91
## Abacavir Transmembrane Transport                                                                                                            91
## Abacavir Transport And Metabolism                                                                                                           91
## Abc Family Proteins Mediated Transport                                                                                                      91
## Abc Transporter Disorders                                                                                                                   91
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                            91
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                 91
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                               91
## Acetylcholine Binding And Downstream Events                                                                                                 91
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                      91
## Acetylcholine Neurotransmitter Release Cycle                                                                                                91
## Acetylcholine Regulates Insulin Secretion                                                                                                   91
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                         91
## Activated Notch1 Transmits Signal To The Nucleus                                                                                            91
## Activated Ntrk2 Signals Through Cdk5                                                                                                        91
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                               91
## Activated Ntrk2 Signals Through Fyn                                                                                                         91
## Activated Ntrk2 Signals Through Pi3k                                                                                                        91
## Activated Ntrk2 Signals Through Ras                                                                                                         91
## Activated Ntrk3 Signals Through Pi3k                                                                                                        91
## Activated Ntrk3 Signals Through Ras                                                                                                         91
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                               91
## Activation Of Ampk Downstream Of Nmdars                                                                                                     91
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                        91
## Activation Of Atr In Response To Replication Stress                                                                                         91
## Activation Of Bad And Translocation To Mitochondria                                                                                         91
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                 91
## Activation Of Gene Expression By Srebf Srebp                                                                                                91
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                      91
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                        91
## Activation Of Noxa And Translocation To Mitochondria                                                                                        91
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                        91
## Activation Of Puma And Translocation To Mitochondria                                                                                        91
## Activation Of Rac1                                                                                                                          91
## Activation Of Rac1 Downstream Of Nmdars                                                                                                     91
## Activation Of Ras In B Cells                                                                                                                91
## Activation Of Smo                                                                                                                           91
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                       91
## Activation Of The Phototransduction Cascade                                                                                                 91
## Activation Of The Pre Replicative Complex                                                                                                   91
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                91
## Activation Of Trka Receptors                                                                                                                91
## Acyl Chain Remodeling Of Cl                                                                                                                 91
## Acyl Chain Remodeling Of Dag And Tag                                                                                                        91
## Acyl Chain Remodelling Of Pc                                                                                                                91
## Acyl Chain Remodelling Of Pe                                                                                                                91
## Acyl Chain Remodelling Of Pg                                                                                                                91
## Acyl Chain Remodelling Of Pi                                                                                                                91
## Acyl Chain Remodelling Of Ps                                                                                                                91
## Adaptive Immune System                                                                                                                      91
## Adenylate Cyclase Activating Pathway                                                                                                        91
## Adenylate Cyclase Inhibitory Pathway                                                                                                        91
## Adherens Junctions Interactions                                                                                                             91
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                     91
## Adp Signalling Through P2y Purinoceptor 1                                                                                                   91
## Adp Signalling Through P2y Purinoceptor 12                                                                                                  91
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                         91
## Adrenoceptors                                                                                                                               91
## Aflatoxin Activation And Detoxification                                                                                                     91
## Aggrephagy                                                                                                                                  91
## Akt Phosphorylates Targets In The Cytosol                                                                                                   91
## Alpha Defensins                                                                                                                             91
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                  91
## Alpha Oxidation Of Phytanate                                                                                                                91
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                    91
## Amine Ligand Binding Receptors                                                                                                              91
## Amino Acid Conjugation                                                                                                                      91
## Amino Acid Transport Across The Plasma Membrane                                                                                             91
## Amino Acids Regulate Mtorc1                                                                                                                 91
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                    91
## Amyloid Fiber Formation                                                                                                                     91
## Anchoring Fibril Formation                                                                                                                  91
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                          91
## Androgen Biosynthesis                                                                                                                       91
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                          91
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                            91
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                    91
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                 91
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                    91
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                           91
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                     91
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                      91
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                             91
## Apoptosis                                                                                                                                   91
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                91
## Apoptotic Cleavage Of Cellular Proteins                                                                                                     91
## Apoptotic Factor Mediated Response                                                                                                          91
## Aquaporin Mediated Transport                                                                                                                91
## Arachidonate Production From Dag                                                                                                            91
## Arms Mediated Activation                                                                                                                    91
## Aryl Hydrocarbon Receptor Signalling                                                                                                        91
## Asparagine N Linked Glycosylation                                                                                                           91
## Aspartate And Asparagine Metabolism                                                                                                         91
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                    91
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                            91
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                91
## Assembly Of The Hiv Virion                                                                                                                  91
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                    91
## Assembly Of The Pre Replicative Complex                                                                                                     91
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                   91
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                        91
## Attachment And Entry                                                                                                                        91
## Attachment Of Gpi Anchor To Upar                                                                                                            91
## Attenuation Phase                                                                                                                           91
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                   91
## Aurka Activation By Tpx2                                                                                                                    91
## Autophagy                                                                                                                                   91
## B Wich Complex Positively Regulates Rrna Expression                                                                                         91
## Base Excision Repair                                                                                                                        91
## Base Excision Repair Ap Site Formation                                                                                                      91
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                   91
## Beta Catenin Independent Wnt Signaling                                                                                                      91
## Beta Catenin Phosphorylation Cascade                                                                                                        91
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                91
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                          91
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                              91
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                           91
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                              91
## Beta Oxidation Of Pristanoyl Coa                                                                                                            91
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                               91
## Bicarbonate Transporters                                                                                                                    91
## Bile Acid And Bile Salt Metabolism                                                                                                          91
## Biological Oxidations                                                                                                                       91
## Biosynthesis Of Maresin Like Spms                                                                                                           91
## Biosynthesis Of Maresins                                                                                                                    91
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                          91
## Biotin Transport And Metabolism                                                                                                             91
## Blood Group Systems Biosynthesis                                                                                                            91
## Budding And Maturation Of Hiv Virion                                                                                                        91
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                 91
## Butyrophilin Btn Family Interactions                                                                                                        91
## C Type Lectin Receptors Clrs                                                                                                                91
## Ca2 Activated K Channels                                                                                                                    91
## Calcineurin Activates Nfat                                                                                                                  91
## Calcitonin Like Ligand Receptors                                                                                                            91
## Calnexin Calreticulin Cycle                                                                                                                 91
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                 91
## Cardiac Conduction                                                                                                                          91
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                         91
## Cargo Trafficking To The Periciliary Membrane                                                                                               91
## Carnitine Metabolism                                                                                                                        91
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                        91
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                          91
## Cation Coupled Chloride Cotransporters                                                                                                      91
## Cd209 Dc Sign Signaling                                                                                                                     91
## Cd22 Mediated Bcr Regulation                                                                                                                91
## Cdc42 Gtpase Cycle                                                                                                                          91
## Cdc6 Association With The Orc Origin Complex                                                                                                91
## Cell Cell Communication                                                                                                                     91
## Cell Cell Junction Organization                                                                                                             91
## Cell Cycle                                                                                                                                  91
## Cell Cycle Checkpoints                                                                                                                      91
## Cell Cycle Mitotic                                                                                                                          91
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                               91
## Cell Extracellular Matrix Interactions                                                                                                      91
## Cell Junction Organization                                                                                                                  91
## Cell Surface Interactions At The Vascular Wall                                                                                              91
## Cellular Hexose Transport                                                                                                                   91
## Cellular Response To Chemical Stress                                                                                                        91
## Cellular Response To Heat Stress                                                                                                            91
## Cellular Response To Hypoxia                                                                                                                91
## Cellular Response To Starvation                                                                                                             91
## Cellular Responses To External Stimuli                                                                                                      91
## Cellular Senescence                                                                                                                         91
## Cgmp Effects                                                                                                                                91
## Chaperone Mediated Autophagy                                                                                                                91
## Chl1 Interactions                                                                                                                           91
## Cholesterol Biosynthesis                                                                                                                    91
## Choline Catabolism                                                                                                                          91
## Chondroitin Sulfate Biosynthesis                                                                                                            91
## Chrebp Activates Metabolic Gene Expression                                                                                                  91
## Chromatin Modifying Enzymes                                                                                                                 91
## Chromosome Maintenance                                                                                                                      91
## Chylomicron Clearance                                                                                                                       91
## Cilium Assembly                                                                                                                             91
## Citric Acid Cycle Tca Cycle                                                                                                                 91
## Class A 1 Rhodopsin Like Receptors                                                                                                          91
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                        91
## Class I Mhc Mediated Antigen Processing Presentation                                                                                        91
## Class I Peroxisomal Membrane Protein Import                                                                                                 91
## Clathrin Mediated Endocytosis                                                                                                               91
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                     91
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                          91
## Coenzyme A Biosynthesis                                                                                                                     91
## Cohesin Loading Onto Chromatin                                                                                                              91
## Collagen Biosynthesis And Modifying Enzymes                                                                                                 91
## Collagen Chain Trimerization                                                                                                                91
## Collagen Formation                                                                                                                          91
## Common Pathway Of Fibrin Clot Formation                                                                                                     91
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                  91
## Complex I Biogenesis                                                                                                                        91
## Condensation Of Prophase Chromosomes                                                                                                        91
## Conjugation Of Benzoate With Glycine                                                                                                        91
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                           91
## Constitutive Signaling By Egfrviii                                                                                                          91
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                            91
## Constitutive Signaling By Overexpressed Erbb2                                                                                               91
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                  91
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                            91
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                          91
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                               91
## Copi Independent Golgi To Er Retrograde Traffic                                                                                             91
## Copi Mediated Anterograde Transport                                                                                                         91
## Creatine Metabolism                                                                                                                         91
## Creation Of C4 And C2 Activators                                                                                                            91
## Creb3 Factors Activate Genes                                                                                                                91
## Cristae Formation                                                                                                                           91
## Crmps In Sema3a Signaling                                                                                                                   91
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                             91
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                  91
## Crosslinking Of Collagen Fibrils                                                                                                            91
## Cs Ds Degradation                                                                                                                           91
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                            91
## Cyclin D Associated Events In G1                                                                                                            91
## Cyp2e1 Reactions                                                                                                                            91
## Cytochrome C Mediated Apoptotic Response                                                                                                    91
## Cytochrome P450 Arranged By Substrate Type                                                                                                  91
## Cytokine Signaling In Immune System                                                                                                         91
## Cytoprotection By Hmox1                                                                                                                     91
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                      91
## Cytosolic Sulfonation Of Small Molecules                                                                                                    91
## Cytosolic Trna Aminoacylation                                                                                                               91
## Darpp 32 Events                                                                                                                             91
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                    91
## Deadenylation Dependent Mrna Decay                                                                                                          91
## Deadenylation Of Mrna                                                                                                                       91
## Dectin 2 Family                                                                                                                             91
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                 91
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                 91
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                               91
## Defective Cftr Causes Cystic Fibrosis                                                                                                       91
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                        91
## Defective Chst3 Causes Sedcjd                                                                                                               91
## Defective Chst6 Causes Mcdc1                                                                                                                91
## Defective Chsy1 Causes Tpbs                                                                                                                 91
## Defective Csf2rb Causes Smdp5                                                                                                               91
## Defective Ext2 Causes Exostoses 2                                                                                                           91
## Defective F9 Activation                                                                                                                     91
## Defective Factor Ix Causes Hemophilia B                                                                                                     91
## Defective Factor Viii Causes Hemophilia A                                                                                                   91
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                  91
## Defective Lfng Causes Scdo3                                                                                                                 91
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                 91
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                   91
## Defects In Biotin Btn Metabolism                                                                                                            91
## Defects In Cobalamin B12 Metabolism                                                                                                         91
## Defects In Vitamin And Cofactor Metabolism                                                                                                  91
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                    91
## Degradation Of Axin                                                                                                                         91
## Degradation Of Beta Catenin By The Destruction Complex                                                                                      91
## Degradation Of Cysteine And Homocysteine                                                                                                    91
## Degradation Of Dvl                                                                                                                          91
## Degradation Of Gli1 By The Proteasome                                                                                                       91
## Degradation Of The Extracellular Matrix                                                                                                     91
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                            91
## Detoxification Of Reactive Oxygen Species                                                                                                   91
## Deubiquitination                                                                                                                            91
## Developmental Biology                                                                                                                       91
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                               91
## Digestion                                                                                                                                   91
## Digestion And Absorption                                                                                                                    91
## Digestion Of Dietary Carbohydrate                                                                                                           91
## Digestion Of Dietary Lipid                                                                                                                  91
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                       91
## Diseases Associated With N Glycosylation Of Proteins                                                                                        91
## Diseases Associated With O Glycosylation Of Proteins                                                                                        91
## Diseases Associated With Surfactant Metabolism                                                                                              91
## Diseases Of Base Excision Repair                                                                                                            91
## Diseases Of Carbohydrate Metabolism                                                                                                         91
## Diseases Of Dna Repair                                                                                                                      91
## Diseases Of Glycosylation                                                                                                                   91
## Diseases Of Metabolism                                                                                                                      91
## Diseases Of Mismatch Repair Mmr                                                                                                             91
## Diseases Of Mitotic Cell Cycle                                                                                                              91
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                            91
## Disinhibition Of Snare Formation                                                                                                            91
## Disorders Of Transmembrane Transporters                                                                                                     91
## Displacement Of Dna Glycosylase By Apex1                                                                                                    91
## Dna Damage Bypass                                                                                                                           91
## Dna Damage Recognition In Gg Ner                                                                                                            91
## Dna Damage Reversal                                                                                                                         91
## Dna Damage Telomere Stress Induced Senescence                                                                                               91
## Dna Double Strand Break Repair                                                                                                              91
## Dna Double Strand Break Response                                                                                                            91
## Dna Repair                                                                                                                                  91
## Dna Replication                                                                                                                             91
## Dna Replication Initiation                                                                                                                  91
## Dna Replication Pre Initiation                                                                                                              91
## Dna Strand Elongation                                                                                                                       91
## Dopamine Neurotransmitter Release Cycle                                                                                                     91
## Dopamine Receptors                                                                                                                          91
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                     91
## Downregulation Of Erbb2 Signaling                                                                                                           91
## Downregulation Of Erbb4 Signaling                                                                                                           91
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                    91
## Downregulation Of Tgf Beta Receptor Signaling                                                                                               91
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                          91
## Downstream Signaling Of Activated Fgfr1                                                                                                     91
## Downstream Signaling Of Activated Fgfr2                                                                                                     91
## Downstream Signaling Of Activated Fgfr3                                                                                                     91
## Downstream Signaling Of Activated Fgfr4                                                                                                     91
## Dual Incision In Gg Ner                                                                                                                     91
## Dual Incision In Tc Ner                                                                                                                     91
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                           91
## Ecm Proteoglycans                                                                                                                           91
## Effects Of Pip2 Hydrolysis                                                                                                                  91
## Egfr Interacts With Phospholipase C Gamma                                                                                                   91
## Egfr Transactivation By Gastrin                                                                                                             91
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                              91
## Eicosanoid Ligand Binding Receptors                                                                                                         91
## Eicosanoids                                                                                                                                 91
## Elastic Fibre Formation                                                                                                                     91
## Electric Transmission Across Gap Junctions                                                                                                  91
## Elevation Of Cytosolic Ca2 Levels                                                                                                           91
## Endogenous Sterols                                                                                                                          91
## Endosomal Sorting Complex Required For Transport Escrt                                                                                      91
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                            91
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                      91
## Eph Ephrin Signaling                                                                                                                        91
## Epha Mediated Growth Cone Collapse                                                                                                          91
## Ephrin Signaling                                                                                                                            91
## Epigenetic Regulation Of Gene Expression                                                                                                    91
## Er Quality Control Compartment Erqc                                                                                                         91
## Er To Golgi Anterograde Transport                                                                                                           91
## Erbb2 Activates Ptk6 Signaling                                                                                                              91
## Erbb2 Regulates Cell Motility                                                                                                               91
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                 91
## Erk Mapk Targets                                                                                                                            91
## Erks Are Inactivated                                                                                                                        91
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                      91
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                      91
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                     91
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                         91
## Erythropoietin Activates Ras                                                                                                                91
## Erythropoietin Activates Stat5                                                                                                              91
## Esr Mediated Signaling                                                                                                                      91
## Establishment Of Sister Chromatid Cohesion                                                                                                  91
## Estrogen Biosynthesis                                                                                                                       91
## Estrogen Dependent Gene Expression                                                                                                          91
## Estrogen Stimulated Signaling Through Prkcz                                                                                                 91
## Ethanol Oxidation                                                                                                                           91
## Eukaryotic Translation Elongation                                                                                                           91
## Eukaryotic Translation Initiation                                                                                                           91
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                             91
## Extension Of Telomeres                                                                                                                      91
## Extracellular Matrix Organization                                                                                                           91
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                  91
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                       91
## Fanconi Anemia Pathway                                                                                                                      91
## Fatty Acid Metabolism                                                                                                                       91
## Fatty Acids                                                                                                                                 91
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                 91
## Fatty Acyl Coa Biosynthesis                                                                                                                 91
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                          91
## Fc Epsilon Receptor Fceri Signaling                                                                                                         91
## Fceri Mediated Ca 2 Mobilization                                                                                                            91
## Fceri Mediated Mapk Activation                                                                                                              91
## Fceri Mediated Nf Kb Activation                                                                                                             91
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                91
## Fcgr Activation                                                                                                                             91
## Fcgr3a Mediated Il10 Synthesis                                                                                                              91
## Fertilization                                                                                                                               91
## Fgfr1 Ligand Binding And Activation                                                                                                         91
## Fgfr1b Ligand Binding And Activation                                                                                                        91
## Fgfr1c Ligand Binding And Activation                                                                                                        91
## Fgfr2 Alternative Splicing                                                                                                                  91
## Fgfr2 Ligand Binding And Activation                                                                                                         91
## Fgfr2 Mutant Receptor Activation                                                                                                            91
## Fgfr2b Ligand Binding And Activation                                                                                                        91
## Fgfr2c Ligand Binding And Activation                                                                                                        91
## Fgfr3 Ligand Binding And Activation                                                                                                         91
## Fgfr3b Ligand Binding And Activation                                                                                                        91
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                        91
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                              91
## Flt3 Signaling                                                                                                                              91
## Flt3 Signaling By Cbl Mutants                                                                                                               91
## Flt3 Signaling In Disease                                                                                                                   91
## Flt3 Signaling Through Src Family Kinases                                                                                                   91
## Folding Of Actin By Cct Tric                                                                                                                91
## Formation Of Apoptosome                                                                                                                     91
## Formation Of Atp By Chemiosmotic Coupling                                                                                                   91
## Formation Of Fibrin Clot Clotting Cascade                                                                                                   91
## Formation Of Incision Complex In Gg Ner                                                                                                     91
## Formation Of Rna Pol Ii Elongation Complex                                                                                                  91
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                91
## Formation Of Tc Ner Pre Incision Complex                                                                                                    91
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                   91
## Formation Of The Cornified Envelope                                                                                                         91
## Formation Of The Early Elongation Complex                                                                                                   91
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                      91
## Formation Of Xylulose 5 Phosphate                                                                                                           91
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                        91
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                91
## Free Fatty Acid Receptors                                                                                                                   91
## Free Fatty Acids Regulate Insulin Secretion                                                                                                 91
## Frs Mediated Fgfr1 Signaling                                                                                                                91
## Frs Mediated Fgfr2 Signaling                                                                                                                91
## Frs Mediated Fgfr3 Signaling                                                                                                                91
## Frs Mediated Fgfr4 Signaling                                                                                                                91
## Fructose Catabolism                                                                                                                         91
## Fructose Metabolism                                                                                                                         91
## G Alpha 12 13 Signalling Events                                                                                                             91
## G Alpha I Signalling Events                                                                                                                 91
## G Alpha Q Signalling Events                                                                                                                 91
## G Alpha S Signalling Events                                                                                                                 91
## G Alpha Z Signalling Events                                                                                                                 91
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                   91
## G Protein Activation                                                                                                                        91
## G1 S Dna Damage Checkpoints                                                                                                                 91
## G2 M Checkpoints                                                                                                                            91
## G2 M Dna Damage Checkpoint                                                                                                                  91
## G2 Phase                                                                                                                                    91
## Gab1 Signalosome                                                                                                                            91
## Gaba B Receptor Activation                                                                                                                  91
## Gaba Receptor Activation                                                                                                                    91
## Gaba Synthesis Release Reuptake And Degradation                                                                                             91
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                         91
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                       91
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                     91
## Gap Junction Assembly                                                                                                                       91
## Gap Junction Degradation                                                                                                                    91
## Gap Junction Trafficking And Regulation                                                                                                     91
## Gdp Fucose Biosynthesis                                                                                                                     91
## Gene Silencing By Rna                                                                                                                       91
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                 91
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                             91
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                    91
## Glucagon Signaling In Metabolic Regulation                                                                                                  91
## Glucagon Type Ligand Receptors                                                                                                              91
## Glucocorticoid Biosynthesis                                                                                                                 91
## Gluconeogenesis                                                                                                                             91
## Glucose Metabolism                                                                                                                          91
## Glucuronidation                                                                                                                             91
## Glutamate And Glutamine Metabolism                                                                                                          91
## Glutamate Neurotransmitter Release Cycle                                                                                                    91
## Glutathione Conjugation                                                                                                                     91
## Glutathione Synthesis And Recycling                                                                                                         91
## Glycerophospholipid Biosynthesis                                                                                                            91
## Glycerophospholipid Catabolism                                                                                                              91
## Glycogen Breakdown Glycogenolysis                                                                                                           91
## Glycogen Metabolism                                                                                                                         91
## Glycogen Storage Diseases                                                                                                                   91
## Glycogen Synthesis                                                                                                                          91
## Glycolysis                                                                                                                                  91
## Glycosaminoglycan Metabolism                                                                                                                91
## Glycosphingolipid Metabolism                                                                                                                91
## Glyoxylate Metabolism And Glycine Degradation                                                                                               91
## Golgi Associated Vesicle Biogenesis                                                                                                         91
## Golgi To Er Retrograde Transport                                                                                                            91
## Gp1b Ix V Activation Signalling                                                                                                             91
## Gpcr Ligand Binding                                                                                                                         91
## Grb2 Events In Erbb2 Signaling                                                                                                              91
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                   91
## Grb7 Events In Erbb2 Signaling                                                                                                              91
## Hats Acetylate Histones                                                                                                                     91
## Hcmv Early Events                                                                                                                           91
## Hcmv Infection                                                                                                                              91
## Hcmv Late Events                                                                                                                            91
## Hdacs Deacetylate Histones                                                                                                                  91
## Hdms Demethylate Histones                                                                                                                   91
## Hdr Through Homologous Recombination Hrr                                                                                                    91
## Hdr Through Mmej Alt Nhej                                                                                                                   91
## Hdr Through Single Strand Annealing Ssa                                                                                                     91
## Hedgehog Ligand Biogenesis                                                                                                                  91
## Hedgehog Off State                                                                                                                          91
## Hedgehog On State                                                                                                                           91
## Heme Biosynthesis                                                                                                                           91
## Heme Degradation                                                                                                                            91
## Hemostasis                                                                                                                                  91
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                   91
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                  91
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                     91
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                      91
## Histidine Catabolism                                                                                                                        91
## Hiv Elongation Arrest And Recovery                                                                                                          91
## Hiv Infection                                                                                                                               91
## Hiv Life Cycle                                                                                                                              91
## Hiv Transcription Elongation                                                                                                                91
## Hiv Transcription Initiation                                                                                                                91
## Homologous Dna Pairing And Strand Exchange                                                                                                  91
## Homology Directed Repair                                                                                                                    91
## Hormone Ligand Binding Receptors                                                                                                            91
## Host Interactions Of Hiv Factors                                                                                                            91
## Hs Gag Biosynthesis                                                                                                                         91
## Hs Gag Degradation                                                                                                                          91
## Hsf1 Activation                                                                                                                             91
## Hsf1 Dependent Transactivation                                                                                                              91
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                     91
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                        91
## Hyaluronan Biosynthesis And Export                                                                                                          91
## Hyaluronan Metabolism                                                                                                                       91
## Hyaluronan Uptake And Degradation                                                                                                           91
## Hydrolysis Of Lpc                                                                                                                           91
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                             91
## Infection With Mycobacterium Tuberculosis                                                                                                   91
## Infectious Disease                                                                                                                          91
## Influenza Infection                                                                                                                         91
## Inhibition Of Dna Recombination At Telomere                                                                                                 91
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                             91
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                 91
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                               91
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                91
## Innate Immune System                                                                                                                        91
## Inositol Phosphate Metabolism                                                                                                               91
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                 91
## Insulin Processing                                                                                                                          91
## Insulin Receptor Recycling                                                                                                                  91
## Integration Of Energy Metabolism                                                                                                            91
## Integration Of Provirus                                                                                                                     91
## Integrin Cell Surface Interactions                                                                                                          91
## Integrin Signaling                                                                                                                          91
## Interaction Between L1 And Ankyrins                                                                                                         91
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                       91
## Interactions Of Rev With Host Cellular Proteins                                                                                             91
## Interactions Of Vpr With Host Cellular Proteins                                                                                             91
## Interconversion Of Nucleotide Di And Triphosphates                                                                                          91
## Interferon Signaling                                                                                                                        91
## Interleukin 36 Pathway                                                                                                                      91
## Intestinal Absorption                                                                                                                       91
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                              91
## Intra Golgi Traffic                                                                                                                         91
## Intracellular Signaling By Second Messengers                                                                                                91
## Intraflagellar Transport                                                                                                                    91
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                  91
## Inwardly Rectifying K Channels                                                                                                              91
## Ion Channel Transport                                                                                                                       91
## Ion Homeostasis                                                                                                                             91
## Ion Transport By P Type Atpases                                                                                                             91
## Ionotropic Activity Of Kainate Receptors                                                                                                    91
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                   91
## Ire1alpha Activates Chaperones                                                                                                              91
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                      91
## Irf3 Mediated Induction Of Type I Ifn                                                                                                       91
## Iron Uptake And Transport                                                                                                                   91
## Irs Activation                                                                                                                              91
## Josephin Domain Dubs                                                                                                                        91
## Keratan Sulfate Biosynthesis                                                                                                                91
## Keratan Sulfate Degradation                                                                                                                 91
## Keratan Sulfate Keratin Metabolism                                                                                                          91
## Keratinization                                                                                                                              91
## Ketone Body Metabolism                                                                                                                      91
## Kinesins                                                                                                                                    91
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                      91
## L1cam Interactions                                                                                                                          91
## Lagging Strand Synthesis                                                                                                                    91
## Laminin Interactions                                                                                                                        91
## Late Endosomal Microautophagy                                                                                                               91
## Ldl Clearance                                                                                                                               91
## Lectin Pathway Of Complement Activation                                                                                                     91
## Leishmania Infection                                                                                                                        91
## Leukotriene Receptors                                                                                                                       91
## Lgi Adam Interactions                                                                                                                       91
## Ligand Receptor Interactions                                                                                                                91
## Linoleic Acid La Metabolism                                                                                                                 91
## Lipid Particle Organization                                                                                                                 91
## Lipophagy                                                                                                                                   91
## Listeria Monocytogenes Entry Into Host Cells                                                                                                91
## Long Term Potentiation                                                                                                                      91
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                  91
## Loss Of Function Of Smad2 3 In Cancer                                                                                                       91
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                      91
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                      91
## Ltc4 Cysltr Mediated Il4 Production                                                                                                         91
## Lysine Catabolism                                                                                                                           91
## Lysosome Vesicle Biogenesis                                                                                                                 91
## Lysosphingolipid And Lpa Receptors                                                                                                          91
## M Phase                                                                                                                                     91
## Map2k And Mapk Activation                                                                                                                   91
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                    91
## Mapk Family Signaling Cascades                                                                                                              91
## Mapk1 Erk2 Activation                                                                                                                       91
## Maturation Of Nucleoprotein                                                                                                                 91
## Maturation Of Protein 3a                                                                                                                    91
## Maturation Of Sars Cov 1 Spike Protein                                                                                                      91
## Maturation Of Sars Cov 2 Spike Protein                                                                                                      91
## Meiosis                                                                                                                                     91
## Meiotic Recombination                                                                                                                       91
## Meiotic Synapsis                                                                                                                            91
## Melanin Biosynthesis                                                                                                                        91
## Membrane Trafficking                                                                                                                        91
## Met Activates Pi3k Akt Signaling                                                                                                            91
## Met Activates Ptk2 Signaling                                                                                                                91
## Met Activates Ptpn11                                                                                                                        91
## Met Activates Rap1 And Rac1                                                                                                                 91
## Met Activates Ras Signaling                                                                                                                 91
## Met Interacts With Tns Proteins                                                                                                             91
## Met Promotes Cell Motility                                                                                                                  91
## Met Receptor Activation                                                                                                                     91
## Met Receptor Recycling                                                                                                                      91
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                         91
## Metabolism Of Amine Derived Hormones                                                                                                        91
## Metabolism Of Amino Acids And Derivatives                                                                                                   91
## Metabolism Of Angiotensinogen To Angiotensins                                                                                               91
## Metabolism Of Carbohydrates                                                                                                                 91
## Metabolism Of Cofactors                                                                                                                     91
## Metabolism Of Folate And Pterines                                                                                                           91
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                            91
## Metabolism Of Lipids                                                                                                                        91
## Metabolism Of Nucleotides                                                                                                                   91
## Metabolism Of Polyamines                                                                                                                    91
## Metabolism Of Porphyrins                                                                                                                    91
## Metabolism Of Rna                                                                                                                           91
## Metabolism Of Steroid Hormones                                                                                                              91
## Metabolism Of Steroids                                                                                                                      91
## Metabolism Of Vitamins And Cofactors                                                                                                        91
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                          91
## Metal Ion Slc Transporters                                                                                                                  91
## Metal Sequestration By Antimicrobial Proteins                                                                                               91
## Metallothioneins Bind Metals                                                                                                                91
## Methionine Salvage Pathway                                                                                                                  91
## Methylation                                                                                                                                 91
## Mhc Class Ii Antigen Presentation                                                                                                           91
## Microrna Mirna Biogenesis                                                                                                                   91
## Mineralocorticoid Biosynthesis                                                                                                              91
## Miro Gtpase Cycle                                                                                                                           91
## Miscellaneous Substrates                                                                                                                    91
## Miscellaneous Transport And Binding Events                                                                                                  91
## Mismatch Repair                                                                                                                             91
## Mitochondrial Biogenesis                                                                                                                    91
## Mitochondrial Calcium Ion Transport                                                                                                         91
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                     91
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                            91
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                          91
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                91
## Mitochondrial Protein Import                                                                                                                91
## Mitochondrial Translation                                                                                                                   91
## Mitochondrial Trna Aminoacylation                                                                                                           91
## Mitochondrial Uncoupling                                                                                                                    91
## Mitotic G1 Phase And G1 S Transition                                                                                                        91
## Mitotic G2 G2 M Phases                                                                                                                      91
## Mitotic Metaphase And Anaphase                                                                                                              91
## Mitotic Prometaphase                                                                                                                        91
## Mitotic Prophase                                                                                                                            91
## Mitotic Spindle Checkpoint                                                                                                                  91
## Mitotic Telophase Cytokinesis                                                                                                               91
## Modulation By Mtb Of Host Immune System                                                                                                     91
## Molecules Associated With Elastic Fibres                                                                                                    91
## Molybdenum Cofactor Biosynthesis                                                                                                            91
## Mrna Capping                                                                                                                                91
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                        91
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                        91
## Mrna Editing                                                                                                                                91
## Mrna Editing C To U Conversion                                                                                                              91
## Mrna Splicing                                                                                                                               91
## Mrna Splicing Minor Pathway                                                                                                                 91
## Mtor Signalling                                                                                                                             91
## Mtorc1 Mediated Signalling                                                                                                                  91
## Mucopolysaccharidoses                                                                                                                       91
## Multifunctional Anion Exchangers                                                                                                            91
## Muscarinic Acetylcholine Receptors                                                                                                          91
## Muscle Contraction                                                                                                                          91
## Myoclonic Epilepsy Of Lafora                                                                                                                91
## N Glycan Antennae Elongation                                                                                                                91
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                      91
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                           91
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                 91
## Na Cl Dependent Neurotransmitter Transporters                                                                                               91
## Nade Modulates Death Signalling                                                                                                             91
## Ncam1 Interactions                                                                                                                          91
## Nectin Necl Trans Heterodimerization                                                                                                        91
## Neddylation                                                                                                                                 91
## Nef And Signal Transduction                                                                                                                 91
## Nef Mediated Cd4 Down Regulation                                                                                                            91
## Nef Mediated Cd8 Down Regulation                                                                                                            91
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                  91
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                              91
## Negative Epigenetic Regulation Of Rrna Expression                                                                                           91
## Negative Feedback Regulation Of Mapk Pathway                                                                                                91
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                  91
## Negative Regulation Of Fgfr1 Signaling                                                                                                      91
## Negative Regulation Of Fgfr2 Signaling                                                                                                      91
## Negative Regulation Of Fgfr3 Signaling                                                                                                      91
## Negative Regulation Of Fgfr4 Signaling                                                                                                      91
## Negative Regulation Of Flt3                                                                                                                 91
## Negative Regulation Of Mapk Pathway                                                                                                         91
## Negative Regulation Of Met Activity                                                                                                         91
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                         91
## Negative Regulation Of Notch4 Signaling                                                                                                     91
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                  91
## Negative Regulation Of The Pi3k Akt Network                                                                                                 91
## Nephrin Family Interactions                                                                                                                 91
## Nervous System Development                                                                                                                  91
## Netrin Mediated Repulsion Signals                                                                                                           91
## Neurexins And Neuroligins                                                                                                                   91
## Neurofascin Interactions                                                                                                                    91
## Neuronal System                                                                                                                             91
## Neurotoxicity Of Clostridium Toxins                                                                                                         91
## Neurotransmitter Clearance                                                                                                                  91
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                             91
## Neurotransmitter Release Cycle                                                                                                              91
## Neutrophil Degranulation                                                                                                                    91
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                    91
## Ngf Independant Trka Activation                                                                                                             91
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                   91
## Non Integrin Membrane Ecm Interactions                                                                                                      91
## Noncanonical Activation Of Notch3                                                                                                           91
## Nonhomologous End Joining Nhej                                                                                                              91
## Nonsense Mediated Decay Nmd                                                                                                                 91
## Norepinephrine Neurotransmitter Release Cycle                                                                                               91
## Notch Hlh Transcription Pathway                                                                                                             91
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch3 Intracellular Domain Regulates Transcription                                                                                         91
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch4 Intracellular Domain Regulates Transcription                                                                                         91
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                          91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                              91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                  91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                            91
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                       91
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                            91
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                             91
## Nrcam Interactions                                                                                                                          91
## Ns1 Mediated Effects On Host Pathways                                                                                                       91
## Ntrk2 Activates Rac1                                                                                                                        91
## Nuclear Envelope Ne Reassembly                                                                                                              91
## Nuclear Import Of Rev Protein                                                                                                               91
## Nuclear Receptor Transcription Pathway                                                                                                      91
## Nuclear Signaling By Erbb4                                                                                                                  91
## Nucleobase Biosynthesis                                                                                                                     91
## Nucleobase Catabolism                                                                                                                       91
## Nucleotide Excision Repair                                                                                                                  91
## Nucleotide Like Purinergic Receptors                                                                                                        91
## Nucleotide Salvage                                                                                                                          91
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                           91
## O Linked Glycosylation                                                                                                                      91
## O Linked Glycosylation Of Mucins                                                                                                            91
## Oas Antiviral Response                                                                                                                      91
## Olfactory Signaling Pathway                                                                                                                 91
## Oncogene Induced Senescence                                                                                                                 91
## Oncogenic Mapk Signaling                                                                                                                    91
## Opioid Signalling                                                                                                                           91
## Opsins                                                                                                                                      91
## Orc1 Removal From Chromatin                                                                                                                 91
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                     91
## Organelle Biogenesis And Maintenance                                                                                                        91
## Organic Anion Transport                                                                                                                     91
## Organic Anion Transporters                                                                                                                  91
## Organic Cation Anion Zwitterion Transport                                                                                                   91
## Organic Cation Transport                                                                                                                    91
## Other Interleukin Signaling                                                                                                                 91
## Oxidative Stress Induced Senescence                                                                                                         91
## P130cas Linkage To Mapk Signaling For Integrins                                                                                             91
## P2y Receptors                                                                                                                               91
## P38mapk Events                                                                                                                              91
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                              91
## P75ntr Regulates Axonogenesis                                                                                                               91
## Parasite Infection                                                                                                                          91
## Passive Transport By Aquaporins                                                                                                             91
## Pcna Dependent Long Patch Base Excision Repair                                                                                              91
## Pcp Ce Pathway                                                                                                                              91
## Pecam1 Interactions                                                                                                                         91
## Pentose Phosphate Pathway                                                                                                                   91
## Peptide Hormone Biosynthesis                                                                                                                91
## Peptide Hormone Metabolism                                                                                                                  91
## Peroxisomal Lipid Metabolism                                                                                                                91
## Peroxisomal Protein Import                                                                                                                  91
## Pexophagy                                                                                                                                   91
## Phase 0 Rapid Depolarisation                                                                                                                91
## Phase 1 Inactivation Of Fast Na Channels                                                                                                    91
## Phase 2 Plateau Phase                                                                                                                       91
## Phase 3 Rapid Repolarisation                                                                                                                91
## Phase I Functionalization Of Compounds                                                                                                      91
## Phase Ii Conjugation Of Compounds                                                                                                           91
## Phenylalanine And Tyrosine Metabolism                                                                                                       91
## Phenylalanine Metabolism                                                                                                                    91
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                               91
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                  91
## Phospholipase C Mediated Cascade Fgfr2                                                                                                      91
## Phospholipase C Mediated Cascade Fgfr4                                                                                                      91
## Phospholipid Metabolism                                                                                                                     91
## Physiological Factors                                                                                                                       91
## Pi 3k Cascade Fgfr1                                                                                                                         91
## Pi 3k Cascade Fgfr2                                                                                                                         91
## Pi 3k Cascade Fgfr3                                                                                                                         91
## Pi 3k Cascade Fgfr4                                                                                                                         91
## Pi Metabolism                                                                                                                               91
## Pi3k Akt Activation                                                                                                                         91
## Pi3k Akt Signaling In Cancer                                                                                                                91
## Pi3k Events In Erbb2 Signaling                                                                                                              91
## Pi3k Events In Erbb4 Signaling                                                                                                              91
## Pi5p Regulates Tp53 Acetylation                                                                                                             91
## Piwi Interacting Rna Pirna Biogenesis                                                                                                       91
## Pka Activation In Glucagon Signalling                                                                                                       91
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                       91
## Pkmts Methylate Histone Lysines                                                                                                             91
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                        91
## Platelet Activation Signaling And Aggregation                                                                                               91
## Platelet Adhesion To Exposed Collagen                                                                                                       91
## Platelet Aggregation Plug Formation                                                                                                         91
## Platelet Calcium Homeostasis                                                                                                                91
## Platelet Homeostasis                                                                                                                        91
## Platelet Sensitization By Ldl                                                                                                               91
## Polb Dependent Long Patch Base Excision Repair                                                                                              91
## Polo Like Kinase Mediated Events                                                                                                            91
## Polymerase Switching                                                                                                                        91
## Polymerase Switching On The C Strand Of The Telomere                                                                                        91
## Positive Epigenetic Regulation Of Rrna Expression                                                                                           91
## Post Chaperonin Tubulin Folding Pathway                                                                                                     91
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                          91
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                            91
## Potassium Channels                                                                                                                          91
## Potential Therapeutics For Sars                                                                                                             91
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                             91
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                    91
## Pre Notch Expression And Processing                                                                                                         91
## Pre Notch Processing In Golgi                                                                                                               91
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                           91
## Pregnenolone Biosynthesis                                                                                                                   91
## Presynaptic Depolarization And Calcium Channel Opening                                                                                      91
## Presynaptic Function Of Kainate Receptors                                                                                                   91
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                   91
## Processing And Activation Of Sumo                                                                                                           91
## Processing Of Capped Intron Containing Pre Mrna                                                                                             91
## Processing Of Capped Intronless Pre Mrna                                                                                                    91
## Processing Of Dna Double Strand Break Ends                                                                                                  91
## Processing Of Intronless Pre Mrnas                                                                                                          91
## Processing Of Smdt1                                                                                                                         91
## Processive Synthesis On The C Strand Of The Telomere                                                                                        91
## Processive Synthesis On The Lagging Strand                                                                                                  91
## Prolactin Receptor Signaling                                                                                                                91
## Prolonged Erk Activation Events                                                                                                             91
## Propionyl Coa Catabolism                                                                                                                    91
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                       91
## Prostanoid Ligand Receptors                                                                                                                 91
## Protein Folding                                                                                                                             91
## Protein Localization                                                                                                                        91
## Protein Methylation                                                                                                                         91
## Protein Protein Interactions At Synapses                                                                                                    91
## Protein Repair                                                                                                                              91
## Protein Ubiquitination                                                                                                                      91
## Proton Coupled Monocarboxylate Transport                                                                                                    91
## Pten Regulation                                                                                                                             91
## Ptk6 Expression                                                                                                                             91
## Ptk6 Promotes Hif1a Stabilization                                                                                                           91
## Ptk6 Regulates Cell Cycle                                                                                                                   91
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                          91
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                       91
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                       91
## Purine Catabolism                                                                                                                           91
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                            91
## Purine Salvage                                                                                                                              91
## Pyrimidine Catabolism                                                                                                                       91
## Pyrimidine Salvage                                                                                                                          91
## Pyruvate Metabolism                                                                                                                         91
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                               91
## Ra Biosynthesis Pathway                                                                                                                     91
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                       91
## Rab Geranylgeranylation                                                                                                                     91
## Rab Regulation Of Trafficking                                                                                                               91
## Rac1 Gtpase Cycle                                                                                                                           91
## Raf Activation                                                                                                                              91
## Rap1 Signalling                                                                                                                             91
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                        91
## Ras Processing                                                                                                                              91
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                   91
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                91
## Receptor Type Tyrosine Protein Phosphatases                                                                                                 91
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                      91
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                            91
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                    91
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                  91
## Recycling Of Bile Acids And Salts                                                                                                           91
## Recycling Of Eif2 Gdp                                                                                                                       91
## Recycling Pathway Of L1                                                                                                                     91
## Reduction Of Cytosolic Ca Levels                                                                                                            91
## Reelin Signalling Pathway                                                                                                                   91
## Regulated Proteolysis Of P75ntr                                                                                                             91
## Regulation Of Bach1 Activity                                                                                                                91
## Regulation Of Beta Cell Development                                                                                                         91
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                       91
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                 91
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                          91
## Regulation Of Expression Of Slits And Robos                                                                                                 91
## Regulation Of Fzd By Ubiquitination                                                                                                         91
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                   91
## Regulation Of Gene Expression In Beta Cells                                                                                                 91
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                           91
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                               91
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                          91
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                 91
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                            91
## Regulation Of Hmox1 Expression And Activity                                                                                                 91
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                             91
## Regulation Of Ifna Signaling                                                                                                                91
## Regulation Of Ifng Signaling                                                                                                                91
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                      91
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                     91
## Regulation Of Insulin Secretion                                                                                                             91
## Regulation Of Kit Signaling                                                                                                                 91
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                 91
## Regulation Of Localization Of Foxo Transcription Factors                                                                                    91
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                         91
## Regulation Of Plk1 Activity At G2 M Transition                                                                                              91
## Regulation Of Pten Gene Transcription                                                                                                       91
## Regulation Of Pten Localization                                                                                                             91
## Regulation Of Pten Mrna Translation                                                                                                         91
## Regulation Of Pten Stability And Activity                                                                                                   91
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                            91
## Regulation Of Ras By Gaps                                                                                                                   91
## Regulation Of Runx1 Expression And Activity                                                                                                 91
## Regulation Of Runx2 Expression And Activity                                                                                                 91
## Regulation Of Runx3 Expression And Activity                                                                                                 91
## Regulation Of Signaling By Cbl                                                                                                              91
## Regulation Of Signaling By Nodal                                                                                                            91
## Regulation Of Tp53 Activity                                                                                                                 91
## Regulation Of Tp53 Activity Through Acetylation                                                                                             91
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                             91
## Regulation Of Tp53 Activity Through Methylation                                                                                             91
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                         91
## Relaxin Receptors                                                                                                                           91
## Release Of Apoptotic Factors From The Mitochondria                                                                                          91
## Release Of Hh Np From The Secreting Cell                                                                                                    91
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                       91
## Reproduction                                                                                                                                91
## Resolution Of Abasic Sites Ap Sites                                                                                                         91
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                91
## Resolution Of D Loop Structures                                                                                                             91
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                           91
## Resolution Of Sister Chromatid Cohesion                                                                                                     91
## Respiratory Electron Transport                                                                                                              91
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                            91
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                  91
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                           91
## Response Of Mtb To Phagocytosis                                                                                                             91
## Response To Elevated Platelet Cytosolic Ca2                                                                                                 91
## Response To Metal Ions                                                                                                                      91
## Ret Signaling                                                                                                                               91
## Retinoid Cycle Disease Events                                                                                                               91
## Retrograde Neurotrophin Signalling                                                                                                          91
## Retrograde Transport At The Trans Golgi Network                                                                                             91
## Reversible Hydration Of Carbon Dioxide                                                                                                      91
## Rho Gtpase Cycle                                                                                                                            91
## Rho Gtpase Effectors                                                                                                                        91
## Rho Gtpases Activate Cit                                                                                                                    91
## Rho Gtpases Activate Formins                                                                                                                91
## Rho Gtpases Activate Nadph Oxidases                                                                                                         91
## Rho Gtpases Activate Pkns                                                                                                                   91
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                91
## Rho Gtpases Activate Rocks                                                                                                                  91
## Rhoa Gtpase Cycle                                                                                                                           91
## Rhobtb Gtpase Cycle                                                                                                                         91
## Rhobtb1 Gtpase Cycle                                                                                                                        91
## Rhobtb2 Gtpase Cycle                                                                                                                        91
## Rhobtb3 Atpase Cycle                                                                                                                        91
## Rhoc Gtpase Cycle                                                                                                                           91
## Rhot1 Gtpase Cycle                                                                                                                          91
## Rmts Methylate Histone Arginines                                                                                                            91
## Rna Polymerase I Promoter Escape                                                                                                            91
## Rna Polymerase I Transcription                                                                                                              91
## Rna Polymerase I Transcription Initiation                                                                                                   91
## Rna Polymerase I Transcription Termination                                                                                                  91
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                   91
## Rna Polymerase Ii Transcription Termination                                                                                                 91
## Rna Polymerase Iii Chain Elongation                                                                                                         91
## Rna Polymerase Iii Transcription                                                                                                            91
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                            91
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                            91
## Rna Polymerase Iii Transcription Termination                                                                                                91
## Robo Receptors Bind Akap5                                                                                                                   91
## Role Of Abl In Robo Slit Signaling                                                                                                          91
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                               91
## Role Of Phospholipids In Phagocytosis                                                                                                       91
## Role Of Second Messengers In Netrin 1 Signaling                                                                                             91
## Rora Activates Gene Expression                                                                                                              91
## Rrna Modification In The Mitochondrion                                                                                                      91
## Rrna Modification In The Nucleus And Cytosol                                                                                                91
## Rrna Processing                                                                                                                             91
## Rrna Processing In The Mitochondrion                                                                                                        91
## Rsk Activation                                                                                                                              91
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                          91
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                    91
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                 91
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                       91
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                            91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                  91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                         91
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                    91
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                            91
## Runx2 Regulates Bone Development                                                                                                            91
## Runx2 Regulates Chondrocyte Maturation                                                                                                      91
## Runx2 Regulates Genes Involved In Cell Migration                                                                                            91
## Runx2 Regulates Osteoblast Differentiation                                                                                                  91
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                   91
## Runx3 Regulates Cdkn1a Transcription                                                                                                        91
## Runx3 Regulates Immune Response And Cell Migration                                                                                          91
## Runx3 Regulates Notch Signaling                                                                                                             91
## Runx3 Regulates P14 Arf                                                                                                                     91
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                 91
## S Phase                                                                                                                                     91
## Sars Cov 1 Genome Replication And Transcription                                                                                             91
## Sars Cov 1 Infection                                                                                                                        91
## Sars Cov 2 Infection                                                                                                                        91
## Sars Cov Infections                                                                                                                         91
## Scavenging By Class F Receptors                                                                                                             91
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                    91
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                             91
## Selective Autophagy                                                                                                                         91
## Selenoamino Acid Metabolism                                                                                                                 91
## Sema3a Pak Dependent Axon Repulsion                                                                                                         91
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                           91
## Sema4d In Semaphorin Signaling                                                                                                              91
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                      91
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                 91
## Senescence Associated Secretory Phenotype Sasp                                                                                              91
## Sensing Of Dna Double Strand Breaks                                                                                                         91
## Sensory Perception                                                                                                                          91
## Sensory Processing Of Sound                                                                                                                 91
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                              91
## Separation Of Sister Chromatids                                                                                                             91
## Serine Biosynthesis                                                                                                                         91
## Serotonin And Melatonin Biosynthesis                                                                                                        91
## Serotonin Neurotransmitter Release Cycle                                                                                                    91
## Serotonin Receptors                                                                                                                         91
## Shc Mediated Cascade Fgfr1                                                                                                                  91
## Shc Mediated Cascade Fgfr3                                                                                                                  91
## Shc Mediated Cascade Fgfr4                                                                                                                  91
## Shc Related Events Triggered By Igf1r                                                                                                       91
## Shc1 Events In Egfr Signaling                                                                                                               91
## Shc1 Events In Erbb2 Signaling                                                                                                              91
## Shc1 Events In Erbb4 Signaling                                                                                                              91
## Sialic Acid Metabolism                                                                                                                      91
## Signal Amplification                                                                                                                        91
## Signal Attenuation                                                                                                                          91
## Signal Regulatory Protein Family Interactions                                                                                               91
## Signal Transduction By L1                                                                                                                   91
## Signaling By Activin                                                                                                                        91
## Signaling By Bmp                                                                                                                            91
## Signaling By Braf And Raf Fusions                                                                                                           91
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                    91
## Signaling By Egfr In Cancer                                                                                                                 91
## Signaling By Erbb2                                                                                                                          91
## Signaling By Erbb2 Ecd Mutants                                                                                                              91
## Signaling By Erbb2 In Cancer                                                                                                                91
## Signaling By Erbb4                                                                                                                          91
## Signaling By Erythropoietin                                                                                                                 91
## Signaling By Fgfr                                                                                                                           91
## Signaling By Fgfr1                                                                                                                          91
## Signaling By Fgfr2                                                                                                                          91
## Signaling By Fgfr2 Iiia Tm                                                                                                                  91
## Signaling By Fgfr2 In Disease                                                                                                               91
## Signaling By Fgfr3                                                                                                                          91
## Signaling By Fgfr3 Fusions In Cancer                                                                                                        91
## Signaling By Fgfr4                                                                                                                          91
## Signaling By Fgfr4 In Disease                                                                                                               91
## Signaling By Flt3 Fusion Proteins                                                                                                           91
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                       91
## Signaling By Gpcr                                                                                                                           91
## Signaling By Hedgehog                                                                                                                       91
## Signaling By Hippo                                                                                                                          91
## Signaling By Insulin Receptor                                                                                                               91
## Signaling By Lrp5 Mutants                                                                                                                   91
## Signaling By Mapk Mutants                                                                                                                   91
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                  91
## Signaling By Met                                                                                                                            91
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                          91
## Signaling By Mras Complex Mutants                                                                                                           91
## Signaling By Mst1                                                                                                                           91
## Signaling By Nodal                                                                                                                          91
## Signaling By Notch                                                                                                                          91
## Signaling By Notch1                                                                                                                         91
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                             91
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                           91
## Signaling By Notch3                                                                                                                         91
## Signaling By Notch4                                                                                                                         91
## Signaling By Ntrk2 Trkb                                                                                                                     91
## Signaling By Ntrk3 Trkc                                                                                                                     91
## Signaling By Ntrks                                                                                                                          91
## Signaling By Nuclear Receptors                                                                                                              91
## Signaling By Receptor Tyrosine Kinases                                                                                                      91
## Signaling By Retinoic Acid                                                                                                                  91
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                           91
## Signaling By Rnf43 Mutants                                                                                                                  91
## Signaling By Robo Receptors                                                                                                                 91
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                            91
## Signaling By Tgfb Family Members                                                                                                            91
## Signaling By The B Cell Receptor Bcr                                                                                                        91
## Signaling By Vegf                                                                                                                           91
## Signaling By Wnt                                                                                                                            91
## Signaling By Wnt In Cancer                                                                                                                  91
## Signalling To Erks                                                                                                                          91
## Signalling To P38 Via Rit And Rin                                                                                                           91
## Signalling To Ras                                                                                                                           91
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                        91
## Slc Mediated Transmembrane Transport                                                                                                        91
## Slc Transporter Disorders                                                                                                                   91
## Smac Xiap Regulated Apoptotic Response                                                                                                      91
## Small Interfering Rna Sirna Biogenesis                                                                                                      91
## Smooth Muscle Contraction                                                                                                                   91
## Snrnp Assembly                                                                                                                              91
## Sodium Calcium Exchangers                                                                                                                   91
## Sodium Coupled Phosphate Cotransporters                                                                                                     91
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                 91
## Sodium Proton Exchangers                                                                                                                    91
## Sos Mediated Signalling                                                                                                                     91
## Sperm Motility And Taxes                                                                                                                    91
## Sphingolipid De Novo Biosynthesis                                                                                                           91
## Sphingolipid Metabolism                                                                                                                     91
## Spry Regulation Of Fgf Signaling                                                                                                            91
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                 91
## Stabilization Of P53                                                                                                                        91
## Stat5 Activation                                                                                                                            91
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                             91
## Stimuli Sensing Channels                                                                                                                    91
## Sting Mediated Induction Of Host Immune Responses                                                                                           91
## Striated Muscle Contraction                                                                                                                 91
## Sulfide Oxidation To Sulfate                                                                                                                91
## Sulfur Amino Acid Metabolism                                                                                                                91
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                          91
## Sumo Is Proteolytically Processed                                                                                                           91
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                91
## Sumoylation                                                                                                                                 91
## Sumoylation Of Chromatin Organization Proteins                                                                                              91
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                      91
## Sumoylation Of Dna Replication Proteins                                                                                                     91
## Sumoylation Of Intracellular Receptors                                                                                                      91
## Sumoylation Of Rna Binding Proteins                                                                                                         91
## Sumoylation Of Sumoylation Proteins                                                                                                         91
## Sumoylation Of Transcription Cofactors                                                                                                      91
## Sumoylation Of Transcription Factors                                                                                                        91
## Sumoylation Of Ubiquitinylation Proteins                                                                                                    91
## Suppression Of Apoptosis                                                                                                                    91
## Suppression Of Phagosomal Maturation                                                                                                        91
## Surfactant Metabolism                                                                                                                       91
## Switching Of Origins To A Post Replicative State                                                                                            91
## Synaptic Adhesion Like Molecules                                                                                                            91
## Syndecan Interactions                                                                                                                       91
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                           91
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                       91
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                       91
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                    91
## Synthesis Of Bile Acids And Bile Salts                                                                                                      91
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                            91
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                            91
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                        91
## Synthesis Of Diphthamide Eef2                                                                                                               91
## Synthesis Of Dolichyl Phosphate                                                                                                             91
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                               91
## Synthesis Of Gdp Mannose                                                                                                                    91
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                               91
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                  91
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                     91
## Synthesis Of Ketone Bodies                                                                                                                  91
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                  91
## Synthesis Of Lipoxins Lx                                                                                                                    91
## Synthesis Of Pa                                                                                                                             91
## Synthesis Of Pc                                                                                                                             91
## Synthesis Of Pe                                                                                                                             91
## Synthesis Of Pg                                                                                                                             91
## Synthesis Of Pi                                                                                                                             91
## Synthesis Of Pips At The Early Endosome Membrane                                                                                            91
## Synthesis Of Pips At The Er Membrane                                                                                                        91
## Synthesis Of Pips At The Golgi Membrane                                                                                                     91
## Synthesis Of Pips At The Late Endosome Membrane                                                                                             91
## Synthesis Of Pips At The Plasma Membrane                                                                                                    91
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                  91
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                             91
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                       91
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                91
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                  91
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                              91
## Tachykinin Receptors Bind Tachykinins                                                                                                       91
## Tbc Rabgaps                                                                                                                                 91
## Tcf Dependent Signaling In Response To Wnt                                                                                                  91
## Tcr Signaling                                                                                                                               91
## Telomere C Strand Lagging Strand Synthesis                                                                                                  91
## Telomere C Strand Synthesis Initiation                                                                                                      91
## Telomere Extension By Telomerase                                                                                                            91
## Telomere Maintenance                                                                                                                        91
## Terminal Pathway Of Complement                                                                                                              91
## Termination Of O Glycan Biosynthesis                                                                                                        91
## Termination Of Translesion Dna Synthesis                                                                                                    91
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                          91
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                             91
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                91
## Tgf Beta Receptor Signaling Activates Smads                                                                                                 91
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                     91
## The Activation Of Arylsulfatases                                                                                                            91
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                        91
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                91
## The Fatty Acid Cycling Model                                                                                                                91
## The Phototransduction Cascade                                                                                                               91
## The Retinoid Cycle In Cones Daylight Vision                                                                                                 91
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                   91
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                               91
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                             91
## Thromboxane Signalling Through Tp Receptor                                                                                                  91
## Thyroxine Biosynthesis                                                                                                                      91
## Tie2 Signaling                                                                                                                              91
## Tight Junction Interactions                                                                                                                 91
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                     91
## Tp53 Regulates Metabolic Genes                                                                                                              91
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                            91
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                             91
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                            91
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                 91
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                            91
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                      91
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                      91
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain        91
## Traf3 Dependent Irf Activation Pathway                                                                                                      91
## Traf6 Mediated Irf7 Activation                                                                                                              91
## Trafficking Of Ampa Receptors                                                                                                               91
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                              91
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                         91
## Trail Signaling                                                                                                                             91
## Trans Golgi Network Vesicle Budding                                                                                                         91
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                     91
## Transcription Of The Hiv Genome                                                                                                             91
## Transcriptional Regulation By E2f6                                                                                                          91
## Transcriptional Regulation By Runx1                                                                                                         91
## Transcriptional Regulation By Runx2                                                                                                         91
## Transcriptional Regulation By Runx3                                                                                                         91
## Transcriptional Regulation By Small Rnas                                                                                                    91
## Transcriptional Regulation By Tp53                                                                                                          91
## Transcriptional Regulation By Ventx                                                                                                         91
## Transcriptional Regulation Of Testis Differentiation                                                                                        91
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                               91
## Transferrin Endocytosis And Recycling                                                                                                       91
## Translation                                                                                                                                 91
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                              91
## Translation Of Sars Cov 1 Structural Proteins                                                                                               91
## Translation Of Sars Cov 2 Structural Proteins                                                                                               91
## Translesion Synthesis By Polh                                                                                                               91
## Translesion Synthesis By Polk                                                                                                               91
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                          91
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                        91
## Transmission Across Chemical Synapses                                                                                                       91
## Transport And Synthesis Of Paps                                                                                                             91
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                    91
## Transport Of Connexons To The Plasma Membrane                                                                                               91
## Transport Of Fatty Acids                                                                                                                    91
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                         91
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                               91
## Transport Of Mature Transcript To Cytoplasm                                                                                                 91
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                    91
## Transport Of Nucleotide Sugars                                                                                                              91
## Transport Of Organic Anions                                                                                                                 91
## Transport Of Small Molecules                                                                                                                91
## Transport Of The Slbp Dependant Mature Mrna                                                                                                 91
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                     91
## Transport To The Golgi And Subsequent Modification                                                                                          91
## Triglyceride Biosynthesis                                                                                                                   91
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                       91
## Trna Aminoacylation                                                                                                                         91
## Trna Modification In The Mitochondrion                                                                                                      91
## Trna Modification In The Nucleus And Cytosol                                                                                                91
## Trna Processing                                                                                                                             91
## Trna Processing In The Mitochondrion                                                                                                        91
## Trna Processing In The Nucleus                                                                                                              91
## Trp Channels                                                                                                                                91
## Tryptophan Catabolism                                                                                                                       91
## Type I Hemidesmosome Assembly                                                                                                               91
## Tyrosine Catabolism                                                                                                                         91
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                         91
## Ub Specific Processing Proteases                                                                                                            91
## Ubiquinol Biosynthesis                                                                                                                      91
## Uch Proteinases                                                                                                                             91
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                               91
## Unwinding Of Dna                                                                                                                            91
## Uptake And Actions Of Bacterial Toxins                                                                                                      91
## Uptake And Function Of Anthrax Toxins                                                                                                       91
## Uptake And Function Of Diphtheria Toxin                                                                                                     91
## Urea Cycle                                                                                                                                  91
## Vasopressin Like Receptors                                                                                                                  91
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                91
## Vegf Ligand Receptor Interactions                                                                                                           91
## Vegfr2 Mediated Cell Proliferation                                                                                                          91
## Vesicle Mediated Transport                                                                                                                  91
## Viral Messenger Rna Synthesis                                                                                                               91
## Visual Phototransduction                                                                                                                    91
## Vitamin B1 Thiamin Metabolism                                                                                                               91
## Vitamin B2 Riboflavin Metabolism                                                                                                            91
## Vitamin B5 Pantothenate Metabolism                                                                                                          91
## Vitamin C Ascorbate Metabolism                                                                                                              91
## Vitamin D Calciferol Metabolism                                                                                                             91
## Vitamins                                                                                                                                    91
## Vldl Assembly                                                                                                                               91
## Vldl Clearance                                                                                                                              91
## Vldlr Internalisation And Degradation                                                                                                       91
## Voltage Gated Potassium Channels                                                                                                            91
## Vxpx Cargo Targeting To Cilium                                                                                                              91
## Wax And Plasmalogen Biosynthesis                                                                                                            91
## Wnt Mediated Activation Of Dvl                                                                                                              91
## Xenobiotics                                                                                                                                 91
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                               91
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                    91
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                             91
## Zinc Transporters                                                                                                                           91
##                                                                                                                                      geneset
## Interleukin 10 Signaling                                                                                                                  46
## Interleukin 4 And Interleukin 13 Signaling                                                                                               111
## Interleukin 18 Signaling                                                                                                                   8
## Chemokine Receptors Bind Chemokines                                                                                                       58
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              17
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         22
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     32
## P75ntr Signals Via Nf Kb                                                                                                                  16
## Purinergic Signaling In Leishmaniasis Infection                                                                                           26
## Interleukin 1 Processing                                                                                                                   9
## Tnfs Bind Their Physiological Receptors                                                                                                   29
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 10
## Diseases Of Immune System                                                                                                                 31
## Regulation Of Tlr By Endogenous Ligand                                                                                                    21
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  56
## Cd28 Dependent Vav1 Pathway                                                                                                               12
## Killing Mechanisms                                                                                                                        12
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         94
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23
## Myd88 Independent Tlr4 Cascade                                                                                                            97
## Nf Kb Is Activated And Signals Survival                                                                                                   13
## P75ntr Recruits Signalling Complexes                                                                                                      13
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   13
## Trafficking And Processing Of Endosomal Tlr                                                                                               13
## Nod1 2 Signaling Pathway                                                                                                                  36
## Interleukin 15 Signaling                                                                                                                  14
## Toll Like Receptor Cascades                                                                                                              155
## Pyroptosis                                                                                                                                27
## Alternative Complement Activation                                                                                                          5
## Fasl Cd95l Signaling                                                                                                                       5
## G2 M Dna Replication Checkpoint                                                                                                            5
## Galactose Catabolism                                                                                                                       5
## Hdl Clearance                                                                                                                              5
## Mecp2 Regulates Transcription Factors                                                                                                      5
## Nostrin Mediated Enos Trafficking                                                                                                          5
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            5
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          16
## Sumoylation Of Dna Methylation Proteins                                                                                                   16
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     17
## Biosynthesis Of Epa Derived Spms                                                                                                           6
## Clec7a Inflammasome Pathway                                                                                                                6
## Fibronectin Matrix Formation                                                                                                               6
## Phosphorylation Of Emi1                                                                                                                    6
## Regulated Necrosis                                                                                                                        56
## Scavenging By Class B Receptors                                                                                                            6
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       6
## Tnfr1 Mediated Ceramide Production                                                                                                         6
## Irak4 Deficiency Tlr2 4                                                                                                                   18
## Interleukin 2 Family Signaling                                                                                                            44
## Interleukin 17 Signaling                                                                                                                  71
## Interleukin 1 Family Signaling                                                                                                           140
## Scavenging By Class A Receptors                                                                                                           19
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              19
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  7
## Creb Phosphorylation                                                                                                                       7
## Ikba Variant Leads To Eda Id                                                                                                               7
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        7
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                     103
## Activation Of C3 And C5                                                                                                                    8
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               8
## Ctla4 Inhibitory Signaling                                                                                                                21
## Hdl Assembly                                                                                                                               8
## Heme Signaling                                                                                                                            48
## Inactivation Of Cdc42 And Rac1                                                                                                             8
## Inflammasomes                                                                                                                             21
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          8
## Runx3 Regulates Wnt Signaling                                                                                                              8
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                21
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               9
## Cd163 Mediating An Anti Inflammatory Response                                                                                              9
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                9
## Interleukin 23 Signaling                                                                                                                   9
## Interleukin 9 Signaling                                                                                                                    9
## Trif Mediated Programmed Cell Death                                                                                                        9
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23
## Ovarian Tumor Domain Proteases                                                                                                            38
## Traf6 Mediated Nf Kb Activation                                                                                                           24
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    10
## Akt Phosphorylates Targets In The Nucleus                                                                                                 10
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  10
## Chylomicron Assembly                                                                                                                      10
## Chylomicron Remodeling                                                                                                                    10
## Hdl Remodeling                                                                                                                            10
## Interleukin 21 Signaling                                                                                                                  10
## Mapk3 Erk1 Activation                                                                                                                     10
## Mastl Facilitates Mitotic Progression                                                                                                     10
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                10
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             26
## Condensation Of Prometaphase Chromosomes                                                                                                  11
## Dermatan Sulfate Biosynthesis                                                                                                             11
## Dscam Interactions                                                                                                                        11
## Endosomal Vacuolar Pathway                                                                                                                11
## Enos Activation                                                                                                                           11
## Interleukin 27 Signaling                                                                                                                  11
## Interleukin 6 Signaling                                                                                                                   11
## Receptor Mediated Mitophagy                                                                                                               11
## Regulation By C Flip                                                                                                                      11
## Rho Gtpases Activate Ktn1                                                                                                                 11
## Signaling By Leptin                                                                                                                       11
## Sumoylation Of Immune Response Proteins                                                                                                   11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          11
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                        101
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          27
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         12
## G0 And Early G1                                                                                                                           27
## Interleukin 2 Signaling                                                                                                                   12
## Interleukin 35 Signalling                                                                                                                 12
## Interleukin Receptor Shc Signaling                                                                                                        27
## Notch2 Intracellular Domain Regulates Transcription                                                                                       12
## Signaling By Interleukins                                                                                                                463
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 12
## Tandem Pore Domain Potassium Channels                                                                                                     12
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  12
## Costimulation By The Cd28 Family                                                                                                          74
## Pd 1 Signaling                                                                                                                            28
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      13
## Apoptosis Induced Dna Fragmentation                                                                                                       13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             13
## Dissolution Of Fibrin Clot                                                                                                                13
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            13
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  13
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     13
## Dap12 Interactions                                                                                                                        45
## Ripk1 Mediated Regulated Necrosis                                                                                                         29
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  30
## Dcc Mediated Attractive Signaling                                                                                                         14
## Early Phase Of Hiv Life Cycle                                                                                                             14
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       14
## Irak1 Recruits Ikk Complex                                                                                                                14
## Repression Of Wnt Target Genes                                                                                                            14
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       31
## Nicotinate Metabolism                                                                                                                     31
## Peptide Ligand Binding Receptors                                                                                                         198
## Depolymerisation Of The Nuclear Lamina                                                                                                    15
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  15
## Perk Regulates Gene Expression                                                                                                            32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    32
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        15
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   15
## Cargo Concentration In The Er                                                                                                             33
## Cd28 Co Stimulation                                                                                                                       33
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           16
## Nrif Signals Cell Death From The Nucleus                                                                                                  16
## The Nlrp3 Inflammasome                                                                                                                    16
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      16
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      17
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           17
## Regulation Of Tnfr1 Signaling                                                                                                             35
## Abc Transporters In Lipid Homeostasis                                                                                                     18
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             18
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          18
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           18
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               18
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    18
## Interleukin 1 Signaling                                                                                                                  102
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   19
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             19
## Nicotinamide Salvaging                                                                                                                    19
## Other Semaphorin Interactions                                                                                                             19
## Phase 4 Resting Membrane Potential                                                                                                        19
## Plasma Lipoprotein Assembly                                                                                                               19
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      19
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        38
## G Beta Gamma Signalling Through Cdc42                                                                                                     20
## Phosphorylation Of The Apc C                                                                                                              20
## Pka Mediated Phosphorylation Of Creb                                                                                                      20
## Signaling By Kit In Disease                                                                                                               20
## Signaling By Pdgfr In Disease                                                                                                             20
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     20
## Branched Chain Amino Acid Catabolism                                                                                                      21
## Interleukin 12 Family Signaling                                                                                                           57
## Interleukin 37 Signaling                                                                                                                  21
## Rho Gtpases Activate Paks                                                                                                                 21
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         22
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               22
## E2f Mediated Regulation Of Dna Replication                                                                                                22
## Pink1 Prkn Mediated Mitophagy                                                                                                             22
## Incretin Synthesis Secretion And Inactivation                                                                                             23
## Raf Independent Mapk1 3 Activation                                                                                                        23
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              24
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    24
## Growth Hormone Receptor Signaling                                                                                                         24
## Interleukin 6 Family Signaling                                                                                                            24
## Tnf Signaling                                                                                                                             44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                44
## Triglyceride Catabolism                                                                                                                   24
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  25
## Basigin Interactions                                                                                                                      25
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   25
## Inactivation Of Csf3 G Csf Signaling                                                                                                      25
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             26
## Interleukin 20 Family Signaling                                                                                                           26
## Wnt Ligand Biogenesis And Trafficking                                                                                                     26
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     27
## Foxo Mediated Transcription                                                                                                               66
## Interleukin 12 Signaling                                                                                                                  47
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          48
## Vegfr2 Mediated Vascular Permeability                                                                                                     27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          28
## Circadian Clock                                                                                                                           70
## Dap12 Signaling                                                                                                                           29
## Death Receptor Signalling                                                                                                                141
## Downstream Signal Transduction                                                                                                            29
## G1 S Specific Transcription                                                                                                               29
## Mitophagy                                                                                                                                 29
## Myogenesis                                                                                                                                29
## Netrin 1 Signaling                                                                                                                        50
## Scavenging Of Heme From Plasma                                                                                                            69
## Activation Of Bh3 Only Proteins                                                                                                           30
## Signaling By Csf3 G Csf                                                                                                                   30
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            31
## Egfr Downregulation                                                                                                                       31
## Fgfr1 Mutant Receptor Activation                                                                                                          31
## G Protein Beta Gamma Signalling                                                                                                           32
## Plasma Lipoprotein Remodeling                                                                                                             32
## Regulation Of Mecp2 Expression And Activity                                                                                               32
## Rho Gtpases Activate Iqgaps                                                                                                               32
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      31
## Activation Of Matrix Metalloproteinases                                                                                                   33
## Intrinsic Pathway For Apoptosis                                                                                                           55
## Plasma Lipoprotein Clearance                                                                                                              33
## Rhoj Gtpase Cycle                                                                                                                         55
## Rhov Gtpase Cycle                                                                                                                         33
## Signaling By Notch2                                                                                                                       33
## Complement Cascade                                                                                                                       115
## Gpvi Mediated Activation Cascade                                                                                                          35
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              34
## P75 Ntr Receptor Mediated Signalling                                                                                                      97
## Rhou Gtpase Cycle                                                                                                                         34
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      98
## Ca Dependent Events                                                                                                                       37
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   81
## Interleukin 7 Signaling                                                                                                                   36
## Metalloprotease Dubs                                                                                                                      37
## Nuclear Pore Complex Npc Disassembly                                                                                                      36
## Regulation Of Tp53 Expression And Degradation                                                                                             37
## Rho Gtpases Activate Wasps And Waves                                                                                                      36
## Rhoh Gtpase Cycle                                                                                                                         37
## Rhoq Gtpase Cycle                                                                                                                         59
## Ros And Rns Production In Phagocytes                                                                                                      36
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          39
## Ca2 Pathway                                                                                                                               62
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              63
## Generation Of Second Messenger Molecules                                                                                                  39
## Ngf Stimulated Transcription                                                                                                              39
## Signaling By Fgfr1 In Disease                                                                                                             38
## Transcriptional Regulation By Mecp2                                                                                                       63
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              38
## Triglyceride Metabolism                                                                                                                   38
## Beta Defensins                                                                                                                            42
## Dag And Ip3 Signaling                                                                                                                     41
## Dna Methylation                                                                                                                           65
## Ephb Mediated Forward Signaling                                                                                                           42
## Rhof Gtpase Cycle                                                                                                                         42
## Rnd1 Gtpase Cycle                                                                                                                         42
## Rnd3 Gtpase Cycle                                                                                                                         42
## Copii Mediated Vesicle Transport                                                                                                          68
## Rnd2 Gtpase Cycle                                                                                                                         43
## Signaling By Scf Kit                                                                                                                      43
## Transcriptional Regulation Of Granulopoiesis                                                                                              90
## Extra Nuclear Estrogen Signaling                                                                                                          75
## Interferon Alpha Beta Signaling                                                                                                           73
## Interferon Gamma Signaling                                                                                                                93
## Irs Mediated Signalling                                                                                                                   48
## Mapk6 Mapk4 Signaling                                                                                                                     93
## Metabolism Of Fat Soluble Vitamins                                                                                                        48
## Notch1 Intracellular Domain Regulates Transcription                                                                                       48
## Prc2 Methylates Histones And Dna                                                                                                          73
## Rhog Gtpase Cycle                                                                                                                         74
## Signaling By Tgf Beta Receptor Complex                                                                                                    73
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          49
## Antigen Processing Cross Presentation                                                                                                    106
## Apoptotic Execution Phase                                                                                                                 52
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           50
## Clec7a Dectin 1 Signaling                                                                                                                100
## Defensins                                                                                                                                 52
## Diseases Of Programmed Cell Death                                                                                                        102
## G Protein Mediated Events                                                                                                                 54
## Initial Triggering Of Complement                                                                                                          80
## Insulin Receptor Signalling Cascade                                                                                                       54
## Nuclear Envelope Breakdown                                                                                                                53
## Rhod Gtpase Cycle                                                                                                                         51
## Signaling By Egfr                                                                                                                         50
## Signaling By Ptk6                                                                                                                         54
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           54
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    55
## Antimicrobial Peptides                                                                                                                    97
## Arachidonic Acid Metabolism                                                                                                               59
## Asymmetric Localization Of Pcp Proteins                                                                                                   64
## Class B 2 Secretin Family Receptors                                                                                                       94
## Collagen Degradation                                                                                                                      64
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            62
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                 191
## Ncam Signaling For Neurite Out Growth                                                                                                     63
## Nrage Signals Death Through Jnk                                                                                                           59
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 61
## Programmed Cell Death                                                                                                                    208
## Rac2 Gtpase Cycle                                                                                                                         88
## Rac3 Gtpase Cycle                                                                                                                         94
## Rhob Gtpase Cycle                                                                                                                         70
## Semaphorin Interactions                                                                                                                   64
## Signaling By Fgfr In Disease                                                                                                              63
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         58
## Signaling By Pdgf                                                                                                                         58
## Sirt1 Negatively Regulates Rrna Expression                                                                                                68
## Unfolded Protein Response Upr                                                                                                             92
## 2 Ltr Circle Formation                                                                                                                     7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           26
## Abacavir Metabolism                                                                                                                        5
## Abacavir Transmembrane Transport                                                                                                           5
## Abacavir Transport And Metabolism                                                                                                         10
## Abc Family Proteins Mediated Transport                                                                                                   103
## Abc Transporter Disorders                                                                                                                 77
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23
## Acetylcholine Binding And Downstream Events                                                                                               14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     5
## Acetylcholine Neurotransmitter Release Cycle                                                                                              17
## Acetylcholine Regulates Insulin Secretion                                                                                                 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        6
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          31
## Activated Ntrk2 Signals Through Cdk5                                                                                                       6
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             11
## Activated Ntrk2 Signals Through Fyn                                                                                                        7
## Activated Ntrk2 Signals Through Pi3k                                                                                                       7
## Activated Ntrk2 Signals Through Ras                                                                                                        9
## Activated Ntrk3 Signals Through Pi3k                                                                                                       6
## Activated Ntrk3 Signals Through Ras                                                                                                        8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             67
## Activation Of Ampk Downstream Of Nmdars                                                                                                   29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                     122
## Activation Of Atr In Response To Replication Stress                                                                                       37
## Activation Of Bad And Translocation To Mitochondria                                                                                       15
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                6
## Activation Of Gene Expression By Srebf Srebp                                                                                              42
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    30
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      94
## Activation Of Noxa And Translocation To Mitochondria                                                                                       5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      10
## Activation Of Puma And Translocation To Mitochondria                                                                                       9
## Activation Of Rac1                                                                                                                        13
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    7
## Activation Of Ras In B Cells                                                                                                               5
## Activation Of Smo                                                                                                                         18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     60
## Activation Of The Phototransduction Cascade                                                                                               11
## Activation Of The Pre Replicative Complex                                                                                                 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              12
## Activation Of Trka Receptors                                                                                                               6
## Acyl Chain Remodeling Of Cl                                                                                                                6
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       7
## Acyl Chain Remodelling Of Pc                                                                                                              27
## Acyl Chain Remodelling Of Pe                                                                                                              29
## Acyl Chain Remodelling Of Pg                                                                                                              18
## Acyl Chain Remodelling Of Pi                                                                                                              17
## Acyl Chain Remodelling Of Ps                                                                                                              22
## Adaptive Immune System                                                                                                                   825
## Adenylate Cyclase Activating Pathway                                                                                                      10
## Adenylate Cyclase Inhibitory Pathway                                                                                                      14
## Adherens Junctions Interactions                                                                                                           33
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                  133
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 25
## Adp Signalling Through P2y Purinoceptor 12                                                                                                22
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       28
## Adrenoceptors                                                                                                                              9
## Aflatoxin Activation And Detoxification                                                                                                   19
## Aggrephagy                                                                                                                                44
## Akt Phosphorylates Targets In The Cytosol                                                                                                 14
## Alpha Defensins                                                                                                                           10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                13
## Alpha Oxidation Of Phytanate                                                                                                               6
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  11
## Amine Ligand Binding Receptors                                                                                                            42
## Amino Acid Conjugation                                                                                                                     9
## Amino Acid Transport Across The Plasma Membrane                                                                                           33
## Amino Acids Regulate Mtorc1                                                                                                               55
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   8
## Amyloid Fiber Formation                                                                                                                  110
## Anchoring Fibril Formation                                                                                                                15
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        97
## Androgen Biosynthesis                                                                                                                     11
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                       223
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          86
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                 308
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               82
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  74
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         88
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     7
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            5
## Apoptosis                                                                                                                                179
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              11
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   38
## Apoptotic Factor Mediated Response                                                                                                        20
## Aquaporin Mediated Transport                                                                                                              52
## Arachidonate Production From Dag                                                                                                           5
## Arms Mediated Activation                                                                                                                   7
## Aryl Hydrocarbon Receptor Signalling                                                                                                       8
## Asparagine N Linked Glycosylation                                                                                                        305
## Aspartate And Asparagine Metabolism                                                                                                       11
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  44
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          19
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              61
## Assembly Of The Hiv Virion                                                                                                                16
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   6
## Assembly Of The Pre Replicative Complex                                                                                                   68
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 10
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      12
## Attachment And Entry                                                                                                                       5
## Attachment Of Gpi Anchor To Upar                                                                                                           7
## Attenuation Phase                                                                                                                         28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 55
## Aurka Activation By Tpx2                                                                                                                  72
## Autophagy                                                                                                                                151
## B Wich Complex Positively Regulates Rrna Expression                                                                                       91
## Base Excision Repair                                                                                                                      91
## Base Excision Repair Ap Site Formation                                                                                                    63
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23
## Beta Catenin Independent Wnt Signaling                                                                                                   146
## Beta Catenin Phosphorylation Cascade                                                                                                      17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             5
## Beta Oxidation Of Pristanoyl Coa                                                                                                           9
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             11
## Bicarbonate Transporters                                                                                                                  10
## Bile Acid And Bile Salt Metabolism                                                                                                        43
## Biological Oxidations                                                                                                                    222
## Biosynthesis Of Maresin Like Spms                                                                                                          6
## Biosynthesis Of Maresins                                                                                                                   8
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        78
## Biotin Transport And Metabolism                                                                                                           11
## Blood Group Systems Biosynthesis                                                                                                          21
## Budding And Maturation Of Hiv Virion                                                                                                      28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               17
## Butyrophilin Btn Family Interactions                                                                                                      12
## C Type Lectin Receptors Clrs                                                                                                             140
## Ca2 Activated K Channels                                                                                                                   9
## Calcineurin Activates Nfat                                                                                                                 9
## Calcitonin Like Ligand Receptors                                                                                                          10
## Calnexin Calreticulin Cycle                                                                                                               26
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               46
## Cardiac Conduction                                                                                                                       127
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                      105
## Cargo Trafficking To The Periciliary Membrane                                                                                             51
## Carnitine Metabolism                                                                                                                      14
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      10
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        12
## Cation Coupled Chloride Cotransporters                                                                                                     7
## Cd209 Dc Sign Signaling                                                                                                                   21
## Cd22 Mediated Bcr Regulation                                                                                                              61
## Cdc42 Gtpase Cycle                                                                                                                       159
## Cdc6 Association With The Orc Origin Complex                                                                                              11
## Cell Cell Communication                                                                                                                  130
## Cell Cell Junction Organization                                                                                                           65
## Cell Cycle                                                                                                                               693
## Cell Cycle Checkpoints                                                                                                                   292
## Cell Cycle Mitotic                                                                                                                       561
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             76
## Cell Extracellular Matrix Interactions                                                                                                    18
## Cell Junction Organization                                                                                                                92
## Cell Surface Interactions At The Vascular Wall                                                                                           194
## Cellular Hexose Transport                                                                                                                 21
## Cellular Response To Chemical Stress                                                                                                     160
## Cellular Response To Heat Stress                                                                                                         101
## Cellular Response To Hypoxia                                                                                                              75
## Cellular Response To Starvation                                                                                                          157
## Cellular Responses To External Stimuli                                                                                                   706
## Cellular Senescence                                                                                                                      198
## Cgmp Effects                                                                                                                              16
## Chaperone Mediated Autophagy                                                                                                              22
## Chl1 Interactions                                                                                                                          9
## Cholesterol Biosynthesis                                                                                                                  25
## Choline Catabolism                                                                                                                         6
## Chondroitin Sulfate Biosynthesis                                                                                                          20
## Chrebp Activates Metabolic Gene Expression                                                                                                 8
## Chromatin Modifying Enzymes                                                                                                              274
## Chromosome Maintenance                                                                                                                   140
## Chylomicron Clearance                                                                                                                      5
## Cilium Assembly                                                                                                                          202
## Citric Acid Cycle Tca Cycle                                                                                                               22
## Class A 1 Rhodopsin Like Receptors                                                                                                       331
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      39
## Class I Mhc Mediated Antigen Processing Presentation                                                                                     377
## Class I Peroxisomal Membrane Protein Import                                                                                               20
## Clathrin Mediated Endocytosis                                                                                                            145
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        21
## Coenzyme A Biosynthesis                                                                                                                    8
## Cohesin Loading Onto Chromatin                                                                                                            10
## Collagen Biosynthesis And Modifying Enzymes                                                                                               67
## Collagen Chain Trimerization                                                                                                              44
## Collagen Formation                                                                                                                        90
## Common Pathway Of Fibrin Clot Formation                                                                                                   22
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 8
## Complex I Biogenesis                                                                                                                      57
## Condensation Of Prophase Chromosomes                                                                                                      74
## Conjugation Of Benzoate With Glycine                                                                                                       6
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         78
## Constitutive Signaling By Egfrviii                                                                                                        15
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          19
## Constitutive Signaling By Overexpressed Erbb2                                                                                             11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        33
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                            100
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           53
## Copi Mediated Anterograde Transport                                                                                                      102
## Creatine Metabolism                                                                                                                       11
## Creation Of C4 And C2 Activators                                                                                                          71
## Creb3 Factors Activate Genes                                                                                                               9
## Cristae Formation                                                                                                                         31
## Crmps In Sema3a Signaling                                                                                                                 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                50
## Crosslinking Of Collagen Fibrils                                                                                                          18
## Cs Ds Degradation                                                                                                                         14
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          85
## Cyclin D Associated Events In G1                                                                                                          47
## Cyp2e1 Reactions                                                                                                                          11
## Cytochrome C Mediated Apoptotic Response                                                                                                  13
## Cytochrome P450 Arranged By Substrate Type                                                                                                66
## Cytokine Signaling In Immune System                                                                                                      719
## Cytoprotection By Hmox1                                                                                                                  124
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    13
## Cytosolic Sulfonation Of Small Molecules                                                                                                  24
## Cytosolic Trna Aminoacylation                                                                                                             24
## Darpp 32 Events                                                                                                                           24
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  42
## Deadenylation Dependent Mrna Decay                                                                                                        56
## Deadenylation Of Mrna                                                                                                                     25
## Dectin 2 Family                                                                                                                           26
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                8
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               20
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             17
## Defective Cftr Causes Cystic Fibrosis                                                                                                     61
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       8
## Defective Chst3 Causes Sedcjd                                                                                                              8
## Defective Chst6 Causes Mcdc1                                                                                                               8
## Defective Chsy1 Causes Tpbs                                                                                                                8
## Defective Csf2rb Causes Smdp5                                                                                                              8
## Defective Ext2 Causes Exostoses 2                                                                                                         14
## Defective F9 Activation                                                                                                                    6
## Defective Factor Ix Causes Hemophilia B                                                                                                    9
## Defective Factor Viii Causes Hemophilia A                                                                                                  7
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                16
## Defective Lfng Causes Scdo3                                                                                                                5
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                5
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  8
## Defects In Biotin Btn Metabolism                                                                                                           8
## Defects In Cobalamin B12 Metabolism                                                                                                       14
## Defects In Vitamin And Cofactor Metabolism                                                                                                22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  16
## Degradation Of Axin                                                                                                                       55
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    85
## Degradation Of Cysteine And Homocysteine                                                                                                  14
## Degradation Of Dvl                                                                                                                        57
## Degradation Of Gli1 By The Proteasome                                                                                                     60
## Degradation Of The Extracellular Matrix                                                                                                  140
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          73
## Detoxification Of Reactive Oxygen Species                                                                                                 37
## Deubiquitination                                                                                                                         298
## Developmental Biology                                                                                                                   1143
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              7
## Digestion                                                                                                                                 23
## Digestion And Absorption                                                                                                                  28
## Digestion Of Dietary Carbohydrate                                                                                                         11
## Digestion Of Dietary Lipid                                                                                                                 7
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     41
## Diseases Associated With N Glycosylation Of Proteins                                                                                      17
## Diseases Associated With O Glycosylation Of Proteins                                                                                      68
## Diseases Associated With Surfactant Metabolism                                                                                            10
## Diseases Of Base Excision Repair                                                                                                           5
## Diseases Of Carbohydrate Metabolism                                                                                                       34
## Diseases Of Dna Repair                                                                                                                    12
## Diseases Of Glycosylation                                                                                                                143
## Diseases Of Metabolism                                                                                                                   246
## Diseases Of Mismatch Repair Mmr                                                                                                            5
## Diseases Of Mitotic Cell Cycle                                                                                                            38
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                         394
## Disinhibition Of Snare Formation                                                                                                           5
## Disorders Of Transmembrane Transporters                                                                                                  176
## Displacement Of Dna Glycosylase By Apex1                                                                                                   9
## Dna Damage Bypass                                                                                                                         48
## Dna Damage Recognition In Gg Ner                                                                                                          38
## Dna Damage Reversal                                                                                                                        8
## Dna Damage Telomere Stress Induced Senescence                                                                                             80
## Dna Double Strand Break Repair                                                                                                           167
## Dna Double Strand Break Response                                                                                                          78
## Dna Repair                                                                                                                               332
## Dna Replication                                                                                                                          128
## Dna Replication Initiation                                                                                                                 8
## Dna Replication Pre Initiation                                                                                                            85
## Dna Strand Elongation                                                                                                                     32
## Dopamine Neurotransmitter Release Cycle                                                                                                   23
## Dopamine Receptors                                                                                                                         5
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   13
## Downregulation Of Erbb2 Signaling                                                                                                         29
## Downregulation Of Erbb4 Signaling                                                                                                          9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             26
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        81
## Downstream Signaling Of Activated Fgfr1                                                                                                   31
## Downstream Signaling Of Activated Fgfr2                                                                                                   30
## Downstream Signaling Of Activated Fgfr3                                                                                                   25
## Downstream Signaling Of Activated Fgfr4                                                                                                   27
## Dual Incision In Gg Ner                                                                                                                   41
## Dual Incision In Tc Ner                                                                                                                   65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         59
## Ecm Proteoglycans                                                                                                                         76
## Effects Of Pip2 Hydrolysis                                                                                                                27
## Egfr Interacts With Phospholipase C Gamma                                                                                                  9
## Egfr Transactivation By Gastrin                                                                                                            9
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            29
## Eicosanoid Ligand Binding Receptors                                                                                                       15
## Eicosanoids                                                                                                                               12
## Elastic Fibre Formation                                                                                                                   45
## Electric Transmission Across Gap Junctions                                                                                                 5
## Elevation Of Cytosolic Ca2 Levels                                                                                                         16
## Endogenous Sterols                                                                                                                        28
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          29
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    51
## Eph Ephrin Signaling                                                                                                                      92
## Epha Mediated Growth Cone Collapse                                                                                                        29
## Ephrin Signaling                                                                                                                          19
## Epigenetic Regulation Of Gene Expression                                                                                                 148
## Er Quality Control Compartment Erqc                                                                                                       21
## Er To Golgi Anterograde Transport                                                                                                        155
## Erbb2 Activates Ptk6 Signaling                                                                                                            13
## Erbb2 Regulates Cell Motility                                                                                                             15
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               76
## Erk Mapk Targets                                                                                                                          22
## Erks Are Inactivated                                                                                                                      13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   12
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        7
## Erythropoietin Activates Ras                                                                                                              14
## Erythropoietin Activates Stat5                                                                                                             7
## Esr Mediated Signaling                                                                                                                   221
## Establishment Of Sister Chromatid Cohesion                                                                                                11
## Estrogen Biosynthesis                                                                                                                      6
## Estrogen Dependent Gene Expression                                                                                                       150
## Estrogen Stimulated Signaling Through Prkcz                                                                                                6
## Ethanol Oxidation                                                                                                                         12
## Eukaryotic Translation Elongation                                                                                                         94
## Eukaryotic Translation Initiation                                                                                                        120
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           33
## Extension Of Telomeres                                                                                                                    51
## Extracellular Matrix Organization                                                                                                        301
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 5
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                    170
## Fanconi Anemia Pathway                                                                                                                    39
## Fatty Acid Metabolism                                                                                                                    177
## Fatty Acids                                                                                                                               15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                8
## Fatty Acyl Coa Biosynthesis                                                                                                               37
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         5
## Fc Epsilon Receptor Fceri Signaling                                                                                                      186
## Fceri Mediated Ca 2 Mobilization                                                                                                          86
## Fceri Mediated Mapk Activation                                                                                                            87
## Fceri Mediated Nf Kb Activation                                                                                                          136
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                             143
## Fcgr Activation                                                                                                                           69
## Fcgr3a Mediated Il10 Synthesis                                                                                                            95
## Fertilization                                                                                                                             26
## Fgfr1 Ligand Binding And Activation                                                                                                       16
## Fgfr1b Ligand Binding And Activation                                                                                                       6
## Fgfr1c Ligand Binding And Activation                                                                                                      12
## Fgfr2 Alternative Splicing                                                                                                                27
## Fgfr2 Ligand Binding And Activation                                                                                                       20
## Fgfr2 Mutant Receptor Activation                                                                                                          33
## Fgfr2b Ligand Binding And Activation                                                                                                      10
## Fgfr2c Ligand Binding And Activation                                                                                                      13
## Fgfr3 Ligand Binding And Activation                                                                                                       13
## Fgfr3b Ligand Binding And Activation                                                                                                       7
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             5
## Flt3 Signaling                                                                                                                            38
## Flt3 Signaling By Cbl Mutants                                                                                                              7
## Flt3 Signaling In Disease                                                                                                                 28
## Flt3 Signaling Through Src Family Kinases                                                                                                  6
## Folding Of Actin By Cct Tric                                                                                                              10
## Formation Of Apoptosome                                                                                                                   11
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 18
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 39
## Formation Of Incision Complex In Gg Ner                                                                                                   43
## Formation Of Rna Pol Ii Elongation Complex                                                                                                58
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              17
## Formation Of Tc Ner Pre Incision Complex                                                                                                  53
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 92
## Formation Of The Cornified Envelope                                                                                                      129
## Formation Of The Early Elongation Complex                                                                                                 33
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    26
## Formation Of Xylulose 5 Phosphate                                                                                                          5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       8
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              30
## Free Fatty Acid Receptors                                                                                                                  5
## Free Fatty Acids Regulate Insulin Secretion                                                                                               11
## Frs Mediated Fgfr1 Signaling                                                                                                              23
## Frs Mediated Fgfr2 Signaling                                                                                                              25
## Frs Mediated Fgfr3 Signaling                                                                                                              20
## Frs Mediated Fgfr4 Signaling                                                                                                              22
## Fructose Catabolism                                                                                                                        5
## Fructose Metabolism                                                                                                                        7
## G Alpha 12 13 Signalling Events                                                                                                           80
## G Alpha I Signalling Events                                                                                                              314
## G Alpha Q Signalling Events                                                                                                              216
## G Alpha S Signalling Events                                                                                                              144
## G Alpha Z Signalling Events                                                                                                               48
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 25
## G Protein Activation                                                                                                                      24
## G1 S Dna Damage Checkpoints                                                                                                               68
## G2 M Checkpoints                                                                                                                         168
## G2 M Dna Damage Checkpoint                                                                                                                95
## G2 Phase                                                                                                                                   5
## Gab1 Signalosome                                                                                                                          17
## Gaba B Receptor Activation                                                                                                                43
## Gaba Receptor Activation                                                                                                                  60
## Gaba Synthesis Release Reuptake And Degradation                                                                                           19
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   25
## Gap Junction Assembly                                                                                                                     38
## Gap Junction Degradation                                                                                                                  12
## Gap Junction Trafficking And Regulation                                                                                                   51
## Gdp Fucose Biosynthesis                                                                                                                    6
## Gene Silencing By Rna                                                                                                                    140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                7
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  42
## Glucagon Signaling In Metabolic Regulation                                                                                                33
## Glucagon Type Ligand Receptors                                                                                                            33
## Glucocorticoid Biosynthesis                                                                                                               10
## Gluconeogenesis                                                                                                                           34
## Glucose Metabolism                                                                                                                        92
## Glucuronidation                                                                                                                           25
## Glutamate And Glutamine Metabolism                                                                                                        14
## Glutamate Neurotransmitter Release Cycle                                                                                                  24
## Glutathione Conjugation                                                                                                                   36
## Glutathione Synthesis And Recycling                                                                                                       12
## Glycerophospholipid Biosynthesis                                                                                                         128
## Glycerophospholipid Catabolism                                                                                                             7
## Glycogen Breakdown Glycogenolysis                                                                                                         15
## Glycogen Metabolism                                                                                                                       27
## Glycogen Storage Diseases                                                                                                                 16
## Glycogen Synthesis                                                                                                                        16
## Glycolysis                                                                                                                                72
## Glycosaminoglycan Metabolism                                                                                                             124
## Glycosphingolipid Metabolism                                                                                                              45
## Glyoxylate Metabolism And Glycine Degradation                                                                                             31
## Golgi Associated Vesicle Biogenesis                                                                                                       56
## Golgi To Er Retrograde Transport                                                                                                         134
## Gp1b Ix V Activation Signalling                                                                                                           12
## Gpcr Ligand Binding                                                                                                                      463
## Grb2 Events In Erbb2 Signaling                                                                                                            16
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 15
## Grb7 Events In Erbb2 Signaling                                                                                                             5
## Hats Acetylate Histones                                                                                                                  142
## Hcmv Early Events                                                                                                                        138
## Hcmv Infection                                                                                                                           162
## Hcmv Late Events                                                                                                                         116
## Hdacs Deacetylate Histones                                                                                                                94
## Hdms Demethylate Histones                                                                                                                 50
## Hdr Through Homologous Recombination Hrr                                                                                                  67
## Hdr Through Mmej Alt Nhej                                                                                                                 10
## Hdr Through Single Strand Annealing Ssa                                                                                                   37
## Hedgehog Ligand Biogenesis                                                                                                                65
## Hedgehog Off State                                                                                                                       113
## Hedgehog On State                                                                                                                         86
## Heme Biosynthesis                                                                                                                         14
## Heme Degradation                                                                                                                          15
## Hemostasis                                                                                                                               678
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     7
## Histidine Catabolism                                                                                                                       8
## Hiv Elongation Arrest And Recovery                                                                                                        33
## Hiv Infection                                                                                                                            231
## Hiv Life Cycle                                                                                                                           149
## Hiv Transcription Elongation                                                                                                              43
## Hiv Transcription Initiation                                                                                                              47
## Homologous Dna Pairing And Strand Exchange                                                                                                42
## Homology Directed Repair                                                                                                                 138
## Hormone Ligand Binding Receptors                                                                                                          12
## Host Interactions Of Hiv Factors                                                                                                         131
## Hs Gag Biosynthesis                                                                                                                       31
## Hs Gag Degradation                                                                                                                        22
## Hsf1 Activation                                                                                                                           31
## Hsf1 Dependent Transactivation                                                                                                            38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   57
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       8
## Hyaluronan Biosynthesis And Export                                                                                                         5
## Hyaluronan Metabolism                                                                                                                     17
## Hyaluronan Uptake And Degradation                                                                                                         12
## Hydrolysis Of Lpc                                                                                                                          9
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           17
## Infection With Mycobacterium Tuberculosis                                                                                                 27
## Infectious Disease                                                                                                                       924
## Influenza Infection                                                                                                                      157
## Inhibition Of Dna Recombination At Telomere                                                                                               68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               21
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              15
## Innate Immune System                                                                                                                    1117
## Inositol Phosphate Metabolism                                                                                                             48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               22
## Insulin Processing                                                                                                                        27
## Insulin Receptor Recycling                                                                                                                26
## Integration Of Energy Metabolism                                                                                                         108
## Integration Of Provirus                                                                                                                    9
## Integrin Cell Surface Interactions                                                                                                        85
## Integrin Signaling                                                                                                                        27
## Interaction Between L1 And Ankyrins                                                                                                       31
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     11
## Interactions Of Rev With Host Cellular Proteins                                                                                           37
## Interactions Of Vpr With Host Cellular Proteins                                                                                           37
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        29
## Interferon Signaling                                                                                                                     203
## Interleukin 36 Pathway                                                                                                                     7
## Intestinal Absorption                                                                                                                      5
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                           203
## Intra Golgi Traffic                                                                                                                       44
## Intracellular Signaling By Second Messengers                                                                                             307
## Intraflagellar Transport                                                                                                                  54
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23
## Inwardly Rectifying K Channels                                                                                                            35
## Ion Channel Transport                                                                                                                    183
## Ion Homeostasis                                                                                                                           54
## Ion Transport By P Type Atpases                                                                                                           55
## Ionotropic Activity Of Kainate Receptors                                                                                                  10
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 10
## Ire1alpha Activates Chaperones                                                                                                            50
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     5
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     13
## Iron Uptake And Transport                                                                                                                 58
## Irs Activation                                                                                                                             5
## Josephin Domain Dubs                                                                                                                      12
## Keratan Sulfate Biosynthesis                                                                                                              28
## Keratan Sulfate Degradation                                                                                                               13
## Keratan Sulfate Keratin Metabolism                                                                                                        34
## Keratinization                                                                                                                           217
## Ketone Body Metabolism                                                                                                                    10
## Kinesins                                                                                                                                  61
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    17
## L1cam Interactions                                                                                                                       121
## Lagging Strand Synthesis                                                                                                                  20
## Laminin Interactions                                                                                                                      30
## Late Endosomal Microautophagy                                                                                                             34
## Ldl Clearance                                                                                                                             19
## Lectin Pathway Of Complement Activation                                                                                                    8
## Leishmania Infection                                                                                                                     308
## Leukotriene Receptors                                                                                                                      5
## Lgi Adam Interactions                                                                                                                     14
## Ligand Receptor Interactions                                                                                                               8
## Linoleic Acid La Metabolism                                                                                                                8
## Lipid Particle Organization                                                                                                                6
## Lipophagy                                                                                                                                  9
## Listeria Monocytogenes Entry Into Host Cells                                                                                              20
## Long Term Potentiation                                                                                                                    23
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                13
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     5
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        7
## Lysine Catabolism                                                                                                                         12
## Lysosome Vesicle Biogenesis                                                                                                               35
## Lysosphingolipid And Lpa Receptors                                                                                                        14
## M Phase                                                                                                                                  417
## Map2k And Mapk Activation                                                                                                                 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  16
## Mapk Family Signaling Cascades                                                                                                           327
## Mapk1 Erk2 Activation                                                                                                                      9
## Maturation Of Nucleoprotein                                                                                                               10
## Maturation Of Protein 3a                                                                                                                   9
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     5
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    29
## Meiosis                                                                                                                                  119
## Meiotic Recombination                                                                                                                     87
## Meiotic Synapsis                                                                                                                          79
## Melanin Biosynthesis                                                                                                                       5
## Membrane Trafficking                                                                                                                     629
## Met Activates Pi3k Akt Signaling                                                                                                           6
## Met Activates Ptk2 Signaling                                                                                                              30
## Met Activates Ptpn11                                                                                                                       5
## Met Activates Rap1 And Rac1                                                                                                               11
## Met Activates Ras Signaling                                                                                                               11
## Met Interacts With Tns Proteins                                                                                                            5
## Met Promotes Cell Motility                                                                                                                41
## Met Receptor Activation                                                                                                                    6
## Met Receptor Recycling                                                                                                                    10
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       34
## Metabolism Of Amine Derived Hormones                                                                                                      18
## Metabolism Of Amino Acids And Derivatives                                                                                                374
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             18
## Metabolism Of Carbohydrates                                                                                                              293
## Metabolism Of Cofactors                                                                                                                   19
## Metabolism Of Folate And Pterines                                                                                                         17
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           8
## Metabolism Of Lipids                                                                                                                     741
## Metabolism Of Nucleotides                                                                                                                 98
## Metabolism Of Polyamines                                                                                                                  59
## Metabolism Of Porphyrins                                                                                                                  27
## Metabolism Of Rna                                                                                                                        672
## Metabolism Of Steroid Hormones                                                                                                            35
## Metabolism Of Steroids                                                                                                                   151
## Metabolism Of Vitamins And Cofactors                                                                                                     189
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                       123
## Metal Ion Slc Transporters                                                                                                                26
## Metal Sequestration By Antimicrobial Proteins                                                                                              6
## Metallothioneins Bind Metals                                                                                                              11
## Methionine Salvage Pathway                                                                                                                 6
## Methylation                                                                                                                               14
## Mhc Class Ii Antigen Presentation                                                                                                        126
## Microrna Mirna Biogenesis                                                                                                                 25
## Mineralocorticoid Biosynthesis                                                                                                             6
## Miro Gtpase Cycle                                                                                                                          8
## Miscellaneous Substrates                                                                                                                  12
## Miscellaneous Transport And Binding Events                                                                                                26
## Mismatch Repair                                                                                                                           15
## Mitochondrial Biogenesis                                                                                                                  94
## Mitochondrial Calcium Ion Transport                                                                                                       23
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         6
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              13
## Mitochondrial Protein Import                                                                                                              65
## Mitochondrial Translation                                                                                                                 96
## Mitochondrial Trna Aminoacylation                                                                                                         21
## Mitochondrial Uncoupling                                                                                                                   6
## Mitotic G1 Phase And G1 S Transition                                                                                                     149
## Mitotic G2 G2 M Phases                                                                                                                   200
## Mitotic Metaphase And Anaphase                                                                                                           236
## Mitotic Prometaphase                                                                                                                     203
## Mitotic Prophase                                                                                                                         143
## Mitotic Spindle Checkpoint                                                                                                               111
## Mitotic Telophase Cytokinesis                                                                                                             13
## Modulation By Mtb Of Host Immune System                                                                                                    7
## Molecules Associated With Elastic Fibres                                                                                                  38
## Molybdenum Cofactor Biosynthesis                                                                                                           6
## Mrna Capping                                                                                                                              29
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      16
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      15
## Mrna Editing                                                                                                                              10
## Mrna Editing C To U Conversion                                                                                                             8
## Mrna Splicing                                                                                                                            188
## Mrna Splicing Minor Pathway                                                                                                               52
## Mtor Signalling                                                                                                                           41
## Mtorc1 Mediated Signalling                                                                                                                24
## Mucopolysaccharidoses                                                                                                                     11
## Multifunctional Anion Exchangers                                                                                                           9
## Muscarinic Acetylcholine Receptors                                                                                                         5
## Muscle Contraction                                                                                                                       195
## Myoclonic Epilepsy Of Lafora                                                                                                               9
## N Glycan Antennae Elongation                                                                                                              15
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    26
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               35
## Na Cl Dependent Neurotransmitter Transporters                                                                                             19
## Nade Modulates Death Signalling                                                                                                            6
## Ncam1 Interactions                                                                                                                        42
## Nectin Necl Trans Heterodimerization                                                                                                       7
## Neddylation                                                                                                                              234
## Nef And Signal Transduction                                                                                                                8
## Nef Mediated Cd4 Down Regulation                                                                                                           9
## Nef Mediated Cd8 Down Regulation                                                                                                           7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            21
## Negative Epigenetic Regulation Of Rrna Expression                                                                                        109
## Negative Feedback Regulation Of Mapk Pathway                                                                                               6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                10
## Negative Regulation Of Fgfr1 Signaling                                                                                                    33
## Negative Regulation Of Fgfr2 Signaling                                                                                                    34
## Negative Regulation Of Fgfr3 Signaling                                                                                                    29
## Negative Regulation Of Fgfr4 Signaling                                                                                                    31
## Negative Regulation Of Flt3                                                                                                               15
## Negative Regulation Of Mapk Pathway                                                                                                       43
## Negative Regulation Of Met Activity                                                                                                       21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       21
## Negative Regulation Of Notch4 Signaling                                                                                                   54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 5
## Negative Regulation Of The Pi3k Akt Network                                                                                              113
## Nephrin Family Interactions                                                                                                               23
## Nervous System Development                                                                                                               580
## Netrin Mediated Repulsion Signals                                                                                                          8
## Neurexins And Neuroligins                                                                                                                 56
## Neurofascin Interactions                                                                                                                   7
## Neuronal System                                                                                                                          410
## Neurotoxicity Of Clostridium Toxins                                                                                                       10
## Neurotransmitter Clearance                                                                                                                10
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                          205
## Neurotransmitter Release Cycle                                                                                                            51
## Neutrophil Degranulation                                                                                                                 479
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  12
## Ngf Independant Trka Activation                                                                                                            5
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 22
## Non Integrin Membrane Ecm Interactions                                                                                                    59
## Noncanonical Activation Of Notch3                                                                                                          8
## Nonhomologous End Joining Nhej                                                                                                            69
## Nonsense Mediated Decay Nmd                                                                                                              116
## Norepinephrine Neurotransmitter Release Cycle                                                                                             18
## Notch Hlh Transcription Pathway                                                                                                           28
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               22
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               25
## Notch3 Intracellular Domain Regulates Transcription                                                                                       25
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               11
## Notch4 Intracellular Domain Regulates Transcription                                                                                       20
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           37
## Nrcam Interactions                                                                                                                         7
## Ns1 Mediated Effects On Host Pathways                                                                                                     41
## Ntrk2 Activates Rac1                                                                                                                       5
## Nuclear Envelope Ne Reassembly                                                                                                            76
## Nuclear Import Of Rev Protein                                                                                                             34
## Nuclear Receptor Transcription Pathway                                                                                                    53
## Nuclear Signaling By Erbb4                                                                                                                32
## Nucleobase Biosynthesis                                                                                                                   15
## Nucleobase Catabolism                                                                                                                     35
## Nucleotide Excision Repair                                                                                                               110
## Nucleotide Like Purinergic Receptors                                                                                                      16
## Nucleotide Salvage                                                                                                                        23
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         39
## O Linked Glycosylation                                                                                                                   111
## O Linked Glycosylation Of Mucins                                                                                                          62
## Oas Antiviral Response                                                                                                                     9
## Olfactory Signaling Pathway                                                                                                              400
## Oncogene Induced Senescence                                                                                                               35
## Oncogenic Mapk Signaling                                                                                                                  82
## Opioid Signalling                                                                                                                         90
## Opsins                                                                                                                                     9
## Orc1 Removal From Chromatin                                                                                                               71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    8
## Organelle Biogenesis And Maintenance                                                                                                     296
## Organic Anion Transport                                                                                                                    5
## Organic Anion Transporters                                                                                                                10
## Organic Cation Anion Zwitterion Transport                                                                                                 15
## Organic Cation Transport                                                                                                                  10
## Other Interleukin Signaling                                                                                                               24
## Oxidative Stress Induced Senescence                                                                                                      126
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           15
## P2y Receptors                                                                                                                             12
## P38mapk Events                                                                                                                            13
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             6
## P75ntr Regulates Axonogenesis                                                                                                             10
## Parasite Infection                                                                                                                       116
## Passive Transport By Aquaporins                                                                                                           13
## Pcna Dependent Long Patch Base Excision Repair                                                                                            21
## Pcp Ce Pathway                                                                                                                            92
## Pecam1 Interactions                                                                                                                       12
## Pentose Phosphate Pathway                                                                                                                 15
## Peptide Hormone Biosynthesis                                                                                                              14
## Peptide Hormone Metabolism                                                                                                                90
## Peroxisomal Lipid Metabolism                                                                                                              29
## Peroxisomal Protein Import                                                                                                                63
## Pexophagy                                                                                                                                 11
## Phase 0 Rapid Depolarisation                                                                                                              32
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   7
## Phase 2 Plateau Phase                                                                                                                     15
## Phase 3 Rapid Repolarisation                                                                                                               8
## Phase I Functionalization Of Compounds                                                                                                   106
## Phase Ii Conjugation Of Compounds                                                                                                        109
## Phenylalanine And Tyrosine Metabolism                                                                                                     11
## Phenylalanine Metabolism                                                                                                                   6
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              8
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 7
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    18
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    15
## Phospholipid Metabolism                                                                                                                  211
## Physiological Factors                                                                                                                     12
## Pi 3k Cascade Fgfr1                                                                                                                       21
## Pi 3k Cascade Fgfr2                                                                                                                       23
## Pi 3k Cascade Fgfr3                                                                                                                       18
## Pi 3k Cascade Fgfr4                                                                                                                       20
## Pi Metabolism                                                                                                                             84
## Pi3k Akt Activation                                                                                                                        9
## Pi3k Akt Signaling In Cancer                                                                                                             105
## Pi3k Events In Erbb2 Signaling                                                                                                            16
## Pi3k Events In Erbb4 Signaling                                                                                                            10
## Pi5p Regulates Tp53 Acetylation                                                                                                            9
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     29
## Pka Activation In Glucagon Signalling                                                                                                     17
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      5
## Pkmts Methylate Histone Lysines                                                                                                           71
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      71
## Platelet Activation Signaling And Aggregation                                                                                            261
## Platelet Adhesion To Exposed Collagen                                                                                                     15
## Platelet Aggregation Plug Formation                                                                                                       39
## Platelet Calcium Homeostasis                                                                                                              28
## Platelet Homeostasis                                                                                                                      86
## Platelet Sensitization By Ldl                                                                                                             17
## Polb Dependent Long Patch Base Excision Repair                                                                                             8
## Polo Like Kinase Mediated Events                                                                                                          16
## Polymerase Switching                                                                                                                      14
## Polymerase Switching On The C Strand Of The Telomere                                                                                      26
## Positive Epigenetic Regulation Of Rrna Expression                                                                                        106
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        94
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          27
## Potassium Channels                                                                                                                       103
## Potential Therapeutics For Sars                                                                                                           81
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   7
## Pre Notch Expression And Processing                                                                                                      120
## Pre Notch Processing In Golgi                                                                                                             18
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          6
## Pregnenolone Biosynthesis                                                                                                                 12
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    11
## Presynaptic Function Of Kainate Receptors                                                                                                 21
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  9
## Processing And Activation Of Sumo                                                                                                         10
## Processing Of Capped Intron Containing Pre Mrna                                                                                          242
## Processing Of Capped Intronless Pre Mrna                                                                                                  28
## Processing Of Dna Double Strand Break Ends                                                                                                98
## Processing Of Intronless Pre Mrnas                                                                                                        19
## Processing Of Smdt1                                                                                                                       16
## Processive Synthesis On The C Strand Of The Telomere                                                                                      19
## Processive Synthesis On The Lagging Strand                                                                                                15
## Prolactin Receptor Signaling                                                                                                              15
## Prolonged Erk Activation Events                                                                                                           14
## Propionyl Coa Catabolism                                                                                                                   5
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     19
## Prostanoid Ligand Receptors                                                                                                                9
## Protein Folding                                                                                                                           98
## Protein Localization                                                                                                                     164
## Protein Methylation                                                                                                                       17
## Protein Protein Interactions At Synapses                                                                                                  87
## Protein Repair                                                                                                                             6
## Protein Ubiquitination                                                                                                                    79
## Proton Coupled Monocarboxylate Transport                                                                                                   6
## Pten Regulation                                                                                                                          139
## Ptk6 Expression                                                                                                                            5
## Ptk6 Promotes Hif1a Stabilization                                                                                                          6
## Ptk6 Regulates Cell Cycle                                                                                                                  6
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      9
## Purine Catabolism                                                                                                                         17
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          12
## Purine Salvage                                                                                                                            13
## Pyrimidine Catabolism                                                                                                                     12
## Pyrimidine Salvage                                                                                                                        11
## Pyruvate Metabolism                                                                                                                       31
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             55
## Ra Biosynthesis Pathway                                                                                                                   22
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     90
## Rab Geranylgeranylation                                                                                                                   65
## Rab Regulation Of Trafficking                                                                                                            122
## Rac1 Gtpase Cycle                                                                                                                        184
## Raf Activation                                                                                                                            34
## Rap1 Signalling                                                                                                                           16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      20
## Ras Processing                                                                                                                            24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  7
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              10
## Receptor Type Tyrosine Protein Phosphatases                                                                                               20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    56
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          30
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  81
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                95
## Recycling Of Bile Acids And Salts                                                                                                         16
## Recycling Of Eif2 Gdp                                                                                                                      8
## Recycling Pathway Of L1                                                                                                                   49
## Reduction Of Cytosolic Ca Levels                                                                                                          12
## Reelin Signalling Pathway                                                                                                                  5
## Regulated Proteolysis Of P75ntr                                                                                                           11
## Regulation Of Bach1 Activity                                                                                                              11
## Regulation Of Beta Cell Development                                                                                                       42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         8
## Regulation Of Expression Of Slits And Robos                                                                                              172
## Regulation Of Fzd By Ubiquitination                                                                                                       21
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 11
## Regulation Of Gene Expression In Beta Cells                                                                                               21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          12
## Regulation Of Hmox1 Expression And Activity                                                                                               65
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           82
## Regulation Of Ifna Signaling                                                                                                              26
## Regulation Of Ifng Signaling                                                                                                              14
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    15
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                  124
## Regulation Of Insulin Secretion                                                                                                           78
## Regulation Of Kit Signaling                                                                                                               16
## Regulation Of Lipid Metabolism By Pparalpha                                                                                              120
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       87
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            87
## Regulation Of Pten Gene Transcription                                                                                                     61
## Regulation Of Pten Localization                                                                                                            9
## Regulation Of Pten Mrna Translation                                                                                                        9
## Regulation Of Pten Stability And Activity                                                                                                 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          16
## Regulation Of Ras By Gaps                                                                                                                 68
## Regulation Of Runx1 Expression And Activity                                                                                               17
## Regulation Of Runx2 Expression And Activity                                                                                               73
## Regulation Of Runx3 Expression And Activity                                                                                               55
## Regulation Of Signaling By Cbl                                                                                                            22
## Regulation Of Signaling By Nodal                                                                                                          11
## Regulation Of Tp53 Activity                                                                                                              160
## Regulation Of Tp53 Activity Through Acetylation                                                                                           30
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           14
## Regulation Of Tp53 Activity Through Methylation                                                                                           19
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       92
## Relaxin Receptors                                                                                                                          8
## Release Of Apoptotic Factors From The Mitochondria                                                                                         7
## Release Of Hh Np From The Secreting Cell                                                                                                   8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     10
## Reproduction                                                                                                                             145
## Resolution Of Abasic Sites Ap Sites                                                                                                       38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              25
## Resolution Of D Loop Structures                                                                                                           34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         26
## Resolution Of Sister Chromatid Cohesion                                                                                                  126
## Respiratory Electron Transport                                                                                                           103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                         127
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                        102
## Response Of Mtb To Phagocytosis                                                                                                           23
## Response To Elevated Platelet Cytosolic Ca2                                                                                              132
## Response To Metal Ions                                                                                                                    14
## Ret Signaling                                                                                                                             40
## Retinoid Cycle Disease Events                                                                                                             13
## Retrograde Neurotrophin Signalling                                                                                                        14
## Retrograde Transport At The Trans Golgi Network                                                                                           49
## Reversible Hydration Of Carbon Dioxide                                                                                                    12
## Rho Gtpase Cycle                                                                                                                         444
## Rho Gtpase Effectors                                                                                                                     324
## Rho Gtpases Activate Cit                                                                                                                  19
## Rho Gtpases Activate Formins                                                                                                             140
## Rho Gtpases Activate Nadph Oxidases                                                                                                       24
## Rho Gtpases Activate Pkns                                                                                                                 94
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               9
## Rho Gtpases Activate Rocks                                                                                                                19
## Rhoa Gtpase Cycle                                                                                                                        149
## Rhobtb Gtpase Cycle                                                                                                                       35
## Rhobtb1 Gtpase Cycle                                                                                                                      23
## Rhobtb2 Gtpase Cycle                                                                                                                      23
## Rhobtb3 Atpase Cycle                                                                                                                      10
## Rhoc Gtpase Cycle                                                                                                                         74
## Rhot1 Gtpase Cycle                                                                                                                         5
## Rmts Methylate Histone Arginines                                                                                                          79
## Rna Polymerase I Promoter Escape                                                                                                          91
## Rna Polymerase I Transcription                                                                                                           111
## Rna Polymerase I Transcription Initiation                                                                                                 47
## Rna Polymerase I Transcription Termination                                                                                                31
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 81
## Rna Polymerase Ii Transcription Termination                                                                                               66
## Rna Polymerase Iii Chain Elongation                                                                                                       18
## Rna Polymerase Iii Transcription                                                                                                          41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          28
## Rna Polymerase Iii Transcription Termination                                                                                              23
## Robo Receptors Bind Akap5                                                                                                                  9
## Role Of Abl In Robo Slit Signaling                                                                                                         8
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             71
## Role Of Phospholipids In Phagocytosis                                                                                                     82
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           10
## Rora Activates Gene Expression                                                                                                            18
## Rrna Modification In The Mitochondrion                                                                                                     8
## Rrna Modification In The Nucleus And Cytosol                                                                                              60
## Rrna Processing                                                                                                                          205
## Rrna Processing In The Mitochondrion                                                                                                      12
## Rsk Activation                                                                                                                             7
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        37
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   6
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                               130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           6
## Runx2 Regulates Bone Development                                                                                                          31
## Runx2 Regulates Chondrocyte Maturation                                                                                                     5
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           8
## Runx2 Regulates Osteoblast Differentiation                                                                                                24
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  5
## Runx3 Regulates Cdkn1a Transcription                                                                                                       7
## Runx3 Regulates Immune Response And Cell Migration                                                                                         6
## Runx3 Regulates Notch Signaling                                                                                                           14
## Runx3 Regulates P14 Arf                                                                                                                   10
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                8
## S Phase                                                                                                                                  162
## Sars Cov 1 Genome Replication And Transcription                                                                                            6
## Sars Cov 1 Infection                                                                                                                      50
## Sars Cov 2 Infection                                                                                                                      67
## Sars Cov Infections                                                                                                                      146
## Scavenging By Class F Receptors                                                                                                            6
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           32
## Selective Autophagy                                                                                                                       82
## Selenoamino Acid Metabolism                                                                                                              118
## Sema3a Pak Dependent Axon Repulsion                                                                                                       16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         14
## Sema4d In Semaphorin Signaling                                                                                                            24
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                8
## Senescence Associated Secretory Phenotype Sasp                                                                                           112
## Sensing Of Dna Double Strand Breaks                                                                                                        6
## Sensory Perception                                                                                                                       575
## Sensory Processing Of Sound                                                                                                               77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            55
## Separation Of Sister Chromatids                                                                                                          191
## Serine Biosynthesis                                                                                                                        9
## Serotonin And Melatonin Biosynthesis                                                                                                       5
## Serotonin Neurotransmitter Release Cycle                                                                                                  18
## Serotonin Receptors                                                                                                                       12
## Shc Mediated Cascade Fgfr1                                                                                                                21
## Shc Mediated Cascade Fgfr3                                                                                                                18
## Shc Mediated Cascade Fgfr4                                                                                                                20
## Shc Related Events Triggered By Igf1r                                                                                                      9
## Shc1 Events In Egfr Signaling                                                                                                             14
## Shc1 Events In Erbb2 Signaling                                                                                                            22
## Shc1 Events In Erbb4 Signaling                                                                                                            14
## Sialic Acid Metabolism                                                                                                                    33
## Signal Amplification                                                                                                                      33
## Signal Attenuation                                                                                                                        10
## Signal Regulatory Protein Family Interactions                                                                                             16
## Signal Transduction By L1                                                                                                                 21
## Signaling By Activin                                                                                                                      13
## Signaling By Bmp                                                                                                                          28
## Signaling By Braf And Raf Fusions                                                                                                         65
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  15
## Signaling By Egfr In Cancer                                                                                                               25
## Signaling By Erbb2                                                                                                                        50
## Signaling By Erbb2 Ecd Mutants                                                                                                            16
## Signaling By Erbb2 In Cancer                                                                                                              26
## Signaling By Erbb4                                                                                                                        58
## Signaling By Erythropoietin                                                                                                               25
## Signaling By Fgfr                                                                                                                         87
## Signaling By Fgfr1                                                                                                                        50
## Signaling By Fgfr2                                                                                                                        73
## Signaling By Fgfr2 Iiia Tm                                                                                                                19
## Signaling By Fgfr2 In Disease                                                                                                             43
## Signaling By Fgfr3                                                                                                                        40
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      10
## Signaling By Fgfr4                                                                                                                        41
## Signaling By Fgfr4 In Disease                                                                                                             11
## Signaling By Flt3 Fusion Proteins                                                                                                         19
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     16
## Signaling By Gpcr                                                                                                                        698
## Signaling By Hedgehog                                                                                                                    150
## Signaling By Hippo                                                                                                                        20
## Signaling By Insulin Receptor                                                                                                             78
## Signaling By Lrp5 Mutants                                                                                                                  6
## Signaling By Mapk Mutants                                                                                                                  7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 5
## Signaling By Met                                                                                                                          79
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        45
## Signaling By Mras Complex Mutants                                                                                                          8
## Signaling By Mst1                                                                                                                          5
## Signaling By Nodal                                                                                                                        20
## Signaling By Notch                                                                                                                       247
## Signaling By Notch1                                                                                                                       74
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           15
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          7
## Signaling By Notch3                                                                                                                       49
## Signaling By Notch4                                                                                                                       82
## Signaling By Ntrk2 Trkb                                                                                                                   25
## Signaling By Ntrk3 Trkc                                                                                                                   17
## Signaling By Ntrks                                                                                                                       134
## Signaling By Nuclear Receptors                                                                                                           297
## Signaling By Receptor Tyrosine Kinases                                                                                                   504
## Signaling By Retinoic Acid                                                                                                                43
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                        717
## Signaling By Rnf43 Mutants                                                                                                                 8
## Signaling By Robo Receptors                                                                                                              218
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           8
## Signaling By Tgfb Family Members                                                                                                         102
## Signaling By The B Cell Receptor Bcr                                                                                                     166
## Signaling By Vegf                                                                                                                        106
## Signaling By Wnt                                                                                                                         331
## Signaling By Wnt In Cancer                                                                                                                34
## Signalling To Erks                                                                                                                        34
## Signalling To P38 Via Rit And Rin                                                                                                          5
## Signalling To Ras                                                                                                                         20
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      11
## Slc Mediated Transmembrane Transport                                                                                                     250
## Slc Transporter Disorders                                                                                                                 99
## Smac Xiap Regulated Apoptotic Response                                                                                                     8
## Small Interfering Rna Sirna Biogenesis                                                                                                     9
## Smooth Muscle Contraction                                                                                                                 38
## Snrnp Assembly                                                                                                                            54
## Sodium Calcium Exchangers                                                                                                                 11
## Sodium Coupled Phosphate Cotransporters                                                                                                    5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                5
## Sodium Proton Exchangers                                                                                                                   9
## Sos Mediated Signalling                                                                                                                    7
## Sperm Motility And Taxes                                                                                                                   9
## Sphingolipid De Novo Biosynthesis                                                                                                         45
## Sphingolipid Metabolism                                                                                                                   90
## Spry Regulation Of Fgf Signaling                                                                                                          16
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                              113
## Stabilization Of P53                                                                                                                      57
## Stat5 Activation                                                                                                                           7
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           10
## Stimuli Sensing Channels                                                                                                                 106
## Sting Mediated Induction Of Host Immune Responses                                                                                         16
## Striated Muscle Contraction                                                                                                               36
## Sulfide Oxidation To Sulfate                                                                                                               6
## Sulfur Amino Acid Metabolism                                                                                                              28
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         5
## Sumo Is Proteolytically Processed                                                                                                          6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               7
## Sumoylation                                                                                                                              187
## Sumoylation Of Chromatin Organization Proteins                                                                                            71
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    77
## Sumoylation Of Dna Replication Proteins                                                                                                   46
## Sumoylation Of Intracellular Receptors                                                                                                    30
## Sumoylation Of Rna Binding Proteins                                                                                                       47
## Sumoylation Of Sumoylation Proteins                                                                                                       35
## Sumoylation Of Transcription Cofactors                                                                                                    43
## Sumoylation Of Transcription Factors                                                                                                      20
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  39
## Suppression Of Apoptosis                                                                                                                   7
## Suppression Of Phagosomal Maturation                                                                                                      13
## Surfactant Metabolism                                                                                                                     30
## Switching Of Origins To A Post Replicative State                                                                                          91
## Synaptic Adhesion Like Molecules                                                                                                          21
## Syndecan Interactions                                                                                                                     27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          7
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      9
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  30
## Synthesis Of Bile Acids And Bile Salts                                                                                                    34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      24
## Synthesis Of Diphthamide Eef2                                                                                                              8
## Synthesis Of Dolichyl Phosphate                                                                                                            6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              8
## Synthesis Of Gdp Mannose                                                                                                                   5
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             18
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                14
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   26
## Synthesis Of Ketone Bodies                                                                                                                 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                21
## Synthesis Of Lipoxins Lx                                                                                                                   6
## Synthesis Of Pa                                                                                                                           39
## Synthesis Of Pc                                                                                                                           28
## Synthesis Of Pe                                                                                                                           13
## Synthesis Of Pg                                                                                                                            8
## Synthesis Of Pi                                                                                                                            5
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          16
## Synthesis Of Pips At The Er Membrane                                                                                                       5
## Synthesis Of Pips At The Golgi Membrane                                                                                                   18
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           11
## Synthesis Of Pips At The Plasma Membrane                                                                                                  53
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                10
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           63
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      8
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              24
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 6
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            19
## Tachykinin Receptors Bind Tachykinins                                                                                                      5
## Tbc Rabgaps                                                                                                                               44
## Tcf Dependent Signaling In Response To Wnt                                                                                               234
## Tcr Signaling                                                                                                                            124
## Telomere C Strand Lagging Strand Synthesis                                                                                                34
## Telomere C Strand Synthesis Initiation                                                                                                    13
## Telomere Extension By Telomerase                                                                                                          23
## Telomere Maintenance                                                                                                                     113
## Terminal Pathway Of Complement                                                                                                             8
## Termination Of O Glycan Biosynthesis                                                                                                      23
## Termination Of Translesion Dna Synthesis                                                                                                  32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        10
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           15
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               5
## Tgf Beta Receptor Signaling Activates Smads                                                                                               32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   16
## The Activation Of Arylsulfatases                                                                                                          13
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                             178
## The Fatty Acid Cycling Model                                                                                                               5
## The Phototransduction Cascade                                                                                                             34
## The Retinoid Cycle In Cones Daylight Vision                                                                                                7
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 79
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             28
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           32
## Thromboxane Signalling Through Tp Receptor                                                                                                24
## Thyroxine Biosynthesis                                                                                                                    10
## Tie2 Signaling                                                                                                                            18
## Tight Junction Interactions                                                                                                               30
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    5
## Tp53 Regulates Metabolic Genes                                                                                                            87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          21
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           12
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          44
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               12
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          62
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      14
## Traf3 Dependent Irf Activation Pathway                                                                                                    14
## Traf6 Mediated Irf7 Activation                                                                                                            29
## Trafficking Of Ampa Receptors                                                                                                             31
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            17
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        5
## Trail Signaling                                                                                                                            8
## Trans Golgi Network Vesicle Budding                                                                                                       72
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   78
## Transcription Of The Hiv Genome                                                                                                           70
## Transcriptional Regulation By E2f6                                                                                                        34
## Transcriptional Regulation By Runx1                                                                                                      239
## Transcriptional Regulation By Runx2                                                                                                      120
## Transcriptional Regulation By Runx3                                                                                                       96
## Transcriptional Regulation By Small Rnas                                                                                                 107
## Transcriptional Regulation By Tp53                                                                                                       363
## Transcriptional Regulation By Ventx                                                                                                       41
## Transcriptional Regulation Of Testis Differentiation                                                                                      13
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             84
## Transferrin Endocytosis And Recycling                                                                                                     31
## Translation                                                                                                                              295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            13
## Translation Of Sars Cov 1 Structural Proteins                                                                                             28
## Translation Of Sars Cov 2 Structural Proteins                                                                                             44
## Translesion Synthesis By Polh                                                                                                             19
## Translesion Synthesis By Polk                                                                                                             17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      72
## Transmission Across Chemical Synapses                                                                                                    269
## Transport And Synthesis Of Paps                                                                                                            6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  86
## Transport Of Connexons To The Plasma Membrane                                                                                             21
## Transport Of Fatty Acids                                                                                                                   8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                      106
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             43
## Transport Of Mature Transcript To Cytoplasm                                                                                               84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  12
## Transport Of Nucleotide Sugars                                                                                                             9
## Transport Of Organic Anions                                                                                                               12
## Transport Of Small Molecules                                                                                                             728
## Transport Of The Slbp Dependant Mature Mrna                                                                                               36
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   44
## Transport To The Golgi And Subsequent Modification                                                                                       186
## Triglyceride Biosynthesis                                                                                                                 14
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     17
## Trna Aminoacylation                                                                                                                       42
## Trna Modification In The Mitochondrion                                                                                                     9
## Trna Modification In The Nucleus And Cytosol                                                                                              43
## Trna Processing                                                                                                                          111
## Trna Processing In The Mitochondrion                                                                                                       7
## Trna Processing In The Nucleus                                                                                                            59
## Trp Channels                                                                                                                              28
## Tryptophan Catabolism                                                                                                                     14
## Type I Hemidesmosome Assembly                                                                                                             11
## Tyrosine Catabolism                                                                                                                        5
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        7
## Ub Specific Processing Proteases                                                                                                         221
## Ubiquinol Biosynthesis                                                                                                                     8
## Uch Proteinases                                                                                                                          102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             21
## Unwinding Of Dna                                                                                                                          12
## Uptake And Actions Of Bacterial Toxins                                                                                                    29
## Uptake And Function Of Anthrax Toxins                                                                                                     11
## Uptake And Function Of Diphtheria Toxin                                                                                                    6
## Urea Cycle                                                                                                                                10
## Vasopressin Like Receptors                                                                                                                 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              43
## Vegf Ligand Receptor Interactions                                                                                                          8
## Vegfr2 Mediated Cell Proliferation                                                                                                        19
## Vesicle Mediated Transport                                                                                                               724
## Viral Messenger Rna Synthesis                                                                                                             44
## Visual Phototransduction                                                                                                                 100
## Vitamin B1 Thiamin Metabolism                                                                                                              5
## Vitamin B2 Riboflavin Metabolism                                                                                                           7
## Vitamin B5 Pantothenate Metabolism                                                                                                        17
## Vitamin C Ascorbate Metabolism                                                                                                             8
## Vitamin D Calciferol Metabolism                                                                                                           11
## Vitamins                                                                                                                                   6
## Vldl Assembly                                                                                                                              5
## Vldl Clearance                                                                                                                             6
## Vldlr Internalisation And Degradation                                                                                                     12
## Voltage Gated Potassium Channels                                                                                                          43
## Vxpx Cargo Targeting To Cilium                                                                                                            21
## Wax And Plasmalogen Biosynthesis                                                                                                           7
## Wnt Mediated Activation Of Dvl                                                                                                             8
## Xenobiotics                                                                                                                               25
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             15
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   7
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           10
## Zinc Transporters                                                                                                                         17
##                                                                                                                                      overlap
## Interleukin 10 Signaling                                                                                                                  13
## Interleukin 4 And Interleukin 13 Signaling                                                                                                16
## Interleukin 18 Signaling                                                                                                                   3
## Chemokine Receptors Bind Chemokines                                                                                                        9
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               4
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          4
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      5
## P75ntr Signals Via Nf Kb                                                                                                                   3
## Purinergic Signaling In Leishmaniasis Infection                                                                                            4
## Interleukin 1 Processing                                                                                                                   2
## Tnfs Bind Their Physiological Receptors                                                                                                    4
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  2
## Diseases Of Immune System                                                                                                                  4
## Regulation Of Tlr By Endogenous Ligand                                                                                                     3
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   6
## Cd28 Dependent Vav1 Pathway                                                                                                                2
## Killing Mechanisms                                                                                                                         2
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          9
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                3
## Myd88 Independent Tlr4 Cascade                                                                                                             9
## Nf Kb Is Activated And Signals Survival                                                                                                    2
## P75ntr Recruits Signalling Complexes                                                                                                       2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    2
## Trafficking And Processing Of Endosomal Tlr                                                                                                2
## Nod1 2 Signaling Pathway                                                                                                                   4
## Interleukin 15 Signaling                                                                                                                   2
## Toll Like Receptor Cascades                                                                                                               13
## Pyroptosis                                                                                                                                 3
## Alternative Complement Activation                                                                                                          1
## Fasl Cd95l Signaling                                                                                                                       1
## G2 M Dna Replication Checkpoint                                                                                                            1
## Galactose Catabolism                                                                                                                       1
## Hdl Clearance                                                                                                                              1
## Mecp2 Regulates Transcription Factors                                                                                                      1
## Nostrin Mediated Enos Trafficking                                                                                                          1
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            1
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           2
## Sumoylation Of Dna Methylation Proteins                                                                                                    2
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      2
## Biosynthesis Of Epa Derived Spms                                                                                                           1
## Clec7a Inflammasome Pathway                                                                                                                1
## Fibronectin Matrix Formation                                                                                                               1
## Phosphorylation Of Emi1                                                                                                                    1
## Regulated Necrosis                                                                                                                         5
## Scavenging By Class B Receptors                                                                                                            1
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1
## Tnfr1 Mediated Ceramide Production                                                                                                         1
## Irak4 Deficiency Tlr2 4                                                                                                                    2
## Interleukin 2 Family Signaling                                                                                                             4
## Interleukin 17 Signaling                                                                                                                   6
## Interleukin 1 Family Signaling                                                                                                            11
## Scavenging By Class A Receptors                                                                                                            2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               2
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  1
## Creb Phosphorylation                                                                                                                       1
## Ikba Variant Leads To Eda Id                                                                                                               1
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        1
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       8
## Activation Of C3 And C5                                                                                                                    1
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1
## Ctla4 Inhibitory Signaling                                                                                                                 2
## Hdl Assembly                                                                                                                               1
## Heme Signaling                                                                                                                             4
## Inactivation Of Cdc42 And Rac1                                                                                                             1
## Inflammasomes                                                                                                                              2
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1
## Runx3 Regulates Wnt Signaling                                                                                                              1
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 2
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               1
## Cd163 Mediating An Anti Inflammatory Response                                                                                              1
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                1
## Interleukin 23 Signaling                                                                                                                   1
## Interleukin 9 Signaling                                                                                                                    1
## Trif Mediated Programmed Cell Death                                                                                                        1
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   2
## Ovarian Tumor Domain Proteases                                                                                                             3
## Traf6 Mediated Nf Kb Activation                                                                                                            2
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1
## Chylomicron Assembly                                                                                                                       1
## Chylomicron Remodeling                                                                                                                     1
## Hdl Remodeling                                                                                                                             1
## Interleukin 21 Signaling                                                                                                                   1
## Mapk3 Erk1 Activation                                                                                                                      1
## Mastl Facilitates Mitotic Progression                                                                                                      1
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 1
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              2
## Condensation Of Prometaphase Chromosomes                                                                                                   1
## Dermatan Sulfate Biosynthesis                                                                                                              1
## Dscam Interactions                                                                                                                         1
## Endosomal Vacuolar Pathway                                                                                                                 1
## Enos Activation                                                                                                                            1
## Interleukin 27 Signaling                                                                                                                   1
## Interleukin 6 Signaling                                                                                                                    1
## Receptor Mediated Mitophagy                                                                                                                1
## Regulation By C Flip                                                                                                                       1
## Rho Gtpases Activate Ktn1                                                                                                                  1
## Signaling By Leptin                                                                                                                        1
## Sumoylation Of Immune Response Proteins                                                                                                    1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          7
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           2
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1
## G0 And Early G1                                                                                                                            2
## Interleukin 2 Signaling                                                                                                                    1
## Interleukin 35 Signalling                                                                                                                  1
## Interleukin Receptor Shc Signaling                                                                                                         2
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1
## Signaling By Interleukins                                                                                                                 32
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  1
## Tandem Pore Domain Potassium Channels                                                                                                      1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1
## Costimulation By The Cd28 Family                                                                                                           5
## Pd 1 Signaling                                                                                                                             2
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       1
## Apoptosis Induced Dna Fragmentation                                                                                                        1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              1
## Dissolution Of Fibrin Clot                                                                                                                 1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   1
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1
## Dap12 Interactions                                                                                                                         3
## Ripk1 Mediated Regulated Necrosis                                                                                                          2
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   2
## Dcc Mediated Attractive Signaling                                                                                                          1
## Early Phase Of Hiv Life Cycle                                                                                                              1
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        1
## Irak1 Recruits Ikk Complex                                                                                                                 1
## Repression Of Wnt Target Genes                                                                                                             1
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        2
## Nicotinate Metabolism                                                                                                                      2
## Peptide Ligand Binding Receptors                                                                                                          13
## Depolymerisation Of The Nuclear Lamina                                                                                                     1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1
## Perk Regulates Gene Expression                                                                                                             2
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     2
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         1
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1
## Cargo Concentration In The Er                                                                                                              2
## Cd28 Co Stimulation                                                                                                                        2
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            1
## Nrif Signals Cell Death From The Nucleus                                                                                                   1
## The Nlrp3 Inflammasome                                                                                                                     1
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       1
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       1
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            1
## Regulation Of Tnfr1 Signaling                                                                                                              2
## Abc Transporters In Lipid Homeostasis                                                                                                      1
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              1
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                1
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     1
## Interleukin 1 Signaling                                                                                                                    6
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    1
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              1
## Nicotinamide Salvaging                                                                                                                     1
## Other Semaphorin Interactions                                                                                                              1
## Phase 4 Resting Membrane Potential                                                                                                         1
## Plasma Lipoprotein Assembly                                                                                                                1
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         2
## G Beta Gamma Signalling Through Cdc42                                                                                                      1
## Phosphorylation Of The Apc C                                                                                                               1
## Pka Mediated Phosphorylation Of Creb                                                                                                       1
## Signaling By Kit In Disease                                                                                                                1
## Signaling By Pdgfr In Disease                                                                                                              1
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      1
## Branched Chain Amino Acid Catabolism                                                                                                       1
## Interleukin 12 Family Signaling                                                                                                            3
## Interleukin 37 Signaling                                                                                                                   1
## Rho Gtpases Activate Paks                                                                                                                  1
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                1
## E2f Mediated Regulation Of Dna Replication                                                                                                 1
## Pink1 Prkn Mediated Mitophagy                                                                                                              1
## Incretin Synthesis Secretion And Inactivation                                                                                              1
## Raf Independent Mapk1 3 Activation                                                                                                         1
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               1
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     1
## Growth Hormone Receptor Signaling                                                                                                          1
## Interleukin 6 Family Signaling                                                                                                             1
## Tnf Signaling                                                                                                                              2
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 2
## Triglyceride Catabolism                                                                                                                    1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   1
## Basigin Interactions                                                                                                                       1
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    1
## Inactivation Of Csf3 G Csf Signaling                                                                                                       1
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1
## Interleukin 20 Family Signaling                                                                                                            1
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1
## Foxo Mediated Transcription                                                                                                                3
## Interleukin 12 Signaling                                                                                                                   2
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           2
## Vegfr2 Mediated Vascular Permeability                                                                                                      1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1
## Circadian Clock                                                                                                                            3
## Dap12 Signaling                                                                                                                            1
## Death Receptor Signalling                                                                                                                  7
## Downstream Signal Transduction                                                                                                             1
## G1 S Specific Transcription                                                                                                                1
## Mitophagy                                                                                                                                  1
## Myogenesis                                                                                                                                 1
## Netrin 1 Signaling                                                                                                                         2
## Scavenging Of Heme From Plasma                                                                                                             3
## Activation Of Bh3 Only Proteins                                                                                                            1
## Signaling By Csf3 G Csf                                                                                                                    1
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             1
## Egfr Downregulation                                                                                                                        1
## Fgfr1 Mutant Receptor Activation                                                                                                           1
## G Protein Beta Gamma Signalling                                                                                                            1
## Plasma Lipoprotein Remodeling                                                                                                              1
## Regulation Of Mecp2 Expression And Activity                                                                                                1
## Rho Gtpases Activate Iqgaps                                                                                                                1
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       1
## Activation Of Matrix Metalloproteinases                                                                                                    1
## Intrinsic Pathway For Apoptosis                                                                                                            2
## Plasma Lipoprotein Clearance                                                                                                               1
## Rhoj Gtpase Cycle                                                                                                                          2
## Rhov Gtpase Cycle                                                                                                                          1
## Signaling By Notch2                                                                                                                        1
## Complement Cascade                                                                                                                         5
## Gpvi Mediated Activation Cascade                                                                                                           1
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               1
## P75 Ntr Receptor Mediated Signalling                                                                                                       4
## Rhou Gtpase Cycle                                                                                                                          1
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       4
## Ca Dependent Events                                                                                                                        1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    3
## Interleukin 7 Signaling                                                                                                                    1
## Metalloprotease Dubs                                                                                                                       1
## Nuclear Pore Complex Npc Disassembly                                                                                                       1
## Regulation Of Tp53 Expression And Degradation                                                                                              1
## Rho Gtpases Activate Wasps And Waves                                                                                                       1
## Rhoh Gtpase Cycle                                                                                                                          1
## Rhoq Gtpase Cycle                                                                                                                          2
## Ros And Rns Production In Phagocytes                                                                                                       1
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           1
## Ca2 Pathway                                                                                                                                2
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               2
## Generation Of Second Messenger Molecules                                                                                                   1
## Ngf Stimulated Transcription                                                                                                               1
## Signaling By Fgfr1 In Disease                                                                                                              1
## Transcriptional Regulation By Mecp2                                                                                                        2
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1
## Triglyceride Metabolism                                                                                                                    1
## Beta Defensins                                                                                                                             1
## Dag And Ip3 Signaling                                                                                                                      1
## Dna Methylation                                                                                                                            2
## Ephb Mediated Forward Signaling                                                                                                            1
## Rhof Gtpase Cycle                                                                                                                          1
## Rnd1 Gtpase Cycle                                                                                                                          1
## Rnd3 Gtpase Cycle                                                                                                                          1
## Copii Mediated Vesicle Transport                                                                                                           2
## Rnd2 Gtpase Cycle                                                                                                                          1
## Signaling By Scf Kit                                                                                                                       1
## Transcriptional Regulation Of Granulopoiesis                                                                                               3
## Extra Nuclear Estrogen Signaling                                                                                                           2
## Interferon Alpha Beta Signaling                                                                                                            2
## Interferon Gamma Signaling                                                                                                                 3
## Irs Mediated Signalling                                                                                                                    1
## Mapk6 Mapk4 Signaling                                                                                                                      3
## Metabolism Of Fat Soluble Vitamins                                                                                                         1
## Notch1 Intracellular Domain Regulates Transcription                                                                                        1
## Prc2 Methylates Histones And Dna                                                                                                           2
## Rhog Gtpase Cycle                                                                                                                          2
## Signaling By Tgf Beta Receptor Complex                                                                                                     2
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           1
## Antigen Processing Cross Presentation                                                                                                      3
## Apoptotic Execution Phase                                                                                                                  1
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            1
## Clec7a Dectin 1 Signaling                                                                                                                  3
## Defensins                                                                                                                                  1
## Diseases Of Programmed Cell Death                                                                                                          3
## G Protein Mediated Events                                                                                                                  1
## Initial Triggering Of Complement                                                                                                           2
## Insulin Receptor Signalling Cascade                                                                                                        1
## Nuclear Envelope Breakdown                                                                                                                 1
## Rhod Gtpase Cycle                                                                                                                          1
## Signaling By Egfr                                                                                                                          1
## Signaling By Ptk6                                                                                                                          1
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            1
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1
## Antimicrobial Peptides                                                                                                                     2
## Arachidonic Acid Metabolism                                                                                                                1
## Asymmetric Localization Of Pcp Proteins                                                                                                    1
## Class B 2 Secretin Family Receptors                                                                                                        2
## Collagen Degradation                                                                                                                       1
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             1
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   7
## Ncam Signaling For Neurite Out Growth                                                                                                      1
## Nrage Signals Death Through Jnk                                                                                                            1
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  1
## Programmed Cell Death                                                                                                                      8
## Rac2 Gtpase Cycle                                                                                                                          2
## Rac3 Gtpase Cycle                                                                                                                          2
## Rhob Gtpase Cycle                                                                                                                          1
## Semaphorin Interactions                                                                                                                    1
## Signaling By Fgfr In Disease                                                                                                               1
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          1
## Signaling By Pdgf                                                                                                                          1
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 1
## Unfolded Protein Response Upr                                                                                                              2
## 2 Ltr Circle Formation                                                                                                                     0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            0
## Abacavir Metabolism                                                                                                                        0
## Abacavir Transmembrane Transport                                                                                                           0
## Abacavir Transport And Metabolism                                                                                                          0
## Abc Family Proteins Mediated Transport                                                                                                     1
## Abc Transporter Disorders                                                                                                                  1
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              0
## Acetylcholine Binding And Downstream Events                                                                                                0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     0
## Acetylcholine Neurotransmitter Release Cycle                                                                                               0
## Acetylcholine Regulates Insulin Secretion                                                                                                  0
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        0
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           0
## Activated Ntrk2 Signals Through Cdk5                                                                                                       0
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              0
## Activated Ntrk2 Signals Through Fyn                                                                                                        0
## Activated Ntrk2 Signals Through Pi3k                                                                                                       0
## Activated Ntrk2 Signals Through Ras                                                                                                        0
## Activated Ntrk3 Signals Through Pi3k                                                                                                       0
## Activated Ntrk3 Signals Through Ras                                                                                                        0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              0
## Activation Of Ampk Downstream Of Nmdars                                                                                                    0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       0
## Activation Of Atr In Response To Replication Stress                                                                                        0
## Activation Of Bad And Translocation To Mitochondria                                                                                        0
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                0
## Activation Of Gene Expression By Srebf Srebp                                                                                               0
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     0
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1
## Activation Of Noxa And Translocation To Mitochondria                                                                                       0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       0
## Activation Of Puma And Translocation To Mitochondria                                                                                       0
## Activation Of Rac1                                                                                                                         0
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    0
## Activation Of Ras In B Cells                                                                                                               0
## Activation Of Smo                                                                                                                          0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      0
## Activation Of The Phototransduction Cascade                                                                                                0
## Activation Of The Pre Replicative Complex                                                                                                  0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               0
## Activation Of Trka Receptors                                                                                                               0
## Acyl Chain Remodeling Of Cl                                                                                                                0
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       0
## Acyl Chain Remodelling Of Pc                                                                                                               0
## Acyl Chain Remodelling Of Pe                                                                                                               0
## Acyl Chain Remodelling Of Pg                                                                                                               0
## Acyl Chain Remodelling Of Pi                                                                                                               0
## Acyl Chain Remodelling Of Ps                                                                                                               0
## Adaptive Immune System                                                                                                                    17
## Adenylate Cyclase Activating Pathway                                                                                                       0
## Adenylate Cyclase Inhibitory Pathway                                                                                                       0
## Adherens Junctions Interactions                                                                                                            0
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    1
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  0
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        0
## Adrenoceptors                                                                                                                              0
## Aflatoxin Activation And Detoxification                                                                                                    0
## Aggrephagy                                                                                                                                 0
## Akt Phosphorylates Targets In The Cytosol                                                                                                  0
## Alpha Defensins                                                                                                                            0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 0
## Alpha Oxidation Of Phytanate                                                                                                               0
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   0
## Amine Ligand Binding Receptors                                                                                                             0
## Amino Acid Conjugation                                                                                                                     0
## Amino Acid Transport Across The Plasma Membrane                                                                                            0
## Amino Acids Regulate Mtorc1                                                                                                                0
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   0
## Amyloid Fiber Formation                                                                                                                    2
## Anchoring Fibril Formation                                                                                                                 0
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         1
## Androgen Biosynthesis                                                                                                                      0
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         2
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           0
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   0
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   0
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          1
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     0
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            0
## Apoptosis                                                                                                                                  5
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               0
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    0
## Apoptotic Factor Mediated Response                                                                                                         0
## Aquaporin Mediated Transport                                                                                                               0
## Arachidonate Production From Dag                                                                                                           0
## Arms Mediated Activation                                                                                                                   0
## Aryl Hydrocarbon Receptor Signalling                                                                                                       0
## Asparagine N Linked Glycosylation                                                                                                          3
## Aspartate And Asparagine Metabolism                                                                                                        0
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   0
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           0
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               0
## Assembly Of The Hiv Virion                                                                                                                 0
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   0
## Assembly Of The Pre Replicative Complex                                                                                                    0
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  0
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       0
## Attachment And Entry                                                                                                                       0
## Attachment Of Gpi Anchor To Upar                                                                                                           0
## Attenuation Phase                                                                                                                          0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  0
## Aurka Activation By Tpx2                                                                                                                   1
## Autophagy                                                                                                                                  1
## B Wich Complex Positively Regulates Rrna Expression                                                                                        0
## Base Excision Repair                                                                                                                       0
## Base Excision Repair Ap Site Formation                                                                                                     0
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  0
## Beta Catenin Independent Wnt Signaling                                                                                                     2
## Beta Catenin Phosphorylation Cascade                                                                                                       0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             0
## Beta Oxidation Of Pristanoyl Coa                                                                                                           0
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              0
## Bicarbonate Transporters                                                                                                                   0
## Bile Acid And Bile Salt Metabolism                                                                                                         0
## Biological Oxidations                                                                                                                      0
## Biosynthesis Of Maresin Like Spms                                                                                                          0
## Biosynthesis Of Maresins                                                                                                                   0
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         0
## Biotin Transport And Metabolism                                                                                                            0
## Blood Group Systems Biosynthesis                                                                                                           0
## Budding And Maturation Of Hiv Virion                                                                                                       0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                0
## Butyrophilin Btn Family Interactions                                                                                                       0
## C Type Lectin Receptors Clrs                                                                                                               3
## Ca2 Activated K Channels                                                                                                                   0
## Calcineurin Activates Nfat                                                                                                                 0
## Calcitonin Like Ligand Receptors                                                                                                           0
## Calnexin Calreticulin Cycle                                                                                                                0
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                0
## Cardiac Conduction                                                                                                                         1
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        1
## Cargo Trafficking To The Periciliary Membrane                                                                                              0
## Carnitine Metabolism                                                                                                                       0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         0
## Cation Coupled Chloride Cotransporters                                                                                                     0
## Cd209 Dc Sign Signaling                                                                                                                    0
## Cd22 Mediated Bcr Regulation                                                                                                               0
## Cdc42 Gtpase Cycle                                                                                                                         2
## Cdc6 Association With The Orc Origin Complex                                                                                               0
## Cell Cell Communication                                                                                                                    0
## Cell Cell Junction Organization                                                                                                            0
## Cell Cycle                                                                                                                                 2
## Cell Cycle Checkpoints                                                                                                                     1
## Cell Cycle Mitotic                                                                                                                         2
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              1
## Cell Extracellular Matrix Interactions                                                                                                     0
## Cell Junction Organization                                                                                                                 0
## Cell Surface Interactions At The Vascular Wall                                                                                             5
## Cellular Hexose Transport                                                                                                                  0
## Cellular Response To Chemical Stress                                                                                                       2
## Cellular Response To Heat Stress                                                                                                           1
## Cellular Response To Hypoxia                                                                                                               0
## Cellular Response To Starvation                                                                                                            0
## Cellular Responses To External Stimuli                                                                                                     8
## Cellular Senescence                                                                                                                        3
## Cgmp Effects                                                                                                                               0
## Chaperone Mediated Autophagy                                                                                                               0
## Chl1 Interactions                                                                                                                          0
## Cholesterol Biosynthesis                                                                                                                   0
## Choline Catabolism                                                                                                                         0
## Chondroitin Sulfate Biosynthesis                                                                                                           0
## Chrebp Activates Metabolic Gene Expression                                                                                                 0
## Chromatin Modifying Enzymes                                                                                                                1
## Chromosome Maintenance                                                                                                                     0
## Chylomicron Clearance                                                                                                                      0
## Cilium Assembly                                                                                                                            1
## Citric Acid Cycle Tca Cycle                                                                                                                0
## Class A 1 Rhodopsin Like Receptors                                                                                                        13
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       0
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       3
## Class I Peroxisomal Membrane Protein Import                                                                                                0
## Clathrin Mediated Endocytosis                                                                                                              1
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         0
## Coenzyme A Biosynthesis                                                                                                                    0
## Cohesin Loading Onto Chromatin                                                                                                             0
## Collagen Biosynthesis And Modifying Enzymes                                                                                                0
## Collagen Chain Trimerization                                                                                                               0
## Collagen Formation                                                                                                                         0
## Common Pathway Of Fibrin Clot Formation                                                                                                    0
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 0
## Complex I Biogenesis                                                                                                                       0
## Condensation Of Prophase Chromosomes                                                                                                       1
## Conjugation Of Benzoate With Glycine                                                                                                       0
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          1
## Constitutive Signaling By Egfrviii                                                                                                         0
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           0
## Constitutive Signaling By Overexpressed Erbb2                                                                                              0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         0
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              0
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            0
## Copi Mediated Anterograde Transport                                                                                                        2
## Creatine Metabolism                                                                                                                        0
## Creation Of C4 And C2 Activators                                                                                                           1
## Creb3 Factors Activate Genes                                                                                                               0
## Cristae Formation                                                                                                                          0
## Crmps In Sema3a Signaling                                                                                                                  0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 0
## Crosslinking Of Collagen Fibrils                                                                                                           0
## Cs Ds Degradation                                                                                                                          0
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           1
## Cyclin D Associated Events In G1                                                                                                           0
## Cyp2e1 Reactions                                                                                                                           0
## Cytochrome C Mediated Apoptotic Response                                                                                                   0
## Cytochrome P450 Arranged By Substrate Type                                                                                                 0
## Cytokine Signaling In Immune System                                                                                                       39
## Cytoprotection By Hmox1                                                                                                                    2
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     0
## Cytosolic Sulfonation Of Small Molecules                                                                                                   0
## Cytosolic Trna Aminoacylation                                                                                                              0
## Darpp 32 Events                                                                                                                            0
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   0
## Deadenylation Dependent Mrna Decay                                                                                                         0
## Deadenylation Of Mrna                                                                                                                      0
## Dectin 2 Family                                                                                                                            0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                0
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                0
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              0
## Defective Cftr Causes Cystic Fibrosis                                                                                                      0
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       0
## Defective Chst3 Causes Sedcjd                                                                                                              0
## Defective Chst6 Causes Mcdc1                                                                                                               0
## Defective Chsy1 Causes Tpbs                                                                                                                0
## Defective Csf2rb Causes Smdp5                                                                                                              0
## Defective Ext2 Causes Exostoses 2                                                                                                          0
## Defective F9 Activation                                                                                                                    0
## Defective Factor Ix Causes Hemophilia B                                                                                                    0
## Defective Factor Viii Causes Hemophilia A                                                                                                  0
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 0
## Defective Lfng Causes Scdo3                                                                                                                0
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                0
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  0
## Defects In Biotin Btn Metabolism                                                                                                           0
## Defects In Cobalamin B12 Metabolism                                                                                                        0
## Defects In Vitamin And Cofactor Metabolism                                                                                                 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   0
## Degradation Of Axin                                                                                                                        0
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     1
## Degradation Of Cysteine And Homocysteine                                                                                                   0
## Degradation Of Dvl                                                                                                                         0
## Degradation Of Gli1 By The Proteasome                                                                                                      0
## Degradation Of The Extracellular Matrix                                                                                                    1
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           0
## Detoxification Of Reactive Oxygen Species                                                                                                  0
## Deubiquitination                                                                                                                           7
## Developmental Biology                                                                                                                      7
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              0
## Digestion                                                                                                                                  0
## Digestion And Absorption                                                                                                                   0
## Digestion Of Dietary Carbohydrate                                                                                                          0
## Digestion Of Dietary Lipid                                                                                                                 0
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      0
## Diseases Associated With N Glycosylation Of Proteins                                                                                       0
## Diseases Associated With O Glycosylation Of Proteins                                                                                       0
## Diseases Associated With Surfactant Metabolism                                                                                             0
## Diseases Of Base Excision Repair                                                                                                           0
## Diseases Of Carbohydrate Metabolism                                                                                                        0
## Diseases Of Dna Repair                                                                                                                     0
## Diseases Of Glycosylation                                                                                                                  1
## Diseases Of Metabolism                                                                                                                     1
## Diseases Of Mismatch Repair Mmr                                                                                                            0
## Diseases Of Mitotic Cell Cycle                                                                                                             0
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           4
## Disinhibition Of Snare Formation                                                                                                           0
## Disorders Of Transmembrane Transporters                                                                                                    1
## Displacement Of Dna Glycosylase By Apex1                                                                                                   0
## Dna Damage Bypass                                                                                                                          0
## Dna Damage Recognition In Gg Ner                                                                                                           0
## Dna Damage Reversal                                                                                                                        0
## Dna Damage Telomere Stress Induced Senescence                                                                                              0
## Dna Double Strand Break Repair                                                                                                             1
## Dna Double Strand Break Response                                                                                                           1
## Dna Repair                                                                                                                                 1
## Dna Replication                                                                                                                            0
## Dna Replication Initiation                                                                                                                 0
## Dna Replication Pre Initiation                                                                                                             0
## Dna Strand Elongation                                                                                                                      0
## Dopamine Neurotransmitter Release Cycle                                                                                                    0
## Dopamine Receptors                                                                                                                         0
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    0
## Downregulation Of Erbb2 Signaling                                                                                                          0
## Downregulation Of Erbb4 Signaling                                                                                                          0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   0
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              0
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         1
## Downstream Signaling Of Activated Fgfr1                                                                                                    0
## Downstream Signaling Of Activated Fgfr2                                                                                                    0
## Downstream Signaling Of Activated Fgfr3                                                                                                    0
## Downstream Signaling Of Activated Fgfr4                                                                                                    0
## Dual Incision In Gg Ner                                                                                                                    0
## Dual Incision In Tc Ner                                                                                                                    0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          0
## Ecm Proteoglycans                                                                                                                          1
## Effects Of Pip2 Hydrolysis                                                                                                                 0
## Egfr Interacts With Phospholipase C Gamma                                                                                                  0
## Egfr Transactivation By Gastrin                                                                                                            0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             0
## Eicosanoid Ligand Binding Receptors                                                                                                        0
## Eicosanoids                                                                                                                                0
## Elastic Fibre Formation                                                                                                                    0
## Electric Transmission Across Gap Junctions                                                                                                 0
## Elevation Of Cytosolic Ca2 Levels                                                                                                          0
## Endogenous Sterols                                                                                                                         0
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           0
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     0
## Eph Ephrin Signaling                                                                                                                       1
## Epha Mediated Growth Cone Collapse                                                                                                         0
## Ephrin Signaling                                                                                                                           0
## Epigenetic Regulation Of Gene Expression                                                                                                   3
## Er Quality Control Compartment Erqc                                                                                                        0
## Er To Golgi Anterograde Transport                                                                                                          3
## Erbb2 Activates Ptk6 Signaling                                                                                                             0
## Erbb2 Regulates Cell Motility                                                                                                              0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                0
## Erk Mapk Targets                                                                                                                           0
## Erks Are Inactivated                                                                                                                       0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    0
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        0
## Erythropoietin Activates Ras                                                                                                               0
## Erythropoietin Activates Stat5                                                                                                             0
## Esr Mediated Signaling                                                                                                                     3
## Establishment Of Sister Chromatid Cohesion                                                                                                 0
## Estrogen Biosynthesis                                                                                                                      0
## Estrogen Dependent Gene Expression                                                                                                         1
## Estrogen Stimulated Signaling Through Prkcz                                                                                                0
## Ethanol Oxidation                                                                                                                          0
## Eukaryotic Translation Elongation                                                                                                          0
## Eukaryotic Translation Initiation                                                                                                          0
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            0
## Extension Of Telomeres                                                                                                                     0
## Extracellular Matrix Organization                                                                                                          3
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      1
## Fanconi Anemia Pathway                                                                                                                     0
## Fatty Acid Metabolism                                                                                                                      1
## Fatty Acids                                                                                                                                0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                0
## Fatty Acyl Coa Biosynthesis                                                                                                                0
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         0
## Fc Epsilon Receptor Fceri Signaling                                                                                                        2
## Fceri Mediated Ca 2 Mobilization                                                                                                           0
## Fceri Mediated Mapk Activation                                                                                                             1
## Fceri Mediated Nf Kb Activation                                                                                                            1
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               1
## Fcgr Activation                                                                                                                            0
## Fcgr3a Mediated Il10 Synthesis                                                                                                             1
## Fertilization                                                                                                                              0
## Fgfr1 Ligand Binding And Activation                                                                                                        0
## Fgfr1b Ligand Binding And Activation                                                                                                       0
## Fgfr1c Ligand Binding And Activation                                                                                                       0
## Fgfr2 Alternative Splicing                                                                                                                 0
## Fgfr2 Ligand Binding And Activation                                                                                                        0
## Fgfr2 Mutant Receptor Activation                                                                                                           0
## Fgfr2b Ligand Binding And Activation                                                                                                       0
## Fgfr2c Ligand Binding And Activation                                                                                                       0
## Fgfr3 Ligand Binding And Activation                                                                                                        0
## Fgfr3b Ligand Binding And Activation                                                                                                       0
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             0
## Flt3 Signaling                                                                                                                             0
## Flt3 Signaling By Cbl Mutants                                                                                                              0
## Flt3 Signaling In Disease                                                                                                                  0
## Flt3 Signaling Through Src Family Kinases                                                                                                  0
## Folding Of Actin By Cct Tric                                                                                                               0
## Formation Of Apoptosome                                                                                                                    0
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  0
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  0
## Formation Of Incision Complex In Gg Ner                                                                                                    0
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               0
## Formation Of Tc Ner Pre Incision Complex                                                                                                   0
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  1
## Formation Of The Cornified Envelope                                                                                                        0
## Formation Of The Early Elongation Complex                                                                                                  0
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     0
## Formation Of Xylulose 5 Phosphate                                                                                                          0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               0
## Free Fatty Acid Receptors                                                                                                                  0
## Free Fatty Acids Regulate Insulin Secretion                                                                                                0
## Frs Mediated Fgfr1 Signaling                                                                                                               0
## Frs Mediated Fgfr2 Signaling                                                                                                               0
## Frs Mediated Fgfr3 Signaling                                                                                                               0
## Frs Mediated Fgfr4 Signaling                                                                                                               0
## Fructose Catabolism                                                                                                                        0
## Fructose Metabolism                                                                                                                        0
## G Alpha 12 13 Signalling Events                                                                                                            0
## G Alpha I Signalling Events                                                                                                               10
## G Alpha Q Signalling Events                                                                                                                2
## G Alpha S Signalling Events                                                                                                                0
## G Alpha Z Signalling Events                                                                                                                0
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  0
## G Protein Activation                                                                                                                       0
## G1 S Dna Damage Checkpoints                                                                                                                0
## G2 M Checkpoints                                                                                                                           1
## G2 M Dna Damage Checkpoint                                                                                                                 1
## G2 Phase                                                                                                                                   0
## Gab1 Signalosome                                                                                                                           0
## Gaba B Receptor Activation                                                                                                                 0
## Gaba Receptor Activation                                                                                                                   0
## Gaba Synthesis Release Reuptake And Degradation                                                                                            0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    0
## Gap Junction Assembly                                                                                                                      0
## Gap Junction Degradation                                                                                                                   0
## Gap Junction Trafficking And Regulation                                                                                                    0
## Gdp Fucose Biosynthesis                                                                                                                    0
## Gene Silencing By Rna                                                                                                                      0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                0
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   0
## Glucagon Signaling In Metabolic Regulation                                                                                                 0
## Glucagon Type Ligand Receptors                                                                                                             0
## Glucocorticoid Biosynthesis                                                                                                                0
## Gluconeogenesis                                                                                                                            0
## Glucose Metabolism                                                                                                                         0
## Glucuronidation                                                                                                                            0
## Glutamate And Glutamine Metabolism                                                                                                         0
## Glutamate Neurotransmitter Release Cycle                                                                                                   0
## Glutathione Conjugation                                                                                                                    0
## Glutathione Synthesis And Recycling                                                                                                        0
## Glycerophospholipid Biosynthesis                                                                                                           0
## Glycerophospholipid Catabolism                                                                                                             0
## Glycogen Breakdown Glycogenolysis                                                                                                          0
## Glycogen Metabolism                                                                                                                        0
## Glycogen Storage Diseases                                                                                                                  0
## Glycogen Synthesis                                                                                                                         0
## Glycolysis                                                                                                                                 0
## Glycosaminoglycan Metabolism                                                                                                               1
## Glycosphingolipid Metabolism                                                                                                               0
## Glyoxylate Metabolism And Glycine Degradation                                                                                              0
## Golgi Associated Vesicle Biogenesis                                                                                                        0
## Golgi To Er Retrograde Transport                                                                                                           0
## Gp1b Ix V Activation Signalling                                                                                                            0
## Gpcr Ligand Binding                                                                                                                       15
## Grb2 Events In Erbb2 Signaling                                                                                                             0
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  0
## Grb7 Events In Erbb2 Signaling                                                                                                             0
## Hats Acetylate Histones                                                                                                                    0
## Hcmv Early Events                                                                                                                          1
## Hcmv Infection                                                                                                                             1
## Hcmv Late Events                                                                                                                           0
## Hdacs Deacetylate Histones                                                                                                                 0
## Hdms Demethylate Histones                                                                                                                  0
## Hdr Through Homologous Recombination Hrr                                                                                                   0
## Hdr Through Mmej Alt Nhej                                                                                                                  0
## Hdr Through Single Strand Annealing Ssa                                                                                                    0
## Hedgehog Ligand Biogenesis                                                                                                                 0
## Hedgehog Off State                                                                                                                         0
## Hedgehog On State                                                                                                                          0
## Heme Biosynthesis                                                                                                                          0
## Heme Degradation                                                                                                                           0
## Hemostasis                                                                                                                                 9
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     0
## Histidine Catabolism                                                                                                                       0
## Hiv Elongation Arrest And Recovery                                                                                                         0
## Hiv Infection                                                                                                                              1
## Hiv Life Cycle                                                                                                                             1
## Hiv Transcription Elongation                                                                                                               0
## Hiv Transcription Initiation                                                                                                               0
## Homologous Dna Pairing And Strand Exchange                                                                                                 0
## Homology Directed Repair                                                                                                                   0
## Hormone Ligand Binding Receptors                                                                                                           0
## Host Interactions Of Hiv Factors                                                                                                           0
## Hs Gag Biosynthesis                                                                                                                        0
## Hs Gag Degradation                                                                                                                         0
## Hsf1 Activation                                                                                                                            0
## Hsf1 Dependent Transactivation                                                                                                             0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    0
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       0
## Hyaluronan Biosynthesis And Export                                                                                                         0
## Hyaluronan Metabolism                                                                                                                      0
## Hyaluronan Uptake And Degradation                                                                                                          0
## Hydrolysis Of Lpc                                                                                                                          0
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            0
## Infection With Mycobacterium Tuberculosis                                                                                                  0
## Infectious Disease                                                                                                                        11
## Influenza Infection                                                                                                                        0
## Inhibition Of Dna Recombination At Telomere                                                                                                0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               0
## Innate Immune System                                                                                                                      38
## Inositol Phosphate Metabolism                                                                                                              0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                0
## Insulin Processing                                                                                                                         0
## Insulin Receptor Recycling                                                                                                                 0
## Integration Of Energy Metabolism                                                                                                           0
## Integration Of Provirus                                                                                                                    0
## Integrin Cell Surface Interactions                                                                                                         0
## Integrin Signaling                                                                                                                         0
## Interaction Between L1 And Ankyrins                                                                                                        0
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      0
## Interactions Of Rev With Host Cellular Proteins                                                                                            0
## Interactions Of Vpr With Host Cellular Proteins                                                                                            0
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         0
## Interferon Signaling                                                                                                                       3
## Interleukin 36 Pathway                                                                                                                     0
## Intestinal Absorption                                                                                                                      0
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             0
## Intra Golgi Traffic                                                                                                                        0
## Intracellular Signaling By Second Messengers                                                                                               3
## Intraflagellar Transport                                                                                                                   0
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Inwardly Rectifying K Channels                                                                                                             0
## Ion Channel Transport                                                                                                                      0
## Ion Homeostasis                                                                                                                            0
## Ion Transport By P Type Atpases                                                                                                            0
## Ionotropic Activity Of Kainate Receptors                                                                                                   0
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  0
## Ire1alpha Activates Chaperones                                                                                                             0
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     0
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      0
## Iron Uptake And Transport                                                                                                                  0
## Irs Activation                                                                                                                             0
## Josephin Domain Dubs                                                                                                                       0
## Keratan Sulfate Biosynthesis                                                                                                               0
## Keratan Sulfate Degradation                                                                                                                0
## Keratan Sulfate Keratin Metabolism                                                                                                         0
## Keratinization                                                                                                                             0
## Ketone Body Metabolism                                                                                                                     0
## Kinesins                                                                                                                                   0
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     0
## L1cam Interactions                                                                                                                         0
## Lagging Strand Synthesis                                                                                                                   0
## Laminin Interactions                                                                                                                       0
## Late Endosomal Microautophagy                                                                                                              0
## Ldl Clearance                                                                                                                              0
## Lectin Pathway Of Complement Activation                                                                                                    0
## Leishmania Infection                                                                                                                       9
## Leukotriene Receptors                                                                                                                      0
## Lgi Adam Interactions                                                                                                                      0
## Ligand Receptor Interactions                                                                                                               0
## Linoleic Acid La Metabolism                                                                                                                0
## Lipid Particle Organization                                                                                                                0
## Lipophagy                                                                                                                                  0
## Listeria Monocytogenes Entry Into Host Cells                                                                                               0
## Long Term Potentiation                                                                                                                     0
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 0
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     0
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        0
## Lysine Catabolism                                                                                                                          0
## Lysosome Vesicle Biogenesis                                                                                                                0
## Lysosphingolipid And Lpa Receptors                                                                                                         0
## M Phase                                                                                                                                    1
## Map2k And Mapk Activation                                                                                                                  0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   0
## Mapk Family Signaling Cascades                                                                                                             5
## Mapk1 Erk2 Activation                                                                                                                      0
## Maturation Of Nucleoprotein                                                                                                                0
## Maturation Of Protein 3a                                                                                                                   0
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     0
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     0
## Meiosis                                                                                                                                    0
## Meiotic Recombination                                                                                                                      0
## Meiotic Synapsis                                                                                                                           0
## Melanin Biosynthesis                                                                                                                       0
## Membrane Trafficking                                                                                                                       4
## Met Activates Pi3k Akt Signaling                                                                                                           0
## Met Activates Ptk2 Signaling                                                                                                               0
## Met Activates Ptpn11                                                                                                                       0
## Met Activates Rap1 And Rac1                                                                                                                0
## Met Activates Ras Signaling                                                                                                                0
## Met Interacts With Tns Proteins                                                                                                            0
## Met Promotes Cell Motility                                                                                                                 0
## Met Receptor Activation                                                                                                                    0
## Met Receptor Recycling                                                                                                                     0
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        0
## Metabolism Of Amine Derived Hormones                                                                                                       0
## Metabolism Of Amino Acids And Derivatives                                                                                                  1
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              0
## Metabolism Of Carbohydrates                                                                                                                2
## Metabolism Of Cofactors                                                                                                                    0
## Metabolism Of Folate And Pterines                                                                                                          0
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           0
## Metabolism Of Lipids                                                                                                                       3
## Metabolism Of Nucleotides                                                                                                                  0
## Metabolism Of Polyamines                                                                                                                   0
## Metabolism Of Porphyrins                                                                                                                   0
## Metabolism Of Rna                                                                                                                          0
## Metabolism Of Steroid Hormones                                                                                                             0
## Metabolism Of Steroids                                                                                                                     0
## Metabolism Of Vitamins And Cofactors                                                                                                       3
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         2
## Metal Ion Slc Transporters                                                                                                                 0
## Metal Sequestration By Antimicrobial Proteins                                                                                              0
## Metallothioneins Bind Metals                                                                                                               0
## Methionine Salvage Pathway                                                                                                                 0
## Methylation                                                                                                                                0
## Mhc Class Ii Antigen Presentation                                                                                                          2
## Microrna Mirna Biogenesis                                                                                                                  0
## Mineralocorticoid Biosynthesis                                                                                                             0
## Miro Gtpase Cycle                                                                                                                          0
## Miscellaneous Substrates                                                                                                                   0
## Miscellaneous Transport And Binding Events                                                                                                 0
## Mismatch Repair                                                                                                                            0
## Mitochondrial Biogenesis                                                                                                                   1
## Mitochondrial Calcium Ion Transport                                                                                                        0
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         0
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               0
## Mitochondrial Protein Import                                                                                                               0
## Mitochondrial Translation                                                                                                                  0
## Mitochondrial Trna Aminoacylation                                                                                                          0
## Mitochondrial Uncoupling                                                                                                                   0
## Mitotic G1 Phase And G1 S Transition                                                                                                       2
## Mitotic G2 G2 M Phases                                                                                                                     1
## Mitotic Metaphase And Anaphase                                                                                                             1
## Mitotic Prometaphase                                                                                                                       1
## Mitotic Prophase                                                                                                                           1
## Mitotic Spindle Checkpoint                                                                                                                 0
## Mitotic Telophase Cytokinesis                                                                                                              0
## Modulation By Mtb Of Host Immune System                                                                                                    0
## Molecules Associated With Elastic Fibres                                                                                                   0
## Molybdenum Cofactor Biosynthesis                                                                                                           0
## Mrna Capping                                                                                                                               0
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       0
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       0
## Mrna Editing                                                                                                                               0
## Mrna Editing C To U Conversion                                                                                                             0
## Mrna Splicing                                                                                                                              0
## Mrna Splicing Minor Pathway                                                                                                                0
## Mtor Signalling                                                                                                                            0
## Mtorc1 Mediated Signalling                                                                                                                 0
## Mucopolysaccharidoses                                                                                                                      0
## Multifunctional Anion Exchangers                                                                                                           0
## Muscarinic Acetylcholine Receptors                                                                                                         0
## Muscle Contraction                                                                                                                         1
## Myoclonic Epilepsy Of Lafora                                                                                                               0
## N Glycan Antennae Elongation                                                                                                               0
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     0
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                0
## Na Cl Dependent Neurotransmitter Transporters                                                                                              0
## Nade Modulates Death Signalling                                                                                                            0
## Ncam1 Interactions                                                                                                                         0
## Nectin Necl Trans Heterodimerization                                                                                                       0
## Neddylation                                                                                                                                0
## Nef And Signal Transduction                                                                                                                0
## Nef Mediated Cd4 Down Regulation                                                                                                           0
## Nef Mediated Cd8 Down Regulation                                                                                                           0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             0
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          2
## Negative Feedback Regulation Of Mapk Pathway                                                                                               0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 0
## Negative Regulation Of Fgfr1 Signaling                                                                                                     0
## Negative Regulation Of Fgfr2 Signaling                                                                                                     0
## Negative Regulation Of Fgfr3 Signaling                                                                                                     0
## Negative Regulation Of Fgfr4 Signaling                                                                                                     0
## Negative Regulation Of Flt3                                                                                                                0
## Negative Regulation Of Mapk Pathway                                                                                                        0
## Negative Regulation Of Met Activity                                                                                                        0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        0
## Negative Regulation Of Notch4 Signaling                                                                                                    0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 0
## Negative Regulation Of The Pi3k Akt Network                                                                                                2
## Nephrin Family Interactions                                                                                                                0
## Nervous System Development                                                                                                                 4
## Netrin Mediated Repulsion Signals                                                                                                          0
## Neurexins And Neuroligins                                                                                                                  0
## Neurofascin Interactions                                                                                                                   0
## Neuronal System                                                                                                                            2
## Neurotoxicity Of Clostridium Toxins                                                                                                        0
## Neurotransmitter Clearance                                                                                                                 0
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1
## Neurotransmitter Release Cycle                                                                                                             0
## Neutrophil Degranulation                                                                                                                  17
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   0
## Ngf Independant Trka Activation                                                                                                            0
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  0
## Non Integrin Membrane Ecm Interactions                                                                                                     0
## Noncanonical Activation Of Notch3                                                                                                          0
## Nonhomologous End Joining Nhej                                                                                                             0
## Nonsense Mediated Decay Nmd                                                                                                                0
## Norepinephrine Neurotransmitter Release Cycle                                                                                              0
## Notch Hlh Transcription Pathway                                                                                                            0
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Intracellular Domain Regulates Transcription                                                                                        0
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch4 Intracellular Domain Regulates Transcription                                                                                        0
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            0
## Nrcam Interactions                                                                                                                         0
## Ns1 Mediated Effects On Host Pathways                                                                                                      0
## Ntrk2 Activates Rac1                                                                                                                       0
## Nuclear Envelope Ne Reassembly                                                                                                             1
## Nuclear Import Of Rev Protein                                                                                                              0
## Nuclear Receptor Transcription Pathway                                                                                                     0
## Nuclear Signaling By Erbb4                                                                                                                 0
## Nucleobase Biosynthesis                                                                                                                    0
## Nucleobase Catabolism                                                                                                                      0
## Nucleotide Excision Repair                                                                                                                 0
## Nucleotide Like Purinergic Receptors                                                                                                       0
## Nucleotide Salvage                                                                                                                         0
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          0
## O Linked Glycosylation                                                                                                                     0
## O Linked Glycosylation Of Mucins                                                                                                           0
## Oas Antiviral Response                                                                                                                     0
## Olfactory Signaling Pathway                                                                                                                0
## Oncogene Induced Senescence                                                                                                                0
## Oncogenic Mapk Signaling                                                                                                                   0
## Opioid Signalling                                                                                                                          1
## Opsins                                                                                                                                     0
## Orc1 Removal From Chromatin                                                                                                                0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    0
## Organelle Biogenesis And Maintenance                                                                                                       2
## Organic Anion Transport                                                                                                                    0
## Organic Anion Transporters                                                                                                                 0
## Organic Cation Anion Zwitterion Transport                                                                                                  0
## Organic Cation Transport                                                                                                                   0
## Other Interleukin Signaling                                                                                                                0
## Oxidative Stress Induced Senescence                                                                                                        1
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            0
## P2y Receptors                                                                                                                              0
## P38mapk Events                                                                                                                             0
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             0
## P75ntr Regulates Axonogenesis                                                                                                              0
## Parasite Infection                                                                                                                         1
## Passive Transport By Aquaporins                                                                                                            0
## Pcna Dependent Long Patch Base Excision Repair                                                                                             0
## Pcp Ce Pathway                                                                                                                             1
## Pecam1 Interactions                                                                                                                        0
## Pentose Phosphate Pathway                                                                                                                  0
## Peptide Hormone Biosynthesis                                                                                                               0
## Peptide Hormone Metabolism                                                                                                                 1
## Peroxisomal Lipid Metabolism                                                                                                               0
## Peroxisomal Protein Import                                                                                                                 0
## Pexophagy                                                                                                                                  0
## Phase 0 Rapid Depolarisation                                                                                                               0
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   0
## Phase 2 Plateau Phase                                                                                                                      0
## Phase 3 Rapid Repolarisation                                                                                                               0
## Phase I Functionalization Of Compounds                                                                                                     0
## Phase Ii Conjugation Of Compounds                                                                                                          0
## Phenylalanine And Tyrosine Metabolism                                                                                                      0
## Phenylalanine Metabolism                                                                                                                   0
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              0
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 0
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     0
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     0
## Phospholipid Metabolism                                                                                                                    0
## Physiological Factors                                                                                                                      0
## Pi 3k Cascade Fgfr1                                                                                                                        0
## Pi 3k Cascade Fgfr2                                                                                                                        0
## Pi 3k Cascade Fgfr3                                                                                                                        0
## Pi 3k Cascade Fgfr4                                                                                                                        0
## Pi Metabolism                                                                                                                              0
## Pi3k Akt Activation                                                                                                                        0
## Pi3k Akt Signaling In Cancer                                                                                                               2
## Pi3k Events In Erbb2 Signaling                                                                                                             0
## Pi3k Events In Erbb4 Signaling                                                                                                             0
## Pi5p Regulates Tp53 Acetylation                                                                                                            0
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      0
## Pka Activation In Glucagon Signalling                                                                                                      0
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      0
## Pkmts Methylate Histone Lysines                                                                                                            0
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1
## Platelet Activation Signaling And Aggregation                                                                                              4
## Platelet Adhesion To Exposed Collagen                                                                                                      0
## Platelet Aggregation Plug Formation                                                                                                        0
## Platelet Calcium Homeostasis                                                                                                               0
## Platelet Homeostasis                                                                                                                       0
## Platelet Sensitization By Ldl                                                                                                              0
## Polb Dependent Long Patch Base Excision Repair                                                                                             0
## Polo Like Kinase Mediated Events                                                                                                           0
## Polymerase Switching                                                                                                                       0
## Polymerase Switching On The C Strand Of The Telomere                                                                                       0
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          0
## Post Chaperonin Tubulin Folding Pathway                                                                                                    0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         1
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           0
## Potassium Channels                                                                                                                         1
## Potential Therapeutics For Sars                                                                                                            1
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   0
## Pre Notch Expression And Processing                                                                                                        0
## Pre Notch Processing In Golgi                                                                                                              0
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          0
## Pregnenolone Biosynthesis                                                                                                                  0
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     0
## Presynaptic Function Of Kainate Receptors                                                                                                  0
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  0
## Processing And Activation Of Sumo                                                                                                          0
## Processing Of Capped Intron Containing Pre Mrna                                                                                            0
## Processing Of Capped Intronless Pre Mrna                                                                                                   0
## Processing Of Dna Double Strand Break Ends                                                                                                 0
## Processing Of Intronless Pre Mrnas                                                                                                         0
## Processing Of Smdt1                                                                                                                        0
## Processive Synthesis On The C Strand Of The Telomere                                                                                       0
## Processive Synthesis On The Lagging Strand                                                                                                 0
## Prolactin Receptor Signaling                                                                                                               0
## Prolonged Erk Activation Events                                                                                                            0
## Propionyl Coa Catabolism                                                                                                                   0
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      0
## Prostanoid Ligand Receptors                                                                                                                0
## Protein Folding                                                                                                                            1
## Protein Localization                                                                                                                       0
## Protein Methylation                                                                                                                        0
## Protein Protein Interactions At Synapses                                                                                                   0
## Protein Repair                                                                                                                             0
## Protein Ubiquitination                                                                                                                     0
## Proton Coupled Monocarboxylate Transport                                                                                                   0
## Pten Regulation                                                                                                                            0
## Ptk6 Expression                                                                                                                            0
## Ptk6 Promotes Hif1a Stabilization                                                                                                          0
## Ptk6 Regulates Cell Cycle                                                                                                                  0
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      0
## Purine Catabolism                                                                                                                          0
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           0
## Purine Salvage                                                                                                                             0
## Pyrimidine Catabolism                                                                                                                      0
## Pyrimidine Salvage                                                                                                                         0
## Pyruvate Metabolism                                                                                                                        0
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              0
## Ra Biosynthesis Pathway                                                                                                                    0
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      0
## Rab Geranylgeranylation                                                                                                                    0
## Rab Regulation Of Trafficking                                                                                                              0
## Rac1 Gtpase Cycle                                                                                                                          2
## Raf Activation                                                                                                                             0
## Rap1 Signalling                                                                                                                            0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       0
## Ras Processing                                                                                                                             0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  0
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               0
## Receptor Type Tyrosine Protein Phosphatases                                                                                                0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     0
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           0
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   1
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 1
## Recycling Of Bile Acids And Salts                                                                                                          0
## Recycling Of Eif2 Gdp                                                                                                                      0
## Recycling Pathway Of L1                                                                                                                    0
## Reduction Of Cytosolic Ca Levels                                                                                                           0
## Reelin Signalling Pathway                                                                                                                  0
## Regulated Proteolysis Of P75ntr                                                                                                            0
## Regulation Of Bach1 Activity                                                                                                               0
## Regulation Of Beta Cell Development                                                                                                        0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         0
## Regulation Of Expression Of Slits And Robos                                                                                                0
## Regulation Of Fzd By Ubiquitination                                                                                                        0
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  0
## Regulation Of Gene Expression In Beta Cells                                                                                                0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           0
## Regulation Of Hmox1 Expression And Activity                                                                                                0
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            1
## Regulation Of Ifna Signaling                                                                                                               0
## Regulation Of Ifng Signaling                                                                                                               0
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     0
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    3
## Regulation Of Insulin Secretion                                                                                                            0
## Regulation Of Kit Signaling                                                                                                                0
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                1
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        0
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             1
## Regulation Of Pten Gene Transcription                                                                                                      0
## Regulation Of Pten Localization                                                                                                            0
## Regulation Of Pten Mrna Translation                                                                                                        0
## Regulation Of Pten Stability And Activity                                                                                                  0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           0
## Regulation Of Ras By Gaps                                                                                                                  0
## Regulation Of Runx1 Expression And Activity                                                                                                0
## Regulation Of Runx2 Expression And Activity                                                                                                0
## Regulation Of Runx3 Expression And Activity                                                                                                0
## Regulation Of Signaling By Cbl                                                                                                             0
## Regulation Of Signaling By Nodal                                                                                                           0
## Regulation Of Tp53 Activity                                                                                                                1
## Regulation Of Tp53 Activity Through Acetylation                                                                                            0
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            0
## Regulation Of Tp53 Activity Through Methylation                                                                                            0
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        0
## Relaxin Receptors                                                                                                                          0
## Release Of Apoptotic Factors From The Mitochondria                                                                                         0
## Release Of Hh Np From The Secreting Cell                                                                                                   0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      0
## Reproduction                                                                                                                               0
## Resolution Of Abasic Sites Ap Sites                                                                                                        0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               0
## Resolution Of D Loop Structures                                                                                                            0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          0
## Resolution Of Sister Chromatid Cohesion                                                                                                    1
## Respiratory Electron Transport                                                                                                             0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           0
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          0
## Response Of Mtb To Phagocytosis                                                                                                            0
## Response To Elevated Platelet Cytosolic Ca2                                                                                                3
## Response To Metal Ions                                                                                                                     0
## Ret Signaling                                                                                                                              0
## Retinoid Cycle Disease Events                                                                                                              0
## Retrograde Neurotrophin Signalling                                                                                                         0
## Retrograde Transport At The Trans Golgi Network                                                                                            0
## Reversible Hydration Of Carbon Dioxide                                                                                                     0
## Rho Gtpase Cycle                                                                                                                           2
## Rho Gtpase Effectors                                                                                                                       1
## Rho Gtpases Activate Cit                                                                                                                   0
## Rho Gtpases Activate Formins                                                                                                               1
## Rho Gtpases Activate Nadph Oxidases                                                                                                        0
## Rho Gtpases Activate Pkns                                                                                                                  0
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               0
## Rho Gtpases Activate Rocks                                                                                                                 0
## Rhoa Gtpase Cycle                                                                                                                          1
## Rhobtb Gtpase Cycle                                                                                                                        0
## Rhobtb1 Gtpase Cycle                                                                                                                       0
## Rhobtb2 Gtpase Cycle                                                                                                                       0
## Rhobtb3 Atpase Cycle                                                                                                                       0
## Rhoc Gtpase Cycle                                                                                                                          1
## Rhot1 Gtpase Cycle                                                                                                                         0
## Rmts Methylate Histone Arginines                                                                                                           1
## Rna Polymerase I Promoter Escape                                                                                                           0
## Rna Polymerase I Transcription                                                                                                             0
## Rna Polymerase I Transcription Initiation                                                                                                  0
## Rna Polymerase I Transcription Termination                                                                                                 0
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  0
## Rna Polymerase Ii Transcription Termination                                                                                                0
## Rna Polymerase Iii Chain Elongation                                                                                                        0
## Rna Polymerase Iii Transcription                                                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           0
## Rna Polymerase Iii Transcription Termination                                                                                               0
## Robo Receptors Bind Akap5                                                                                                                  0
## Role Of Abl In Robo Slit Signaling                                                                                                         0
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              0
## Role Of Phospholipids In Phagocytosis                                                                                                      0
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            0
## Rora Activates Gene Expression                                                                                                             0
## Rrna Modification In The Mitochondrion                                                                                                     0
## Rrna Modification In The Nucleus And Cytosol                                                                                               0
## Rrna Processing                                                                                                                            0
## Rrna Processing In The Mitochondrion                                                                                                       0
## Rsk Activation                                                                                                                             0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         0
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   0
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           0
## Runx2 Regulates Bone Development                                                                                                           0
## Runx2 Regulates Chondrocyte Maturation                                                                                                     0
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           0
## Runx2 Regulates Osteoblast Differentiation                                                                                                 0
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  0
## Runx3 Regulates Cdkn1a Transcription                                                                                                       0
## Runx3 Regulates Immune Response And Cell Migration                                                                                         0
## Runx3 Regulates Notch Signaling                                                                                                            0
## Runx3 Regulates P14 Arf                                                                                                                    0
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                0
## S Phase                                                                                                                                    1
## Sars Cov 1 Genome Replication And Transcription                                                                                            0
## Sars Cov 1 Infection                                                                                                                       0
## Sars Cov 2 Infection                                                                                                                       0
## Sars Cov Infections                                                                                                                        1
## Scavenging By Class F Receptors                                                                                                            0
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            0
## Selective Autophagy                                                                                                                        1
## Selenoamino Acid Metabolism                                                                                                                0
## Sema3a Pak Dependent Axon Repulsion                                                                                                        0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          0
## Sema4d In Semaphorin Signaling                                                                                                             0
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                0
## Senescence Associated Secretory Phenotype Sasp                                                                                             2
## Sensing Of Dna Double Strand Breaks                                                                                                        0
## Sensory Perception                                                                                                                         1
## Sensory Processing Of Sound                                                                                                                0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             0
## Separation Of Sister Chromatids                                                                                                            0
## Serine Biosynthesis                                                                                                                        0
## Serotonin And Melatonin Biosynthesis                                                                                                       0
## Serotonin Neurotransmitter Release Cycle                                                                                                   0
## Serotonin Receptors                                                                                                                        0
## Shc Mediated Cascade Fgfr1                                                                                                                 0
## Shc Mediated Cascade Fgfr3                                                                                                                 0
## Shc Mediated Cascade Fgfr4                                                                                                                 0
## Shc Related Events Triggered By Igf1r                                                                                                      0
## Shc1 Events In Egfr Signaling                                                                                                              0
## Shc1 Events In Erbb2 Signaling                                                                                                             0
## Shc1 Events In Erbb4 Signaling                                                                                                             0
## Sialic Acid Metabolism                                                                                                                     0
## Signal Amplification                                                                                                                       0
## Signal Attenuation                                                                                                                         0
## Signal Regulatory Protein Family Interactions                                                                                              0
## Signal Transduction By L1                                                                                                                  0
## Signaling By Activin                                                                                                                       0
## Signaling By Bmp                                                                                                                           0
## Signaling By Braf And Raf Fusions                                                                                                          0
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   0
## Signaling By Egfr In Cancer                                                                                                                0
## Signaling By Erbb2                                                                                                                         0
## Signaling By Erbb2 Ecd Mutants                                                                                                             0
## Signaling By Erbb2 In Cancer                                                                                                               0
## Signaling By Erbb4                                                                                                                         0
## Signaling By Erythropoietin                                                                                                                0
## Signaling By Fgfr                                                                                                                          0
## Signaling By Fgfr1                                                                                                                         0
## Signaling By Fgfr2                                                                                                                         0
## Signaling By Fgfr2 Iiia Tm                                                                                                                 0
## Signaling By Fgfr2 In Disease                                                                                                              0
## Signaling By Fgfr3                                                                                                                         0
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       0
## Signaling By Fgfr4                                                                                                                         0
## Signaling By Fgfr4 In Disease                                                                                                              0
## Signaling By Flt3 Fusion Proteins                                                                                                          0
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      0
## Signaling By Gpcr                                                                                                                         17
## Signaling By Hedgehog                                                                                                                      0
## Signaling By Hippo                                                                                                                         0
## Signaling By Insulin Receptor                                                                                                              1
## Signaling By Lrp5 Mutants                                                                                                                  0
## Signaling By Mapk Mutants                                                                                                                  0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 0
## Signaling By Met                                                                                                                           1
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         0
## Signaling By Mras Complex Mutants                                                                                                          0
## Signaling By Mst1                                                                                                                          0
## Signaling By Nodal                                                                                                                         0
## Signaling By Notch                                                                                                                         2
## Signaling By Notch1                                                                                                                        1
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          0
## Signaling By Notch3                                                                                                                        0
## Signaling By Notch4                                                                                                                        0
## Signaling By Ntrk2 Trkb                                                                                                                    0
## Signaling By Ntrk3 Trkc                                                                                                                    0
## Signaling By Ntrks                                                                                                                         2
## Signaling By Nuclear Receptors                                                                                                             3
## Signaling By Receptor Tyrosine Kinases                                                                                                     5
## Signaling By Retinoic Acid                                                                                                                 0
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          2
## Signaling By Rnf43 Mutants                                                                                                                 0
## Signaling By Robo Receptors                                                                                                                1
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           0
## Signaling By Tgfb Family Members                                                                                                           2
## Signaling By The B Cell Receptor Bcr                                                                                                       1
## Signaling By Vegf                                                                                                                          2
## Signaling By Wnt                                                                                                                           3
## Signaling By Wnt In Cancer                                                                                                                 0
## Signalling To Erks                                                                                                                         0
## Signalling To P38 Via Rit And Rin                                                                                                          0
## Signalling To Ras                                                                                                                          0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       0
## Slc Mediated Transmembrane Transport                                                                                                       0
## Slc Transporter Disorders                                                                                                                  0
## Smac Xiap Regulated Apoptotic Response                                                                                                     0
## Small Interfering Rna Sirna Biogenesis                                                                                                     0
## Smooth Muscle Contraction                                                                                                                  0
## Snrnp Assembly                                                                                                                             0
## Sodium Calcium Exchangers                                                                                                                  0
## Sodium Coupled Phosphate Cotransporters                                                                                                    0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                0
## Sodium Proton Exchangers                                                                                                                   0
## Sos Mediated Signalling                                                                                                                    0
## Sperm Motility And Taxes                                                                                                                   0
## Sphingolipid De Novo Biosynthesis                                                                                                          0
## Sphingolipid Metabolism                                                                                                                    0
## Spry Regulation Of Fgf Signaling                                                                                                           0
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                0
## Stabilization Of P53                                                                                                                       0
## Stat5 Activation                                                                                                                           0
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            0
## Stimuli Sensing Channels                                                                                                                   0
## Sting Mediated Induction Of Host Immune Responses                                                                                          0
## Striated Muscle Contraction                                                                                                                0
## Sulfide Oxidation To Sulfate                                                                                                               0
## Sulfur Amino Acid Metabolism                                                                                                               0
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         0
## Sumo Is Proteolytically Processed                                                                                                          0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               0
## Sumoylation                                                                                                                                3
## Sumoylation Of Chromatin Organization Proteins                                                                                             0
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     0
## Sumoylation Of Dna Replication Proteins                                                                                                    0
## Sumoylation Of Intracellular Receptors                                                                                                     0
## Sumoylation Of Rna Binding Proteins                                                                                                        0
## Sumoylation Of Sumoylation Proteins                                                                                                        0
## Sumoylation Of Transcription Cofactors                                                                                                     0
## Sumoylation Of Transcription Factors                                                                                                       0
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   0
## Suppression Of Apoptosis                                                                                                                   0
## Suppression Of Phagosomal Maturation                                                                                                       0
## Surfactant Metabolism                                                                                                                      0
## Switching Of Origins To A Post Replicative State                                                                                           0
## Synaptic Adhesion Like Molecules                                                                                                           0
## Syndecan Interactions                                                                                                                      0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      0
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   0
## Synthesis Of Bile Acids And Bile Salts                                                                                                     0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       0
## Synthesis Of Diphthamide Eef2                                                                                                              0
## Synthesis Of Dolichyl Phosphate                                                                                                            0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              0
## Synthesis Of Gdp Mannose                                                                                                                   0
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              0
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 0
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    0
## Synthesis Of Ketone Bodies                                                                                                                 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 0
## Synthesis Of Lipoxins Lx                                                                                                                   0
## Synthesis Of Pa                                                                                                                            0
## Synthesis Of Pc                                                                                                                            0
## Synthesis Of Pe                                                                                                                            0
## Synthesis Of Pg                                                                                                                            0
## Synthesis Of Pi                                                                                                                            0
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           0
## Synthesis Of Pips At The Er Membrane                                                                                                       0
## Synthesis Of Pips At The Golgi Membrane                                                                                                    0
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            0
## Synthesis Of Pips At The Plasma Membrane                                                                                                   0
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 0
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            0
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      0
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               0
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 0
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             0
## Tachykinin Receptors Bind Tachykinins                                                                                                      0
## Tbc Rabgaps                                                                                                                                0
## Tcf Dependent Signaling In Response To Wnt                                                                                                 3
## Tcr Signaling                                                                                                                              3
## Telomere C Strand Lagging Strand Synthesis                                                                                                 0
## Telomere C Strand Synthesis Initiation                                                                                                     0
## Telomere Extension By Telomerase                                                                                                           0
## Telomere Maintenance                                                                                                                       0
## Terminal Pathway Of Complement                                                                                                             0
## Termination Of O Glycan Biosynthesis                                                                                                       0
## Termination Of Translesion Dna Synthesis                                                                                                   0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         0
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               0
## Tgf Beta Receptor Signaling Activates Smads                                                                                                0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    0
## The Activation Of Arylsulfatases                                                                                                           0
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       0
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               0
## The Fatty Acid Cycling Model                                                                                                               0
## The Phototransduction Cascade                                                                                                              0
## The Retinoid Cycle In Cones Daylight Vision                                                                                                0
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  1
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              0
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            0
## Thromboxane Signalling Through Tp Receptor                                                                                                 0
## Thyroxine Biosynthesis                                                                                                                     0
## Tie2 Signaling                                                                                                                             0
## Tight Junction Interactions                                                                                                                0
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    0
## Tp53 Regulates Metabolic Genes                                                                                                             0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           0
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            0
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           0
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                0
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       0
## Traf3 Dependent Irf Activation Pathway                                                                                                     0
## Traf6 Mediated Irf7 Activation                                                                                                             0
## Trafficking Of Ampa Receptors                                                                                                              0
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             0
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        0
## Trail Signaling                                                                                                                            0
## Trans Golgi Network Vesicle Budding                                                                                                        0
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    0
## Transcription Of The Hiv Genome                                                                                                            0
## Transcriptional Regulation By E2f6                                                                                                         0
## Transcriptional Regulation By Runx1                                                                                                        3
## Transcriptional Regulation By Runx2                                                                                                        1
## Transcriptional Regulation By Runx3                                                                                                        1
## Transcriptional Regulation By Small Rnas                                                                                                   0
## Transcriptional Regulation By Tp53                                                                                                         1
## Transcriptional Regulation By Ventx                                                                                                        0
## Transcriptional Regulation Of Testis Differentiation                                                                                       0
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              1
## Transferrin Endocytosis And Recycling                                                                                                      0
## Translation                                                                                                                                0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             0
## Translation Of Sars Cov 1 Structural Proteins                                                                                              0
## Translation Of Sars Cov 2 Structural Proteins                                                                                              0
## Translesion Synthesis By Polh                                                                                                              0
## Translesion Synthesis By Polk                                                                                                              0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       0
## Transmission Across Chemical Synapses                                                                                                      1
## Transport And Synthesis Of Paps                                                                                                            0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   0
## Transport Of Connexons To The Plasma Membrane                                                                                              0
## Transport Of Fatty Acids                                                                                                                   0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        0
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              0
## Transport Of Mature Transcript To Cytoplasm                                                                                                0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   0
## Transport Of Nucleotide Sugars                                                                                                             0
## Transport Of Organic Anions                                                                                                                0
## Transport Of Small Molecules                                                                                                               1
## Transport Of The Slbp Dependant Mature Mrna                                                                                                0
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    0
## Transport To The Golgi And Subsequent Modification                                                                                         3
## Triglyceride Biosynthesis                                                                                                                  0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      0
## Trna Aminoacylation                                                                                                                        0
## Trna Modification In The Mitochondrion                                                                                                     0
## Trna Modification In The Nucleus And Cytosol                                                                                               0
## Trna Processing                                                                                                                            0
## Trna Processing In The Mitochondrion                                                                                                       0
## Trna Processing In The Nucleus                                                                                                             0
## Trp Channels                                                                                                                               0
## Tryptophan Catabolism                                                                                                                      0
## Type I Hemidesmosome Assembly                                                                                                              0
## Tyrosine Catabolism                                                                                                                        0
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        0
## Ub Specific Processing Proteases                                                                                                           3
## Ubiquinol Biosynthesis                                                                                                                     0
## Uch Proteinases                                                                                                                            0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              0
## Unwinding Of Dna                                                                                                                           0
## Uptake And Actions Of Bacterial Toxins                                                                                                     0
## Uptake And Function Of Anthrax Toxins                                                                                                      0
## Uptake And Function Of Diphtheria Toxin                                                                                                    0
## Urea Cycle                                                                                                                                 0
## Vasopressin Like Receptors                                                                                                                 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               0
## Vegf Ligand Receptor Interactions                                                                                                          0
## Vegfr2 Mediated Cell Proliferation                                                                                                         0
## Vesicle Mediated Transport                                                                                                                 8
## Viral Messenger Rna Synthesis                                                                                                              0
## Visual Phototransduction                                                                                                                   1
## Vitamin B1 Thiamin Metabolism                                                                                                              0
## Vitamin B2 Riboflavin Metabolism                                                                                                           0
## Vitamin B5 Pantothenate Metabolism                                                                                                         0
## Vitamin C Ascorbate Metabolism                                                                                                             0
## Vitamin D Calciferol Metabolism                                                                                                            0
## Vitamins                                                                                                                                   0
## Vldl Assembly                                                                                                                              0
## Vldl Clearance                                                                                                                             0
## Vldlr Internalisation And Degradation                                                                                                      0
## Voltage Gated Potassium Channels                                                                                                           0
## Vxpx Cargo Targeting To Cilium                                                                                                             0
## Wax And Plasmalogen Biosynthesis                                                                                                           0
## Wnt Mediated Activation Of Dvl                                                                                                             0
## Xenobiotics                                                                                                                                0
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              0
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   0
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            0
## Zinc Transporters                                                                                                                          0
##                                                                                                                                      background
## Interleukin 10 Signaling                                                                                                                   1300
## Interleukin 4 And Interleukin 13 Signaling                                                                                                 1300
## Interleukin 18 Signaling                                                                                                                   1300
## Chemokine Receptors Bind Chemokines                                                                                                        1300
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               1300
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          1300
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      1300
## P75ntr Signals Via Nf Kb                                                                                                                   1300
## Purinergic Signaling In Leishmaniasis Infection                                                                                            1300
## Interleukin 1 Processing                                                                                                                   1300
## Tnfs Bind Their Physiological Receptors                                                                                                    1300
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  1300
## Diseases Of Immune System                                                                                                                  1300
## Regulation Of Tlr By Endogenous Ligand                                                                                                     1300
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   1300
## Cd28 Dependent Vav1 Pathway                                                                                                                1300
## Killing Mechanisms                                                                                                                         1300
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          1300
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                1300
## Myd88 Independent Tlr4 Cascade                                                                                                             1300
## Nf Kb Is Activated And Signals Survival                                                                                                    1300
## P75ntr Recruits Signalling Complexes                                                                                                       1300
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    1300
## Trafficking And Processing Of Endosomal Tlr                                                                                                1300
## Nod1 2 Signaling Pathway                                                                                                                   1300
## Interleukin 15 Signaling                                                                                                                   1300
## Toll Like Receptor Cascades                                                                                                                1300
## Pyroptosis                                                                                                                                 1300
## Alternative Complement Activation                                                                                                          1300
## Fasl Cd95l Signaling                                                                                                                       1300
## G2 M Dna Replication Checkpoint                                                                                                            1300
## Galactose Catabolism                                                                                                                       1300
## Hdl Clearance                                                                                                                              1300
## Mecp2 Regulates Transcription Factors                                                                                                      1300
## Nostrin Mediated Enos Trafficking                                                                                                          1300
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            1300
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           1300
## Sumoylation Of Dna Methylation Proteins                                                                                                    1300
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      1300
## Biosynthesis Of Epa Derived Spms                                                                                                           1300
## Clec7a Inflammasome Pathway                                                                                                                1300
## Fibronectin Matrix Formation                                                                                                               1300
## Phosphorylation Of Emi1                                                                                                                    1300
## Regulated Necrosis                                                                                                                         1300
## Scavenging By Class B Receptors                                                                                                            1300
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          1300
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1300
## Tnfr1 Mediated Ceramide Production                                                                                                         1300
## Irak4 Deficiency Tlr2 4                                                                                                                    1300
## Interleukin 2 Family Signaling                                                                                                             1300
## Interleukin 17 Signaling                                                                                                                   1300
## Interleukin 1 Family Signaling                                                                                                             1300
## Scavenging By Class A Receptors                                                                                                            1300
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               1300
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  1300
## Creb Phosphorylation                                                                                                                       1300
## Ikba Variant Leads To Eda Id                                                                                                               1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        1300
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       1300
## Activation Of C3 And C5                                                                                                                    1300
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         1300
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1300
## Ctla4 Inhibitory Signaling                                                                                                                 1300
## Hdl Assembly                                                                                                                               1300
## Heme Signaling                                                                                                                             1300
## Inactivation Of Cdc42 And Rac1                                                                                                             1300
## Inflammasomes                                                                                                                              1300
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1300
## Runx3 Regulates Wnt Signaling                                                                                                              1300
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 1300
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               1300
## Cd163 Mediating An Anti Inflammatory Response                                                                                              1300
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                1300
## Interleukin 23 Signaling                                                                                                                   1300
## Interleukin 9 Signaling                                                                                                                    1300
## Trif Mediated Programmed Cell Death                                                                                                        1300
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   1300
## Ovarian Tumor Domain Proteases                                                                                                             1300
## Traf6 Mediated Nf Kb Activation                                                                                                            1300
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1300
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1300
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1300
## Chylomicron Assembly                                                                                                                       1300
## Chylomicron Remodeling                                                                                                                     1300
## Hdl Remodeling                                                                                                                             1300
## Interleukin 21 Signaling                                                                                                                   1300
## Mapk3 Erk1 Activation                                                                                                                      1300
## Mastl Facilitates Mitotic Progression                                                                                                      1300
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 1300
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              1300
## Condensation Of Prometaphase Chromosomes                                                                                                   1300
## Dermatan Sulfate Biosynthesis                                                                                                              1300
## Dscam Interactions                                                                                                                         1300
## Endosomal Vacuolar Pathway                                                                                                                 1300
## Enos Activation                                                                                                                            1300
## Interleukin 27 Signaling                                                                                                                   1300
## Interleukin 6 Signaling                                                                                                                    1300
## Receptor Mediated Mitophagy                                                                                                                1300
## Regulation By C Flip                                                                                                                       1300
## Rho Gtpases Activate Ktn1                                                                                                                  1300
## Signaling By Leptin                                                                                                                        1300
## Sumoylation Of Immune Response Proteins                                                                                                    1300
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1300
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          1300
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           1300
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1300
## G0 And Early G1                                                                                                                            1300
## Interleukin 2 Signaling                                                                                                                    1300
## Interleukin 35 Signalling                                                                                                                  1300
## Interleukin Receptor Shc Signaling                                                                                                         1300
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1300
## Signaling By Interleukins                                                                                                                  1300
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  1300
## Tandem Pore Domain Potassium Channels                                                                                                      1300
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1300
## Costimulation By The Cd28 Family                                                                                                           1300
## Pd 1 Signaling                                                                                                                             1300
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       1300
## Apoptosis Induced Dna Fragmentation                                                                                                        1300
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              1300
## Dissolution Of Fibrin Clot                                                                                                                 1300
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             1300
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   1300
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       1300
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1300
## Dap12 Interactions                                                                                                                         1300
## Ripk1 Mediated Regulated Necrosis                                                                                                          1300
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   1300
## Dcc Mediated Attractive Signaling                                                                                                          1300
## Early Phase Of Hiv Life Cycle                                                                                                              1300
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        1300
## Irak1 Recruits Ikk Complex                                                                                                                 1300
## Repression Of Wnt Target Genes                                                                                                             1300
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        1300
## Nicotinate Metabolism                                                                                                                      1300
## Peptide Ligand Binding Receptors                                                                                                           1300
## Depolymerisation Of The Nuclear Lamina                                                                                                     1300
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  1300
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1300
## Perk Regulates Gene Expression                                                                                                             1300
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     1300
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         1300
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1300
## Cargo Concentration In The Er                                                                                                              1300
## Cd28 Co Stimulation                                                                                                                        1300
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            1300
## Nrif Signals Cell Death From The Nucleus                                                                                                   1300
## The Nlrp3 Inflammasome                                                                                                                     1300
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               1300
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       1300
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       1300
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            1300
## Regulation Of Tnfr1 Signaling                                                                                                              1300
## Abc Transporters In Lipid Homeostasis                                                                                                      1300
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              1300
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           1300
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1300
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                1300
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     1300
## Interleukin 1 Signaling                                                                                                                    1300
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    1300
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              1300
## Nicotinamide Salvaging                                                                                                                     1300
## Other Semaphorin Interactions                                                                                                              1300
## Phase 4 Resting Membrane Potential                                                                                                         1300
## Plasma Lipoprotein Assembly                                                                                                                1300
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       1300
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         1300
## G Beta Gamma Signalling Through Cdc42                                                                                                      1300
## Phosphorylation Of The Apc C                                                                                                               1300
## Pka Mediated Phosphorylation Of Creb                                                                                                       1300
## Signaling By Kit In Disease                                                                                                                1300
## Signaling By Pdgfr In Disease                                                                                                              1300
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      1300
## Branched Chain Amino Acid Catabolism                                                                                                       1300
## Interleukin 12 Family Signaling                                                                                                            1300
## Interleukin 37 Signaling                                                                                                                   1300
## Rho Gtpases Activate Paks                                                                                                                  1300
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1300
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                1300
## E2f Mediated Regulation Of Dna Replication                                                                                                 1300
## Pink1 Prkn Mediated Mitophagy                                                                                                              1300
## Incretin Synthesis Secretion And Inactivation                                                                                              1300
## Raf Independent Mapk1 3 Activation                                                                                                         1300
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               1300
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     1300
## Growth Hormone Receptor Signaling                                                                                                          1300
## Interleukin 6 Family Signaling                                                                                                             1300
## Tnf Signaling                                                                                                                              1300
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 1300
## Triglyceride Catabolism                                                                                                                    1300
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   1300
## Basigin Interactions                                                                                                                       1300
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    1300
## Inactivation Of Csf3 G Csf Signaling                                                                                                       1300
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1300
## Interleukin 20 Family Signaling                                                                                                            1300
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1300
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1300
## Foxo Mediated Transcription                                                                                                                1300
## Interleukin 12 Signaling                                                                                                                   1300
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           1300
## Vegfr2 Mediated Vascular Permeability                                                                                                      1300
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1300
## Circadian Clock                                                                                                                            1300
## Dap12 Signaling                                                                                                                            1300
## Death Receptor Signalling                                                                                                                  1300
## Downstream Signal Transduction                                                                                                             1300
## G1 S Specific Transcription                                                                                                                1300
## Mitophagy                                                                                                                                  1300
## Myogenesis                                                                                                                                 1300
## Netrin 1 Signaling                                                                                                                         1300
## Scavenging Of Heme From Plasma                                                                                                             1300
## Activation Of Bh3 Only Proteins                                                                                                            1300
## Signaling By Csf3 G Csf                                                                                                                    1300
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             1300
## Egfr Downregulation                                                                                                                        1300
## Fgfr1 Mutant Receptor Activation                                                                                                           1300
## G Protein Beta Gamma Signalling                                                                                                            1300
## Plasma Lipoprotein Remodeling                                                                                                              1300
## Regulation Of Mecp2 Expression And Activity                                                                                                1300
## Rho Gtpases Activate Iqgaps                                                                                                                1300
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       1300
## Activation Of Matrix Metalloproteinases                                                                                                    1300
## Intrinsic Pathway For Apoptosis                                                                                                            1300
## Plasma Lipoprotein Clearance                                                                                                               1300
## Rhoj Gtpase Cycle                                                                                                                          1300
## Rhov Gtpase Cycle                                                                                                                          1300
## Signaling By Notch2                                                                                                                        1300
## Complement Cascade                                                                                                                         1300
## Gpvi Mediated Activation Cascade                                                                                                           1300
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               1300
## P75 Ntr Receptor Mediated Signalling                                                                                                       1300
## Rhou Gtpase Cycle                                                                                                                          1300
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       1300
## Ca Dependent Events                                                                                                                        1300
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    1300
## Interleukin 7 Signaling                                                                                                                    1300
## Metalloprotease Dubs                                                                                                                       1300
## Nuclear Pore Complex Npc Disassembly                                                                                                       1300
## Regulation Of Tp53 Expression And Degradation                                                                                              1300
## Rho Gtpases Activate Wasps And Waves                                                                                                       1300
## Rhoh Gtpase Cycle                                                                                                                          1300
## Rhoq Gtpase Cycle                                                                                                                          1300
## Ros And Rns Production In Phagocytes                                                                                                       1300
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           1300
## Ca2 Pathway                                                                                                                                1300
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               1300
## Generation Of Second Messenger Molecules                                                                                                   1300
## Ngf Stimulated Transcription                                                                                                               1300
## Signaling By Fgfr1 In Disease                                                                                                              1300
## Transcriptional Regulation By Mecp2                                                                                                        1300
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1300
## Triglyceride Metabolism                                                                                                                    1300
## Beta Defensins                                                                                                                             1300
## Dag And Ip3 Signaling                                                                                                                      1300
## Dna Methylation                                                                                                                            1300
## Ephb Mediated Forward Signaling                                                                                                            1300
## Rhof Gtpase Cycle                                                                                                                          1300
## Rnd1 Gtpase Cycle                                                                                                                          1300
## Rnd3 Gtpase Cycle                                                                                                                          1300
## Copii Mediated Vesicle Transport                                                                                                           1300
## Rnd2 Gtpase Cycle                                                                                                                          1300
## Signaling By Scf Kit                                                                                                                       1300
## Transcriptional Regulation Of Granulopoiesis                                                                                               1300
## Extra Nuclear Estrogen Signaling                                                                                                           1300
## Interferon Alpha Beta Signaling                                                                                                            1300
## Interferon Gamma Signaling                                                                                                                 1300
## Irs Mediated Signalling                                                                                                                    1300
## Mapk6 Mapk4 Signaling                                                                                                                      1300
## Metabolism Of Fat Soluble Vitamins                                                                                                         1300
## Notch1 Intracellular Domain Regulates Transcription                                                                                        1300
## Prc2 Methylates Histones And Dna                                                                                                           1300
## Rhog Gtpase Cycle                                                                                                                          1300
## Signaling By Tgf Beta Receptor Complex                                                                                                     1300
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           1300
## Antigen Processing Cross Presentation                                                                                                      1300
## Apoptotic Execution Phase                                                                                                                  1300
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            1300
## Clec7a Dectin 1 Signaling                                                                                                                  1300
## Defensins                                                                                                                                  1300
## Diseases Of Programmed Cell Death                                                                                                          1300
## G Protein Mediated Events                                                                                                                  1300
## Initial Triggering Of Complement                                                                                                           1300
## Insulin Receptor Signalling Cascade                                                                                                        1300
## Nuclear Envelope Breakdown                                                                                                                 1300
## Rhod Gtpase Cycle                                                                                                                          1300
## Signaling By Egfr                                                                                                                          1300
## Signaling By Ptk6                                                                                                                          1300
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            1300
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1300
## Antimicrobial Peptides                                                                                                                     1300
## Arachidonic Acid Metabolism                                                                                                                1300
## Asymmetric Localization Of Pcp Proteins                                                                                                    1300
## Class B 2 Secretin Family Receptors                                                                                                        1300
## Collagen Degradation                                                                                                                       1300
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             1300
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   1300
## Ncam Signaling For Neurite Out Growth                                                                                                      1300
## Nrage Signals Death Through Jnk                                                                                                            1300
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  1300
## Programmed Cell Death                                                                                                                      1300
## Rac2 Gtpase Cycle                                                                                                                          1300
## Rac3 Gtpase Cycle                                                                                                                          1300
## Rhob Gtpase Cycle                                                                                                                          1300
## Semaphorin Interactions                                                                                                                    1300
## Signaling By Fgfr In Disease                                                                                                               1300
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          1300
## Signaling By Pdgf                                                                                                                          1300
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 1300
## Unfolded Protein Response Upr                                                                                                              1300
## 2 Ltr Circle Formation                                                                                                                     1300
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            1300
## Abacavir Metabolism                                                                                                                        1300
## Abacavir Transmembrane Transport                                                                                                           1300
## Abacavir Transport And Metabolism                                                                                                          1300
## Abc Family Proteins Mediated Transport                                                                                                     1300
## Abc Transporter Disorders                                                                                                                  1300
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           1300
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                1300
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              1300
## Acetylcholine Binding And Downstream Events                                                                                                1300
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     1300
## Acetylcholine Neurotransmitter Release Cycle                                                                                               1300
## Acetylcholine Regulates Insulin Secretion                                                                                                  1300
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        1300
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           1300
## Activated Ntrk2 Signals Through Cdk5                                                                                                       1300
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              1300
## Activated Ntrk2 Signals Through Fyn                                                                                                        1300
## Activated Ntrk2 Signals Through Pi3k                                                                                                       1300
## Activated Ntrk2 Signals Through Ras                                                                                                        1300
## Activated Ntrk3 Signals Through Pi3k                                                                                                       1300
## Activated Ntrk3 Signals Through Ras                                                                                                        1300
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              1300
## Activation Of Ampk Downstream Of Nmdars                                                                                                    1300
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       1300
## Activation Of Atr In Response To Replication Stress                                                                                        1300
## Activation Of Bad And Translocation To Mitochondria                                                                                        1300
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                1300
## Activation Of Gene Expression By Srebf Srebp                                                                                               1300
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     1300
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1300
## Activation Of Noxa And Translocation To Mitochondria                                                                                       1300
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       1300
## Activation Of Puma And Translocation To Mitochondria                                                                                       1300
## Activation Of Rac1                                                                                                                         1300
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    1300
## Activation Of Ras In B Cells                                                                                                               1300
## Activation Of Smo                                                                                                                          1300
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      1300
## Activation Of The Phototransduction Cascade                                                                                                1300
## Activation Of The Pre Replicative Complex                                                                                                  1300
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               1300
## Activation Of Trka Receptors                                                                                                               1300
## Acyl Chain Remodeling Of Cl                                                                                                                1300
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       1300
## Acyl Chain Remodelling Of Pc                                                                                                               1300
## Acyl Chain Remodelling Of Pe                                                                                                               1300
## Acyl Chain Remodelling Of Pg                                                                                                               1300
## Acyl Chain Remodelling Of Pi                                                                                                               1300
## Acyl Chain Remodelling Of Ps                                                                                                               1300
## Adaptive Immune System                                                                                                                     1300
## Adenylate Cyclase Activating Pathway                                                                                                       1300
## Adenylate Cyclase Inhibitory Pathway                                                                                                       1300
## Adherens Junctions Interactions                                                                                                            1300
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    1300
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  1300
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 1300
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        1300
## Adrenoceptors                                                                                                                              1300
## Aflatoxin Activation And Detoxification                                                                                                    1300
## Aggrephagy                                                                                                                                 1300
## Akt Phosphorylates Targets In The Cytosol                                                                                                  1300
## Alpha Defensins                                                                                                                            1300
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 1300
## Alpha Oxidation Of Phytanate                                                                                                               1300
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   1300
## Amine Ligand Binding Receptors                                                                                                             1300
## Amino Acid Conjugation                                                                                                                     1300
## Amino Acid Transport Across The Plasma Membrane                                                                                            1300
## Amino Acids Regulate Mtorc1                                                                                                                1300
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   1300
## Amyloid Fiber Formation                                                                                                                    1300
## Anchoring Fibril Formation                                                                                                                 1300
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         1300
## Androgen Biosynthesis                                                                                                                      1300
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         1300
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           1300
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   1300
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                1300
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   1300
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          1300
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    1300
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     1300
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            1300
## Apoptosis                                                                                                                                  1300
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               1300
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    1300
## Apoptotic Factor Mediated Response                                                                                                         1300
## Aquaporin Mediated Transport                                                                                                               1300
## Arachidonate Production From Dag                                                                                                           1300
## Arms Mediated Activation                                                                                                                   1300
## Aryl Hydrocarbon Receptor Signalling                                                                                                       1300
## Asparagine N Linked Glycosylation                                                                                                          1300
## Aspartate And Asparagine Metabolism                                                                                                        1300
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   1300
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           1300
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               1300
## Assembly Of The Hiv Virion                                                                                                                 1300
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   1300
## Assembly Of The Pre Replicative Complex                                                                                                    1300
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  1300
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       1300
## Attachment And Entry                                                                                                                       1300
## Attachment Of Gpi Anchor To Upar                                                                                                           1300
## Attenuation Phase                                                                                                                          1300
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  1300
## Aurka Activation By Tpx2                                                                                                                   1300
## Autophagy                                                                                                                                  1300
## B Wich Complex Positively Regulates Rrna Expression                                                                                        1300
## Base Excision Repair                                                                                                                       1300
## Base Excision Repair Ap Site Formation                                                                                                     1300
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  1300
## Beta Catenin Independent Wnt Signaling                                                                                                     1300
## Beta Catenin Phosphorylation Cascade                                                                                                       1300
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               1300
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         1300
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             1300
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          1300
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             1300
## Beta Oxidation Of Pristanoyl Coa                                                                                                           1300
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              1300
## Bicarbonate Transporters                                                                                                                   1300
## Bile Acid And Bile Salt Metabolism                                                                                                         1300
## Biological Oxidations                                                                                                                      1300
## Biosynthesis Of Maresin Like Spms                                                                                                          1300
## Biosynthesis Of Maresins                                                                                                                   1300
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         1300
## Biotin Transport And Metabolism                                                                                                            1300
## Blood Group Systems Biosynthesis                                                                                                           1300
## Budding And Maturation Of Hiv Virion                                                                                                       1300
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                1300
## Butyrophilin Btn Family Interactions                                                                                                       1300
## C Type Lectin Receptors Clrs                                                                                                               1300
## Ca2 Activated K Channels                                                                                                                   1300
## Calcineurin Activates Nfat                                                                                                                 1300
## Calcitonin Like Ligand Receptors                                                                                                           1300
## Calnexin Calreticulin Cycle                                                                                                                1300
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                1300
## Cardiac Conduction                                                                                                                         1300
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        1300
## Cargo Trafficking To The Periciliary Membrane                                                                                              1300
## Carnitine Metabolism                                                                                                                       1300
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       1300
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         1300
## Cation Coupled Chloride Cotransporters                                                                                                     1300
## Cd209 Dc Sign Signaling                                                                                                                    1300
## Cd22 Mediated Bcr Regulation                                                                                                               1300
## Cdc42 Gtpase Cycle                                                                                                                         1300
## Cdc6 Association With The Orc Origin Complex                                                                                               1300
## Cell Cell Communication                                                                                                                    1300
## Cell Cell Junction Organization                                                                                                            1300
## Cell Cycle                                                                                                                                 1300
## Cell Cycle Checkpoints                                                                                                                     1300
## Cell Cycle Mitotic                                                                                                                         1300
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              1300
## Cell Extracellular Matrix Interactions                                                                                                     1300
## Cell Junction Organization                                                                                                                 1300
## Cell Surface Interactions At The Vascular Wall                                                                                             1300
## Cellular Hexose Transport                                                                                                                  1300
## Cellular Response To Chemical Stress                                                                                                       1300
## Cellular Response To Heat Stress                                                                                                           1300
## Cellular Response To Hypoxia                                                                                                               1300
## Cellular Response To Starvation                                                                                                            1300
## Cellular Responses To External Stimuli                                                                                                     1300
## Cellular Senescence                                                                                                                        1300
## Cgmp Effects                                                                                                                               1300
## Chaperone Mediated Autophagy                                                                                                               1300
## Chl1 Interactions                                                                                                                          1300
## Cholesterol Biosynthesis                                                                                                                   1300
## Choline Catabolism                                                                                                                         1300
## Chondroitin Sulfate Biosynthesis                                                                                                           1300
## Chrebp Activates Metabolic Gene Expression                                                                                                 1300
## Chromatin Modifying Enzymes                                                                                                                1300
## Chromosome Maintenance                                                                                                                     1300
## Chylomicron Clearance                                                                                                                      1300
## Cilium Assembly                                                                                                                            1300
## Citric Acid Cycle Tca Cycle                                                                                                                1300
## Class A 1 Rhodopsin Like Receptors                                                                                                         1300
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       1300
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       1300
## Class I Peroxisomal Membrane Protein Import                                                                                                1300
## Clathrin Mediated Endocytosis                                                                                                              1300
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    1300
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         1300
## Coenzyme A Biosynthesis                                                                                                                    1300
## Cohesin Loading Onto Chromatin                                                                                                             1300
## Collagen Biosynthesis And Modifying Enzymes                                                                                                1300
## Collagen Chain Trimerization                                                                                                               1300
## Collagen Formation                                                                                                                         1300
## Common Pathway Of Fibrin Clot Formation                                                                                                    1300
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 1300
## Complex I Biogenesis                                                                                                                       1300
## Condensation Of Prophase Chromosomes                                                                                                       1300
## Conjugation Of Benzoate With Glycine                                                                                                       1300
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          1300
## Constitutive Signaling By Egfrviii                                                                                                         1300
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           1300
## Constitutive Signaling By Overexpressed Erbb2                                                                                              1300
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 1300
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           1300
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         1300
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              1300
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            1300
## Copi Mediated Anterograde Transport                                                                                                        1300
## Creatine Metabolism                                                                                                                        1300
## Creation Of C4 And C2 Activators                                                                                                           1300
## Creb3 Factors Activate Genes                                                                                                               1300
## Cristae Formation                                                                                                                          1300
## Crmps In Sema3a Signaling                                                                                                                  1300
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            1300
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 1300
## Crosslinking Of Collagen Fibrils                                                                                                           1300
## Cs Ds Degradation                                                                                                                          1300
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           1300
## Cyclin D Associated Events In G1                                                                                                           1300
## Cyp2e1 Reactions                                                                                                                           1300
## Cytochrome C Mediated Apoptotic Response                                                                                                   1300
## Cytochrome P450 Arranged By Substrate Type                                                                                                 1300
## Cytokine Signaling In Immune System                                                                                                        1300
## Cytoprotection By Hmox1                                                                                                                    1300
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     1300
## Cytosolic Sulfonation Of Small Molecules                                                                                                   1300
## Cytosolic Trna Aminoacylation                                                                                                              1300
## Darpp 32 Events                                                                                                                            1300
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   1300
## Deadenylation Dependent Mrna Decay                                                                                                         1300
## Deadenylation Of Mrna                                                                                                                      1300
## Dectin 2 Family                                                                                                                            1300
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                1300
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                1300
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              1300
## Defective Cftr Causes Cystic Fibrosis                                                                                                      1300
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       1300
## Defective Chst3 Causes Sedcjd                                                                                                              1300
## Defective Chst6 Causes Mcdc1                                                                                                               1300
## Defective Chsy1 Causes Tpbs                                                                                                                1300
## Defective Csf2rb Causes Smdp5                                                                                                              1300
## Defective Ext2 Causes Exostoses 2                                                                                                          1300
## Defective F9 Activation                                                                                                                    1300
## Defective Factor Ix Causes Hemophilia B                                                                                                    1300
## Defective Factor Viii Causes Hemophilia A                                                                                                  1300
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 1300
## Defective Lfng Causes Scdo3                                                                                                                1300
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                1300
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  1300
## Defects In Biotin Btn Metabolism                                                                                                           1300
## Defects In Cobalamin B12 Metabolism                                                                                                        1300
## Defects In Vitamin And Cofactor Metabolism                                                                                                 1300
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   1300
## Degradation Of Axin                                                                                                                        1300
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     1300
## Degradation Of Cysteine And Homocysteine                                                                                                   1300
## Degradation Of Dvl                                                                                                                         1300
## Degradation Of Gli1 By The Proteasome                                                                                                      1300
## Degradation Of The Extracellular Matrix                                                                                                    1300
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           1300
## Detoxification Of Reactive Oxygen Species                                                                                                  1300
## Deubiquitination                                                                                                                           1300
## Developmental Biology                                                                                                                      1300
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              1300
## Digestion                                                                                                                                  1300
## Digestion And Absorption                                                                                                                   1300
## Digestion Of Dietary Carbohydrate                                                                                                          1300
## Digestion Of Dietary Lipid                                                                                                                 1300
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      1300
## Diseases Associated With N Glycosylation Of Proteins                                                                                       1300
## Diseases Associated With O Glycosylation Of Proteins                                                                                       1300
## Diseases Associated With Surfactant Metabolism                                                                                             1300
## Diseases Of Base Excision Repair                                                                                                           1300
## Diseases Of Carbohydrate Metabolism                                                                                                        1300
## Diseases Of Dna Repair                                                                                                                     1300
## Diseases Of Glycosylation                                                                                                                  1300
## Diseases Of Metabolism                                                                                                                     1300
## Diseases Of Mismatch Repair Mmr                                                                                                            1300
## Diseases Of Mitotic Cell Cycle                                                                                                             1300
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           1300
## Disinhibition Of Snare Formation                                                                                                           1300
## Disorders Of Transmembrane Transporters                                                                                                    1300
## Displacement Of Dna Glycosylase By Apex1                                                                                                   1300
## Dna Damage Bypass                                                                                                                          1300
## Dna Damage Recognition In Gg Ner                                                                                                           1300
## Dna Damage Reversal                                                                                                                        1300
## Dna Damage Telomere Stress Induced Senescence                                                                                              1300
## Dna Double Strand Break Repair                                                                                                             1300
## Dna Double Strand Break Response                                                                                                           1300
## Dna Repair                                                                                                                                 1300
## Dna Replication                                                                                                                            1300
## Dna Replication Initiation                                                                                                                 1300
## Dna Replication Pre Initiation                                                                                                             1300
## Dna Strand Elongation                                                                                                                      1300
## Dopamine Neurotransmitter Release Cycle                                                                                                    1300
## Dopamine Receptors                                                                                                                         1300
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    1300
## Downregulation Of Erbb2 Signaling                                                                                                          1300
## Downregulation Of Erbb4 Signaling                                                                                                          1300
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   1300
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              1300
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         1300
## Downstream Signaling Of Activated Fgfr1                                                                                                    1300
## Downstream Signaling Of Activated Fgfr2                                                                                                    1300
## Downstream Signaling Of Activated Fgfr3                                                                                                    1300
## Downstream Signaling Of Activated Fgfr4                                                                                                    1300
## Dual Incision In Gg Ner                                                                                                                    1300
## Dual Incision In Tc Ner                                                                                                                    1300
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          1300
## Ecm Proteoglycans                                                                                                                          1300
## Effects Of Pip2 Hydrolysis                                                                                                                 1300
## Egfr Interacts With Phospholipase C Gamma                                                                                                  1300
## Egfr Transactivation By Gastrin                                                                                                            1300
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             1300
## Eicosanoid Ligand Binding Receptors                                                                                                        1300
## Eicosanoids                                                                                                                                1300
## Elastic Fibre Formation                                                                                                                    1300
## Electric Transmission Across Gap Junctions                                                                                                 1300
## Elevation Of Cytosolic Ca2 Levels                                                                                                          1300
## Endogenous Sterols                                                                                                                         1300
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     1300
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           1300
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     1300
## Eph Ephrin Signaling                                                                                                                       1300
## Epha Mediated Growth Cone Collapse                                                                                                         1300
## Ephrin Signaling                                                                                                                           1300
## Epigenetic Regulation Of Gene Expression                                                                                                   1300
## Er Quality Control Compartment Erqc                                                                                                        1300
## Er To Golgi Anterograde Transport                                                                                                          1300
## Erbb2 Activates Ptk6 Signaling                                                                                                             1300
## Erbb2 Regulates Cell Motility                                                                                                              1300
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                1300
## Erk Mapk Targets                                                                                                                           1300
## Erks Are Inactivated                                                                                                                       1300
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     1300
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     1300
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    1300
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        1300
## Erythropoietin Activates Ras                                                                                                               1300
## Erythropoietin Activates Stat5                                                                                                             1300
## Esr Mediated Signaling                                                                                                                     1300
## Establishment Of Sister Chromatid Cohesion                                                                                                 1300
## Estrogen Biosynthesis                                                                                                                      1300
## Estrogen Dependent Gene Expression                                                                                                         1300
## Estrogen Stimulated Signaling Through Prkcz                                                                                                1300
## Ethanol Oxidation                                                                                                                          1300
## Eukaryotic Translation Elongation                                                                                                          1300
## Eukaryotic Translation Initiation                                                                                                          1300
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            1300
## Extension Of Telomeres                                                                                                                     1300
## Extracellular Matrix Organization                                                                                                          1300
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 1300
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      1300
## Fanconi Anemia Pathway                                                                                                                     1300
## Fatty Acid Metabolism                                                                                                                      1300
## Fatty Acids                                                                                                                                1300
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                1300
## Fatty Acyl Coa Biosynthesis                                                                                                                1300
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         1300
## Fc Epsilon Receptor Fceri Signaling                                                                                                        1300
## Fceri Mediated Ca 2 Mobilization                                                                                                           1300
## Fceri Mediated Mapk Activation                                                                                                             1300
## Fceri Mediated Nf Kb Activation                                                                                                            1300
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               1300
## Fcgr Activation                                                                                                                            1300
## Fcgr3a Mediated Il10 Synthesis                                                                                                             1300
## Fertilization                                                                                                                              1300
## Fgfr1 Ligand Binding And Activation                                                                                                        1300
## Fgfr1b Ligand Binding And Activation                                                                                                       1300
## Fgfr1c Ligand Binding And Activation                                                                                                       1300
## Fgfr2 Alternative Splicing                                                                                                                 1300
## Fgfr2 Ligand Binding And Activation                                                                                                        1300
## Fgfr2 Mutant Receptor Activation                                                                                                           1300
## Fgfr2b Ligand Binding And Activation                                                                                                       1300
## Fgfr2c Ligand Binding And Activation                                                                                                       1300
## Fgfr3 Ligand Binding And Activation                                                                                                        1300
## Fgfr3b Ligand Binding And Activation                                                                                                       1300
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       1300
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             1300
## Flt3 Signaling                                                                                                                             1300
## Flt3 Signaling By Cbl Mutants                                                                                                              1300
## Flt3 Signaling In Disease                                                                                                                  1300
## Flt3 Signaling Through Src Family Kinases                                                                                                  1300
## Folding Of Actin By Cct Tric                                                                                                               1300
## Formation Of Apoptosome                                                                                                                    1300
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  1300
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  1300
## Formation Of Incision Complex In Gg Ner                                                                                                    1300
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 1300
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               1300
## Formation Of Tc Ner Pre Incision Complex                                                                                                   1300
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  1300
## Formation Of The Cornified Envelope                                                                                                        1300
## Formation Of The Early Elongation Complex                                                                                                  1300
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     1300
## Formation Of Xylulose 5 Phosphate                                                                                                          1300
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       1300
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               1300
## Free Fatty Acid Receptors                                                                                                                  1300
## Free Fatty Acids Regulate Insulin Secretion                                                                                                1300
## Frs Mediated Fgfr1 Signaling                                                                                                               1300
## Frs Mediated Fgfr2 Signaling                                                                                                               1300
## Frs Mediated Fgfr3 Signaling                                                                                                               1300
## Frs Mediated Fgfr4 Signaling                                                                                                               1300
## Fructose Catabolism                                                                                                                        1300
## Fructose Metabolism                                                                                                                        1300
## G Alpha 12 13 Signalling Events                                                                                                            1300
## G Alpha I Signalling Events                                                                                                                1300
## G Alpha Q Signalling Events                                                                                                                1300
## G Alpha S Signalling Events                                                                                                                1300
## G Alpha Z Signalling Events                                                                                                                1300
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  1300
## G Protein Activation                                                                                                                       1300
## G1 S Dna Damage Checkpoints                                                                                                                1300
## G2 M Checkpoints                                                                                                                           1300
## G2 M Dna Damage Checkpoint                                                                                                                 1300
## G2 Phase                                                                                                                                   1300
## Gab1 Signalosome                                                                                                                           1300
## Gaba B Receptor Activation                                                                                                                 1300
## Gaba Receptor Activation                                                                                                                   1300
## Gaba Synthesis Release Reuptake And Degradation                                                                                            1300
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        1300
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      1300
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    1300
## Gap Junction Assembly                                                                                                                      1300
## Gap Junction Degradation                                                                                                                   1300
## Gap Junction Trafficking And Regulation                                                                                                    1300
## Gdp Fucose Biosynthesis                                                                                                                    1300
## Gene Silencing By Rna                                                                                                                      1300
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                1300
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            1300
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   1300
## Glucagon Signaling In Metabolic Regulation                                                                                                 1300
## Glucagon Type Ligand Receptors                                                                                                             1300
## Glucocorticoid Biosynthesis                                                                                                                1300
## Gluconeogenesis                                                                                                                            1300
## Glucose Metabolism                                                                                                                         1300
## Glucuronidation                                                                                                                            1300
## Glutamate And Glutamine Metabolism                                                                                                         1300
## Glutamate Neurotransmitter Release Cycle                                                                                                   1300
## Glutathione Conjugation                                                                                                                    1300
## Glutathione Synthesis And Recycling                                                                                                        1300
## Glycerophospholipid Biosynthesis                                                                                                           1300
## Glycerophospholipid Catabolism                                                                                                             1300
## Glycogen Breakdown Glycogenolysis                                                                                                          1300
## Glycogen Metabolism                                                                                                                        1300
## Glycogen Storage Diseases                                                                                                                  1300
## Glycogen Synthesis                                                                                                                         1300
## Glycolysis                                                                                                                                 1300
## Glycosaminoglycan Metabolism                                                                                                               1300
## Glycosphingolipid Metabolism                                                                                                               1300
## Glyoxylate Metabolism And Glycine Degradation                                                                                              1300
## Golgi Associated Vesicle Biogenesis                                                                                                        1300
## Golgi To Er Retrograde Transport                                                                                                           1300
## Gp1b Ix V Activation Signalling                                                                                                            1300
## Gpcr Ligand Binding                                                                                                                        1300
## Grb2 Events In Erbb2 Signaling                                                                                                             1300
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  1300
## Grb7 Events In Erbb2 Signaling                                                                                                             1300
## Hats Acetylate Histones                                                                                                                    1300
## Hcmv Early Events                                                                                                                          1300
## Hcmv Infection                                                                                                                             1300
## Hcmv Late Events                                                                                                                           1300
## Hdacs Deacetylate Histones                                                                                                                 1300
## Hdms Demethylate Histones                                                                                                                  1300
## Hdr Through Homologous Recombination Hrr                                                                                                   1300
## Hdr Through Mmej Alt Nhej                                                                                                                  1300
## Hdr Through Single Strand Annealing Ssa                                                                                                    1300
## Hedgehog Ligand Biogenesis                                                                                                                 1300
## Hedgehog Off State                                                                                                                         1300
## Hedgehog On State                                                                                                                          1300
## Heme Biosynthesis                                                                                                                          1300
## Heme Degradation                                                                                                                           1300
## Hemostasis                                                                                                                                 1300
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  1300
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 1300
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    1300
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     1300
## Histidine Catabolism                                                                                                                       1300
## Hiv Elongation Arrest And Recovery                                                                                                         1300
## Hiv Infection                                                                                                                              1300
## Hiv Life Cycle                                                                                                                             1300
## Hiv Transcription Elongation                                                                                                               1300
## Hiv Transcription Initiation                                                                                                               1300
## Homologous Dna Pairing And Strand Exchange                                                                                                 1300
## Homology Directed Repair                                                                                                                   1300
## Hormone Ligand Binding Receptors                                                                                                           1300
## Host Interactions Of Hiv Factors                                                                                                           1300
## Hs Gag Biosynthesis                                                                                                                        1300
## Hs Gag Degradation                                                                                                                         1300
## Hsf1 Activation                                                                                                                            1300
## Hsf1 Dependent Transactivation                                                                                                             1300
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    1300
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       1300
## Hyaluronan Biosynthesis And Export                                                                                                         1300
## Hyaluronan Metabolism                                                                                                                      1300
## Hyaluronan Uptake And Degradation                                                                                                          1300
## Hydrolysis Of Lpc                                                                                                                          1300
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            1300
## Infection With Mycobacterium Tuberculosis                                                                                                  1300
## Infectious Disease                                                                                                                         1300
## Influenza Infection                                                                                                                        1300
## Inhibition Of Dna Recombination At Telomere                                                                                                1300
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            1300
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                1300
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              1300
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               1300
## Innate Immune System                                                                                                                       1300
## Inositol Phosphate Metabolism                                                                                                              1300
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                1300
## Insulin Processing                                                                                                                         1300
## Insulin Receptor Recycling                                                                                                                 1300
## Integration Of Energy Metabolism                                                                                                           1300
## Integration Of Provirus                                                                                                                    1300
## Integrin Cell Surface Interactions                                                                                                         1300
## Integrin Signaling                                                                                                                         1300
## Interaction Between L1 And Ankyrins                                                                                                        1300
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      1300
## Interactions Of Rev With Host Cellular Proteins                                                                                            1300
## Interactions Of Vpr With Host Cellular Proteins                                                                                            1300
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         1300
## Interferon Signaling                                                                                                                       1300
## Interleukin 36 Pathway                                                                                                                     1300
## Intestinal Absorption                                                                                                                      1300
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             1300
## Intra Golgi Traffic                                                                                                                        1300
## Intracellular Signaling By Second Messengers                                                                                               1300
## Intraflagellar Transport                                                                                                                   1300
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 1300
## Inwardly Rectifying K Channels                                                                                                             1300
## Ion Channel Transport                                                                                                                      1300
## Ion Homeostasis                                                                                                                            1300
## Ion Transport By P Type Atpases                                                                                                            1300
## Ionotropic Activity Of Kainate Receptors                                                                                                   1300
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  1300
## Ire1alpha Activates Chaperones                                                                                                             1300
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     1300
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      1300
## Iron Uptake And Transport                                                                                                                  1300
## Irs Activation                                                                                                                             1300
## Josephin Domain Dubs                                                                                                                       1300
## Keratan Sulfate Biosynthesis                                                                                                               1300
## Keratan Sulfate Degradation                                                                                                                1300
## Keratan Sulfate Keratin Metabolism                                                                                                         1300
## Keratinization                                                                                                                             1300
## Ketone Body Metabolism                                                                                                                     1300
## Kinesins                                                                                                                                   1300
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     1300
## L1cam Interactions                                                                                                                         1300
## Lagging Strand Synthesis                                                                                                                   1300
## Laminin Interactions                                                                                                                       1300
## Late Endosomal Microautophagy                                                                                                              1300
## Ldl Clearance                                                                                                                              1300
## Lectin Pathway Of Complement Activation                                                                                                    1300
## Leishmania Infection                                                                                                                       1300
## Leukotriene Receptors                                                                                                                      1300
## Lgi Adam Interactions                                                                                                                      1300
## Ligand Receptor Interactions                                                                                                               1300
## Linoleic Acid La Metabolism                                                                                                                1300
## Lipid Particle Organization                                                                                                                1300
## Lipophagy                                                                                                                                  1300
## Listeria Monocytogenes Entry Into Host Cells                                                                                               1300
## Long Term Potentiation                                                                                                                     1300
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 1300
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      1300
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     1300
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     1300
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        1300
## Lysine Catabolism                                                                                                                          1300
## Lysosome Vesicle Biogenesis                                                                                                                1300
## Lysosphingolipid And Lpa Receptors                                                                                                         1300
## M Phase                                                                                                                                    1300
## Map2k And Mapk Activation                                                                                                                  1300
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   1300
## Mapk Family Signaling Cascades                                                                                                             1300
## Mapk1 Erk2 Activation                                                                                                                      1300
## Maturation Of Nucleoprotein                                                                                                                1300
## Maturation Of Protein 3a                                                                                                                   1300
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     1300
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     1300
## Meiosis                                                                                                                                    1300
## Meiotic Recombination                                                                                                                      1300
## Meiotic Synapsis                                                                                                                           1300
## Melanin Biosynthesis                                                                                                                       1300
## Membrane Trafficking                                                                                                                       1300
## Met Activates Pi3k Akt Signaling                                                                                                           1300
## Met Activates Ptk2 Signaling                                                                                                               1300
## Met Activates Ptpn11                                                                                                                       1300
## Met Activates Rap1 And Rac1                                                                                                                1300
## Met Activates Ras Signaling                                                                                                                1300
## Met Interacts With Tns Proteins                                                                                                            1300
## Met Promotes Cell Motility                                                                                                                 1300
## Met Receptor Activation                                                                                                                    1300
## Met Receptor Recycling                                                                                                                     1300
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        1300
## Metabolism Of Amine Derived Hormones                                                                                                       1300
## Metabolism Of Amino Acids And Derivatives                                                                                                  1300
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              1300
## Metabolism Of Carbohydrates                                                                                                                1300
## Metabolism Of Cofactors                                                                                                                    1300
## Metabolism Of Folate And Pterines                                                                                                          1300
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           1300
## Metabolism Of Lipids                                                                                                                       1300
## Metabolism Of Nucleotides                                                                                                                  1300
## Metabolism Of Polyamines                                                                                                                   1300
## Metabolism Of Porphyrins                                                                                                                   1300
## Metabolism Of Rna                                                                                                                          1300
## Metabolism Of Steroid Hormones                                                                                                             1300
## Metabolism Of Steroids                                                                                                                     1300
## Metabolism Of Vitamins And Cofactors                                                                                                       1300
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         1300
## Metal Ion Slc Transporters                                                                                                                 1300
## Metal Sequestration By Antimicrobial Proteins                                                                                              1300
## Metallothioneins Bind Metals                                                                                                               1300
## Methionine Salvage Pathway                                                                                                                 1300
## Methylation                                                                                                                                1300
## Mhc Class Ii Antigen Presentation                                                                                                          1300
## Microrna Mirna Biogenesis                                                                                                                  1300
## Mineralocorticoid Biosynthesis                                                                                                             1300
## Miro Gtpase Cycle                                                                                                                          1300
## Miscellaneous Substrates                                                                                                                   1300
## Miscellaneous Transport And Binding Events                                                                                                 1300
## Mismatch Repair                                                                                                                            1300
## Mitochondrial Biogenesis                                                                                                                   1300
## Mitochondrial Calcium Ion Transport                                                                                                        1300
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    1300
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           1300
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         1300
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               1300
## Mitochondrial Protein Import                                                                                                               1300
## Mitochondrial Translation                                                                                                                  1300
## Mitochondrial Trna Aminoacylation                                                                                                          1300
## Mitochondrial Uncoupling                                                                                                                   1300
## Mitotic G1 Phase And G1 S Transition                                                                                                       1300
## Mitotic G2 G2 M Phases                                                                                                                     1300
## Mitotic Metaphase And Anaphase                                                                                                             1300
## Mitotic Prometaphase                                                                                                                       1300
## Mitotic Prophase                                                                                                                           1300
## Mitotic Spindle Checkpoint                                                                                                                 1300
## Mitotic Telophase Cytokinesis                                                                                                              1300
## Modulation By Mtb Of Host Immune System                                                                                                    1300
## Molecules Associated With Elastic Fibres                                                                                                   1300
## Molybdenum Cofactor Biosynthesis                                                                                                           1300
## Mrna Capping                                                                                                                               1300
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       1300
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       1300
## Mrna Editing                                                                                                                               1300
## Mrna Editing C To U Conversion                                                                                                             1300
## Mrna Splicing                                                                                                                              1300
## Mrna Splicing Minor Pathway                                                                                                                1300
## Mtor Signalling                                                                                                                            1300
## Mtorc1 Mediated Signalling                                                                                                                 1300
## Mucopolysaccharidoses                                                                                                                      1300
## Multifunctional Anion Exchangers                                                                                                           1300
## Muscarinic Acetylcholine Receptors                                                                                                         1300
## Muscle Contraction                                                                                                                         1300
## Myoclonic Epilepsy Of Lafora                                                                                                               1300
## N Glycan Antennae Elongation                                                                                                               1300
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     1300
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          1300
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                1300
## Na Cl Dependent Neurotransmitter Transporters                                                                                              1300
## Nade Modulates Death Signalling                                                                                                            1300
## Ncam1 Interactions                                                                                                                         1300
## Nectin Necl Trans Heterodimerization                                                                                                       1300
## Neddylation                                                                                                                                1300
## Nef And Signal Transduction                                                                                                                1300
## Nef Mediated Cd4 Down Regulation                                                                                                           1300
## Nef Mediated Cd8 Down Regulation                                                                                                           1300
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 1300
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             1300
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          1300
## Negative Feedback Regulation Of Mapk Pathway                                                                                               1300
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 1300
## Negative Regulation Of Fgfr1 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr2 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr3 Signaling                                                                                                     1300
## Negative Regulation Of Fgfr4 Signaling                                                                                                     1300
## Negative Regulation Of Flt3                                                                                                                1300
## Negative Regulation Of Mapk Pathway                                                                                                        1300
## Negative Regulation Of Met Activity                                                                                                        1300
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        1300
## Negative Regulation Of Notch4 Signaling                                                                                                    1300
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 1300
## Negative Regulation Of The Pi3k Akt Network                                                                                                1300
## Nephrin Family Interactions                                                                                                                1300
## Nervous System Development                                                                                                                 1300
## Netrin Mediated Repulsion Signals                                                                                                          1300
## Neurexins And Neuroligins                                                                                                                  1300
## Neurofascin Interactions                                                                                                                   1300
## Neuronal System                                                                                                                            1300
## Neurotoxicity Of Clostridium Toxins                                                                                                        1300
## Neurotransmitter Clearance                                                                                                                 1300
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1300
## Neurotransmitter Release Cycle                                                                                                             1300
## Neutrophil Degranulation                                                                                                                   1300
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   1300
## Ngf Independant Trka Activation                                                                                                            1300
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  1300
## Non Integrin Membrane Ecm Interactions                                                                                                     1300
## Noncanonical Activation Of Notch3                                                                                                          1300
## Nonhomologous End Joining Nhej                                                                                                             1300
## Nonsense Mediated Decay Nmd                                                                                                                1300
## Norepinephrine Neurotransmitter Release Cycle                                                                                              1300
## Notch Hlh Transcription Pathway                                                                                                            1300
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Notch3 Intracellular Domain Regulates Transcription                                                                                        1300
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                1300
## Notch4 Intracellular Domain Regulates Transcription                                                                                        1300
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 1300
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      1300
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           1300
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            1300
## Nrcam Interactions                                                                                                                         1300
## Ns1 Mediated Effects On Host Pathways                                                                                                      1300
## Ntrk2 Activates Rac1                                                                                                                       1300
## Nuclear Envelope Ne Reassembly                                                                                                             1300
## Nuclear Import Of Rev Protein                                                                                                              1300
## Nuclear Receptor Transcription Pathway                                                                                                     1300
## Nuclear Signaling By Erbb4                                                                                                                 1300
## Nucleobase Biosynthesis                                                                                                                    1300
## Nucleobase Catabolism                                                                                                                      1300
## Nucleotide Excision Repair                                                                                                                 1300
## Nucleotide Like Purinergic Receptors                                                                                                       1300
## Nucleotide Salvage                                                                                                                         1300
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          1300
## O Linked Glycosylation                                                                                                                     1300
## O Linked Glycosylation Of Mucins                                                                                                           1300
## Oas Antiviral Response                                                                                                                     1300
## Olfactory Signaling Pathway                                                                                                                1300
## Oncogene Induced Senescence                                                                                                                1300
## Oncogenic Mapk Signaling                                                                                                                   1300
## Opioid Signalling                                                                                                                          1300
## Opsins                                                                                                                                     1300
## Orc1 Removal From Chromatin                                                                                                                1300
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    1300
## Organelle Biogenesis And Maintenance                                                                                                       1300
## Organic Anion Transport                                                                                                                    1300
## Organic Anion Transporters                                                                                                                 1300
## Organic Cation Anion Zwitterion Transport                                                                                                  1300
## Organic Cation Transport                                                                                                                   1300
## Other Interleukin Signaling                                                                                                                1300
## Oxidative Stress Induced Senescence                                                                                                        1300
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            1300
## P2y Receptors                                                                                                                              1300
## P38mapk Events                                                                                                                             1300
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             1300
## P75ntr Regulates Axonogenesis                                                                                                              1300
## Parasite Infection                                                                                                                         1300
## Passive Transport By Aquaporins                                                                                                            1300
## Pcna Dependent Long Patch Base Excision Repair                                                                                             1300
## Pcp Ce Pathway                                                                                                                             1300
## Pecam1 Interactions                                                                                                                        1300
## Pentose Phosphate Pathway                                                                                                                  1300
## Peptide Hormone Biosynthesis                                                                                                               1300
## Peptide Hormone Metabolism                                                                                                                 1300
## Peroxisomal Lipid Metabolism                                                                                                               1300
## Peroxisomal Protein Import                                                                                                                 1300
## Pexophagy                                                                                                                                  1300
## Phase 0 Rapid Depolarisation                                                                                                               1300
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   1300
## Phase 2 Plateau Phase                                                                                                                      1300
## Phase 3 Rapid Repolarisation                                                                                                               1300
## Phase I Functionalization Of Compounds                                                                                                     1300
## Phase Ii Conjugation Of Compounds                                                                                                          1300
## Phenylalanine And Tyrosine Metabolism                                                                                                      1300
## Phenylalanine Metabolism                                                                                                                   1300
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              1300
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 1300
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     1300
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     1300
## Phospholipid Metabolism                                                                                                                    1300
## Physiological Factors                                                                                                                      1300
## Pi 3k Cascade Fgfr1                                                                                                                        1300
## Pi 3k Cascade Fgfr2                                                                                                                        1300
## Pi 3k Cascade Fgfr3                                                                                                                        1300
## Pi 3k Cascade Fgfr4                                                                                                                        1300
## Pi Metabolism                                                                                                                              1300
## Pi3k Akt Activation                                                                                                                        1300
## Pi3k Akt Signaling In Cancer                                                                                                               1300
## Pi3k Events In Erbb2 Signaling                                                                                                             1300
## Pi3k Events In Erbb4 Signaling                                                                                                             1300
## Pi5p Regulates Tp53 Acetylation                                                                                                            1300
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      1300
## Pka Activation In Glucagon Signalling                                                                                                      1300
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      1300
## Pkmts Methylate Histone Lysines                                                                                                            1300
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1300
## Platelet Activation Signaling And Aggregation                                                                                              1300
## Platelet Adhesion To Exposed Collagen                                                                                                      1300
## Platelet Aggregation Plug Formation                                                                                                        1300
## Platelet Calcium Homeostasis                                                                                                               1300
## Platelet Homeostasis                                                                                                                       1300
## Platelet Sensitization By Ldl                                                                                                              1300
## Polb Dependent Long Patch Base Excision Repair                                                                                             1300
## Polo Like Kinase Mediated Events                                                                                                           1300
## Polymerase Switching                                                                                                                       1300
## Polymerase Switching On The C Strand Of The Telomere                                                                                       1300
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          1300
## Post Chaperonin Tubulin Folding Pathway                                                                                                    1300
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         1300
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           1300
## Potassium Channels                                                                                                                         1300
## Potential Therapeutics For Sars                                                                                                            1300
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            1300
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   1300
## Pre Notch Expression And Processing                                                                                                        1300
## Pre Notch Processing In Golgi                                                                                                              1300
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          1300
## Pregnenolone Biosynthesis                                                                                                                  1300
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     1300
## Presynaptic Function Of Kainate Receptors                                                                                                  1300
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  1300
## Processing And Activation Of Sumo                                                                                                          1300
## Processing Of Capped Intron Containing Pre Mrna                                                                                            1300
## Processing Of Capped Intronless Pre Mrna                                                                                                   1300
## Processing Of Dna Double Strand Break Ends                                                                                                 1300
## Processing Of Intronless Pre Mrnas                                                                                                         1300
## Processing Of Smdt1                                                                                                                        1300
## Processive Synthesis On The C Strand Of The Telomere                                                                                       1300
## Processive Synthesis On The Lagging Strand                                                                                                 1300
## Prolactin Receptor Signaling                                                                                                               1300
## Prolonged Erk Activation Events                                                                                                            1300
## Propionyl Coa Catabolism                                                                                                                   1300
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      1300
## Prostanoid Ligand Receptors                                                                                                                1300
## Protein Folding                                                                                                                            1300
## Protein Localization                                                                                                                       1300
## Protein Methylation                                                                                                                        1300
## Protein Protein Interactions At Synapses                                                                                                   1300
## Protein Repair                                                                                                                             1300
## Protein Ubiquitination                                                                                                                     1300
## Proton Coupled Monocarboxylate Transport                                                                                                   1300
## Pten Regulation                                                                                                                            1300
## Ptk6 Expression                                                                                                                            1300
## Ptk6 Promotes Hif1a Stabilization                                                                                                          1300
## Ptk6 Regulates Cell Cycle                                                                                                                  1300
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         1300
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      1300
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      1300
## Purine Catabolism                                                                                                                          1300
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           1300
## Purine Salvage                                                                                                                             1300
## Pyrimidine Catabolism                                                                                                                      1300
## Pyrimidine Salvage                                                                                                                         1300
## Pyruvate Metabolism                                                                                                                        1300
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              1300
## Ra Biosynthesis Pathway                                                                                                                    1300
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      1300
## Rab Geranylgeranylation                                                                                                                    1300
## Rab Regulation Of Trafficking                                                                                                              1300
## Rac1 Gtpase Cycle                                                                                                                          1300
## Raf Activation                                                                                                                             1300
## Rap1 Signalling                                                                                                                            1300
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       1300
## Ras Processing                                                                                                                             1300
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  1300
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               1300
## Receptor Type Tyrosine Protein Phosphatases                                                                                                1300
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     1300
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           1300
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   1300
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 1300
## Recycling Of Bile Acids And Salts                                                                                                          1300
## Recycling Of Eif2 Gdp                                                                                                                      1300
## Recycling Pathway Of L1                                                                                                                    1300
## Reduction Of Cytosolic Ca Levels                                                                                                           1300
## Reelin Signalling Pathway                                                                                                                  1300
## Regulated Proteolysis Of P75ntr                                                                                                            1300
## Regulation Of Bach1 Activity                                                                                                               1300
## Regulation Of Beta Cell Development                                                                                                        1300
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      1300
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                1300
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         1300
## Regulation Of Expression Of Slits And Robos                                                                                                1300
## Regulation Of Fzd By Ubiquitination                                                                                                        1300
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  1300
## Regulation Of Gene Expression In Beta Cells                                                                                                1300
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          1300
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              1300
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         1300
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                1300
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           1300
## Regulation Of Hmox1 Expression And Activity                                                                                                1300
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            1300
## Regulation Of Ifna Signaling                                                                                                               1300
## Regulation Of Ifng Signaling                                                                                                               1300
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     1300
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    1300
## Regulation Of Insulin Secretion                                                                                                            1300
## Regulation Of Kit Signaling                                                                                                                1300
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                1300
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   1300
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        1300
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             1300
## Regulation Of Pten Gene Transcription                                                                                                      1300
## Regulation Of Pten Localization                                                                                                            1300
## Regulation Of Pten Mrna Translation                                                                                                        1300
## Regulation Of Pten Stability And Activity                                                                                                  1300
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           1300
## Regulation Of Ras By Gaps                                                                                                                  1300
## Regulation Of Runx1 Expression And Activity                                                                                                1300
## Regulation Of Runx2 Expression And Activity                                                                                                1300
## Regulation Of Runx3 Expression And Activity                                                                                                1300
## Regulation Of Signaling By Cbl                                                                                                             1300
## Regulation Of Signaling By Nodal                                                                                                           1300
## Regulation Of Tp53 Activity                                                                                                                1300
## Regulation Of Tp53 Activity Through Acetylation                                                                                            1300
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            1300
## Regulation Of Tp53 Activity Through Methylation                                                                                            1300
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        1300
## Relaxin Receptors                                                                                                                          1300
## Release Of Apoptotic Factors From The Mitochondria                                                                                         1300
## Release Of Hh Np From The Secreting Cell                                                                                                   1300
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      1300
## Reproduction                                                                                                                               1300
## Resolution Of Abasic Sites Ap Sites                                                                                                        1300
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               1300
## Resolution Of D Loop Structures                                                                                                            1300
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          1300
## Resolution Of Sister Chromatid Cohesion                                                                                                    1300
## Respiratory Electron Transport                                                                                                             1300
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           1300
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 1300
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          1300
## Response Of Mtb To Phagocytosis                                                                                                            1300
## Response To Elevated Platelet Cytosolic Ca2                                                                                                1300
## Response To Metal Ions                                                                                                                     1300
## Ret Signaling                                                                                                                              1300
## Retinoid Cycle Disease Events                                                                                                              1300
## Retrograde Neurotrophin Signalling                                                                                                         1300
## Retrograde Transport At The Trans Golgi Network                                                                                            1300
## Reversible Hydration Of Carbon Dioxide                                                                                                     1300
## Rho Gtpase Cycle                                                                                                                           1300
## Rho Gtpase Effectors                                                                                                                       1300
## Rho Gtpases Activate Cit                                                                                                                   1300
## Rho Gtpases Activate Formins                                                                                                               1300
## Rho Gtpases Activate Nadph Oxidases                                                                                                        1300
## Rho Gtpases Activate Pkns                                                                                                                  1300
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               1300
## Rho Gtpases Activate Rocks                                                                                                                 1300
## Rhoa Gtpase Cycle                                                                                                                          1300
## Rhobtb Gtpase Cycle                                                                                                                        1300
## Rhobtb1 Gtpase Cycle                                                                                                                       1300
## Rhobtb2 Gtpase Cycle                                                                                                                       1300
## Rhobtb3 Atpase Cycle                                                                                                                       1300
## Rhoc Gtpase Cycle                                                                                                                          1300
## Rhot1 Gtpase Cycle                                                                                                                         1300
## Rmts Methylate Histone Arginines                                                                                                           1300
## Rna Polymerase I Promoter Escape                                                                                                           1300
## Rna Polymerase I Transcription                                                                                                             1300
## Rna Polymerase I Transcription Initiation                                                                                                  1300
## Rna Polymerase I Transcription Termination                                                                                                 1300
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  1300
## Rna Polymerase Ii Transcription Termination                                                                                                1300
## Rna Polymerase Iii Chain Elongation                                                                                                        1300
## Rna Polymerase Iii Transcription                                                                                                           1300
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           1300
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           1300
## Rna Polymerase Iii Transcription Termination                                                                                               1300
## Robo Receptors Bind Akap5                                                                                                                  1300
## Role Of Abl In Robo Slit Signaling                                                                                                         1300
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              1300
## Role Of Phospholipids In Phagocytosis                                                                                                      1300
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            1300
## Rora Activates Gene Expression                                                                                                             1300
## Rrna Modification In The Mitochondrion                                                                                                     1300
## Rrna Modification In The Nucleus And Cytosol                                                                                               1300
## Rrna Processing                                                                                                                            1300
## Rrna Processing In The Mitochondrion                                                                                                       1300
## Rsk Activation                                                                                                                             1300
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         1300
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   1300
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                1300
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      1300
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 1300
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        1300
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   1300
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           1300
## Runx2 Regulates Bone Development                                                                                                           1300
## Runx2 Regulates Chondrocyte Maturation                                                                                                     1300
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           1300
## Runx2 Regulates Osteoblast Differentiation                                                                                                 1300
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  1300
## Runx3 Regulates Cdkn1a Transcription                                                                                                       1300
## Runx3 Regulates Immune Response And Cell Migration                                                                                         1300
## Runx3 Regulates Notch Signaling                                                                                                            1300
## Runx3 Regulates P14 Arf                                                                                                                    1300
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                1300
## S Phase                                                                                                                                    1300
## Sars Cov 1 Genome Replication And Transcription                                                                                            1300
## Sars Cov 1 Infection                                                                                                                       1300
## Sars Cov 2 Infection                                                                                                                       1300
## Sars Cov Infections                                                                                                                        1300
## Scavenging By Class F Receptors                                                                                                            1300
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   1300
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            1300
## Selective Autophagy                                                                                                                        1300
## Selenoamino Acid Metabolism                                                                                                                1300
## Sema3a Pak Dependent Axon Repulsion                                                                                                        1300
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          1300
## Sema4d In Semaphorin Signaling                                                                                                             1300
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     1300
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                1300
## Senescence Associated Secretory Phenotype Sasp                                                                                             1300
## Sensing Of Dna Double Strand Breaks                                                                                                        1300
## Sensory Perception                                                                                                                         1300
## Sensory Processing Of Sound                                                                                                                1300
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             1300
## Separation Of Sister Chromatids                                                                                                            1300
## Serine Biosynthesis                                                                                                                        1300
## Serotonin And Melatonin Biosynthesis                                                                                                       1300
## Serotonin Neurotransmitter Release Cycle                                                                                                   1300
## Serotonin Receptors                                                                                                                        1300
## Shc Mediated Cascade Fgfr1                                                                                                                 1300
## Shc Mediated Cascade Fgfr3                                                                                                                 1300
## Shc Mediated Cascade Fgfr4                                                                                                                 1300
## Shc Related Events Triggered By Igf1r                                                                                                      1300
## Shc1 Events In Egfr Signaling                                                                                                              1300
## Shc1 Events In Erbb2 Signaling                                                                                                             1300
## Shc1 Events In Erbb4 Signaling                                                                                                             1300
## Sialic Acid Metabolism                                                                                                                     1300
## Signal Amplification                                                                                                                       1300
## Signal Attenuation                                                                                                                         1300
## Signal Regulatory Protein Family Interactions                                                                                              1300
## Signal Transduction By L1                                                                                                                  1300
## Signaling By Activin                                                                                                                       1300
## Signaling By Bmp                                                                                                                           1300
## Signaling By Braf And Raf Fusions                                                                                                          1300
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   1300
## Signaling By Egfr In Cancer                                                                                                                1300
## Signaling By Erbb2                                                                                                                         1300
## Signaling By Erbb2 Ecd Mutants                                                                                                             1300
## Signaling By Erbb2 In Cancer                                                                                                               1300
## Signaling By Erbb4                                                                                                                         1300
## Signaling By Erythropoietin                                                                                                                1300
## Signaling By Fgfr                                                                                                                          1300
## Signaling By Fgfr1                                                                                                                         1300
## Signaling By Fgfr2                                                                                                                         1300
## Signaling By Fgfr2 Iiia Tm                                                                                                                 1300
## Signaling By Fgfr2 In Disease                                                                                                              1300
## Signaling By Fgfr3                                                                                                                         1300
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       1300
## Signaling By Fgfr4                                                                                                                         1300
## Signaling By Fgfr4 In Disease                                                                                                              1300
## Signaling By Flt3 Fusion Proteins                                                                                                          1300
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      1300
## Signaling By Gpcr                                                                                                                          1300
## Signaling By Hedgehog                                                                                                                      1300
## Signaling By Hippo                                                                                                                         1300
## Signaling By Insulin Receptor                                                                                                              1300
## Signaling By Lrp5 Mutants                                                                                                                  1300
## Signaling By Mapk Mutants                                                                                                                  1300
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 1300
## Signaling By Met                                                                                                                           1300
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         1300
## Signaling By Mras Complex Mutants                                                                                                          1300
## Signaling By Mst1                                                                                                                          1300
## Signaling By Nodal                                                                                                                         1300
## Signaling By Notch                                                                                                                         1300
## Signaling By Notch1                                                                                                                        1300
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            1300
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          1300
## Signaling By Notch3                                                                                                                        1300
## Signaling By Notch4                                                                                                                        1300
## Signaling By Ntrk2 Trkb                                                                                                                    1300
## Signaling By Ntrk3 Trkc                                                                                                                    1300
## Signaling By Ntrks                                                                                                                         1300
## Signaling By Nuclear Receptors                                                                                                             1300
## Signaling By Receptor Tyrosine Kinases                                                                                                     1300
## Signaling By Retinoic Acid                                                                                                                 1300
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          1300
## Signaling By Rnf43 Mutants                                                                                                                 1300
## Signaling By Robo Receptors                                                                                                                1300
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           1300
## Signaling By Tgfb Family Members                                                                                                           1300
## Signaling By The B Cell Receptor Bcr                                                                                                       1300
## Signaling By Vegf                                                                                                                          1300
## Signaling By Wnt                                                                                                                           1300
## Signaling By Wnt In Cancer                                                                                                                 1300
## Signalling To Erks                                                                                                                         1300
## Signalling To P38 Via Rit And Rin                                                                                                          1300
## Signalling To Ras                                                                                                                          1300
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       1300
## Slc Mediated Transmembrane Transport                                                                                                       1300
## Slc Transporter Disorders                                                                                                                  1300
## Smac Xiap Regulated Apoptotic Response                                                                                                     1300
## Small Interfering Rna Sirna Biogenesis                                                                                                     1300
## Smooth Muscle Contraction                                                                                                                  1300
## Snrnp Assembly                                                                                                                             1300
## Sodium Calcium Exchangers                                                                                                                  1300
## Sodium Coupled Phosphate Cotransporters                                                                                                    1300
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                1300
## Sodium Proton Exchangers                                                                                                                   1300
## Sos Mediated Signalling                                                                                                                    1300
## Sperm Motility And Taxes                                                                                                                   1300
## Sphingolipid De Novo Biosynthesis                                                                                                          1300
## Sphingolipid Metabolism                                                                                                                    1300
## Spry Regulation Of Fgf Signaling                                                                                                           1300
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                1300
## Stabilization Of P53                                                                                                                       1300
## Stat5 Activation                                                                                                                           1300
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            1300
## Stimuli Sensing Channels                                                                                                                   1300
## Sting Mediated Induction Of Host Immune Responses                                                                                          1300
## Striated Muscle Contraction                                                                                                                1300
## Sulfide Oxidation To Sulfate                                                                                                               1300
## Sulfur Amino Acid Metabolism                                                                                                               1300
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         1300
## Sumo Is Proteolytically Processed                                                                                                          1300
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               1300
## Sumoylation                                                                                                                                1300
## Sumoylation Of Chromatin Organization Proteins                                                                                             1300
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     1300
## Sumoylation Of Dna Replication Proteins                                                                                                    1300
## Sumoylation Of Intracellular Receptors                                                                                                     1300
## Sumoylation Of Rna Binding Proteins                                                                                                        1300
## Sumoylation Of Sumoylation Proteins                                                                                                        1300
## Sumoylation Of Transcription Cofactors                                                                                                     1300
## Sumoylation Of Transcription Factors                                                                                                       1300
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   1300
## Suppression Of Apoptosis                                                                                                                   1300
## Suppression Of Phagosomal Maturation                                                                                                       1300
## Surfactant Metabolism                                                                                                                      1300
## Switching Of Origins To A Post Replicative State                                                                                           1300
## Synaptic Adhesion Like Molecules                                                                                                           1300
## Syndecan Interactions                                                                                                                      1300
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          1300
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      1300
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      1300
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   1300
## Synthesis Of Bile Acids And Bile Salts                                                                                                     1300
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           1300
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           1300
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       1300
## Synthesis Of Diphthamide Eef2                                                                                                              1300
## Synthesis Of Dolichyl Phosphate                                                                                                            1300
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              1300
## Synthesis Of Gdp Mannose                                                                                                                   1300
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              1300
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 1300
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    1300
## Synthesis Of Ketone Bodies                                                                                                                 1300
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 1300
## Synthesis Of Lipoxins Lx                                                                                                                   1300
## Synthesis Of Pa                                                                                                                            1300
## Synthesis Of Pc                                                                                                                            1300
## Synthesis Of Pe                                                                                                                            1300
## Synthesis Of Pg                                                                                                                            1300
## Synthesis Of Pi                                                                                                                            1300
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           1300
## Synthesis Of Pips At The Er Membrane                                                                                                       1300
## Synthesis Of Pips At The Golgi Membrane                                                                                                    1300
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            1300
## Synthesis Of Pips At The Plasma Membrane                                                                                                   1300
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 1300
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            1300
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      1300
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               1300
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 1300
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             1300
## Tachykinin Receptors Bind Tachykinins                                                                                                      1300
## Tbc Rabgaps                                                                                                                                1300
## Tcf Dependent Signaling In Response To Wnt                                                                                                 1300
## Tcr Signaling                                                                                                                              1300
## Telomere C Strand Lagging Strand Synthesis                                                                                                 1300
## Telomere C Strand Synthesis Initiation                                                                                                     1300
## Telomere Extension By Telomerase                                                                                                           1300
## Telomere Maintenance                                                                                                                       1300
## Terminal Pathway Of Complement                                                                                                             1300
## Termination Of O Glycan Biosynthesis                                                                                                       1300
## Termination Of Translesion Dna Synthesis                                                                                                   1300
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         1300
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            1300
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               1300
## Tgf Beta Receptor Signaling Activates Smads                                                                                                1300
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    1300
## The Activation Of Arylsulfatases                                                                                                           1300
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       1300
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               1300
## The Fatty Acid Cycling Model                                                                                                               1300
## The Phototransduction Cascade                                                                                                              1300
## The Retinoid Cycle In Cones Daylight Vision                                                                                                1300
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  1300
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              1300
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            1300
## Thromboxane Signalling Through Tp Receptor                                                                                                 1300
## Thyroxine Biosynthesis                                                                                                                     1300
## Tie2 Signaling                                                                                                                             1300
## Tight Junction Interactions                                                                                                                1300
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    1300
## Tp53 Regulates Metabolic Genes                                                                                                             1300
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           1300
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            1300
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           1300
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                1300
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           1300
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     1300
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     1300
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       1300
## Traf3 Dependent Irf Activation Pathway                                                                                                     1300
## Traf6 Mediated Irf7 Activation                                                                                                             1300
## Trafficking Of Ampa Receptors                                                                                                              1300
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             1300
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        1300
## Trail Signaling                                                                                                                            1300
## Trans Golgi Network Vesicle Budding                                                                                                        1300
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    1300
## Transcription Of The Hiv Genome                                                                                                            1300
## Transcriptional Regulation By E2f6                                                                                                         1300
## Transcriptional Regulation By Runx1                                                                                                        1300
## Transcriptional Regulation By Runx2                                                                                                        1300
## Transcriptional Regulation By Runx3                                                                                                        1300
## Transcriptional Regulation By Small Rnas                                                                                                   1300
## Transcriptional Regulation By Tp53                                                                                                         1300
## Transcriptional Regulation By Ventx                                                                                                        1300
## Transcriptional Regulation Of Testis Differentiation                                                                                       1300
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              1300
## Transferrin Endocytosis And Recycling                                                                                                      1300
## Translation                                                                                                                                1300
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             1300
## Translation Of Sars Cov 1 Structural Proteins                                                                                              1300
## Translation Of Sars Cov 2 Structural Proteins                                                                                              1300
## Translesion Synthesis By Polh                                                                                                              1300
## Translesion Synthesis By Polk                                                                                                              1300
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         1300
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       1300
## Transmission Across Chemical Synapses                                                                                                      1300
## Transport And Synthesis Of Paps                                                                                                            1300
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   1300
## Transport Of Connexons To The Plasma Membrane                                                                                              1300
## Transport Of Fatty Acids                                                                                                                   1300
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        1300
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              1300
## Transport Of Mature Transcript To Cytoplasm                                                                                                1300
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   1300
## Transport Of Nucleotide Sugars                                                                                                             1300
## Transport Of Organic Anions                                                                                                                1300
## Transport Of Small Molecules                                                                                                               1300
## Transport Of The Slbp Dependant Mature Mrna                                                                                                1300
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    1300
## Transport To The Golgi And Subsequent Modification                                                                                         1300
## Triglyceride Biosynthesis                                                                                                                  1300
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      1300
## Trna Aminoacylation                                                                                                                        1300
## Trna Modification In The Mitochondrion                                                                                                     1300
## Trna Modification In The Nucleus And Cytosol                                                                                               1300
## Trna Processing                                                                                                                            1300
## Trna Processing In The Mitochondrion                                                                                                       1300
## Trna Processing In The Nucleus                                                                                                             1300
## Trp Channels                                                                                                                               1300
## Tryptophan Catabolism                                                                                                                      1300
## Type I Hemidesmosome Assembly                                                                                                              1300
## Tyrosine Catabolism                                                                                                                        1300
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        1300
## Ub Specific Processing Proteases                                                                                                           1300
## Ubiquinol Biosynthesis                                                                                                                     1300
## Uch Proteinases                                                                                                                            1300
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              1300
## Unwinding Of Dna                                                                                                                           1300
## Uptake And Actions Of Bacterial Toxins                                                                                                     1300
## Uptake And Function Of Anthrax Toxins                                                                                                      1300
## Uptake And Function Of Diphtheria Toxin                                                                                                    1300
## Urea Cycle                                                                                                                                 1300
## Vasopressin Like Receptors                                                                                                                 1300
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               1300
## Vegf Ligand Receptor Interactions                                                                                                          1300
## Vegfr2 Mediated Cell Proliferation                                                                                                         1300
## Vesicle Mediated Transport                                                                                                                 1300
## Viral Messenger Rna Synthesis                                                                                                              1300
## Visual Phototransduction                                                                                                                   1300
## Vitamin B1 Thiamin Metabolism                                                                                                              1300
## Vitamin B2 Riboflavin Metabolism                                                                                                           1300
## Vitamin B5 Pantothenate Metabolism                                                                                                         1300
## Vitamin C Ascorbate Metabolism                                                                                                             1300
## Vitamin D Calciferol Metabolism                                                                                                            1300
## Vitamins                                                                                                                                   1300
## Vldl Assembly                                                                                                                              1300
## Vldl Clearance                                                                                                                             1300
## Vldlr Internalisation And Degradation                                                                                                      1300
## Voltage Gated Potassium Channels                                                                                                           1300
## Vxpx Cargo Targeting To Cilium                                                                                                             1300
## Wax And Plasmalogen Biosynthesis                                                                                                           1300
## Wnt Mediated Activation Of Dvl                                                                                                             1300
## Xenobiotics                                                                                                                                1300
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              1300
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   1300
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            1300
## Zinc Transporters                                                                                                                          1300
##                                                                                                                                                                                                                                                                                                                                                             hits
## Interleukin 10 Signaling                                                                                                                                                                                                                                                                  CCL2,CCL22,CCR5,CD86,CSF2,CXCL1,CXCL10,CXCL8,IL18,IL1B,PTGS2,STAT3,TNF
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                                                                    CCL11,CCL2,CCL22,CXCL8,FASLG,IL13,IL17A,IL18,IL1B,IL4,IRF4,LBP,MYC,PTGS2,STAT3,TNF
## Interleukin 18 Signaling                                                                                                                                                                                                                                                                                                                           IL13,IL18,IL4
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                                                                                        CCL11,CCL2,CCL22,CCR5,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                                                                                                                                                         BIRC3,CD40,TNFSF11,TNFSF13B
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                                                                                                                                                                         IRAK1,MAPK8,NOD2,RIPK2
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                                                                                                                                                              HMGB1,IRAK1,NFKBIA,NOD2,RIPK2
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                                                                                                                      IRAK1,NFKBIA,RIPK2
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                                                                                                                                               C3,IL18,IL1B,NLRP3
## Interleukin 1 Processing                                                                                                                                                                                                                                                                                                                               IL18,IL1B
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                                                                                                                              CD70,FASLG,TNFSF11,TNFSF13B
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                                                                                                                                                                              CTLA4,IL2
## Diseases Of Immune System                                                                                                                                                                                                                                                                                                                 HMGB1,LY96,NFKBIA,TLR3
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                                                                                                                                            HMGB1,LBP,LY96
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                                                                                                                                                                       AIM2,BIRC3,IRAK1,NLRP3,NOD2,RIPK2
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                                                                                                                           CD86,CDC42
## Killing Mechanisms                                                                                                                                                                                                                                                                                                                                   MAPK8,WNT5A
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                                                                                            CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2,TLR9
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                                                                                                                                     IRAK1,NOD2,RIPK2
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                                                                                              BIRC3,CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                                                                                                                                             IRAK1,NFKBIA
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                                                                                                                                 IRAK1,RIPK2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                                                                                                                                                               IRAK1,TLR9
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                                                                                                                                            TLR3,TLR9
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                                                                                                                  BIRC3,IRAK1,NOD2,RIPK2
## Interleukin 15 Signaling                                                                                                                                                                                                                                                                                                                              IL15,STAT3
## Toll Like Receptor Cascades                                                                                                                                                                                                                                                               BIRC3,BPI,CREB1,HMGB1,IRAK1,LBP,LY96,MAPK8,NFKBIA,NOD2,RIPK2,TLR3,TLR9
## Pyroptosis                                                                                                                                                                                                                                                                                                                                       HMGB1,IL18,IL1B
## Alternative Complement Activation                                                                                                                                                                                                                                                                                                                             C3
## Fasl Cd95l Signaling                                                                                                                                                                                                                                                                                                                                       FASLG
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                                                                                                                                             CDK1
## Galactose Catabolism                                                                                                                                                                                                                                                                                                                                        GALE
## Hdl Clearance                                                                                                                                                                                                                                                                                                                                              APOA1
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                                                                                                                                                      CREB1
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                                                                                                                                           CAV1
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                                                                                                                                                                              MYC
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                                                                                                                                                                      FASLG,LY96
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                                                                                                                                             DNMT1,DNMT3A
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                                                                                                                                                NFKBIA,TLR3
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                                                                                                                                           PTGS2
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                                                                                                                                 IL1B
## Fibronectin Matrix Formation                                                                                                                                                                                                                                                                                                                             CEACAM1
## Phosphorylation Of Emi1                                                                                                                                                                                                                                                                                                                                     CDK1
## Regulated Necrosis                                                                                                                                                                                                                                                                                                                   BIRC3,FASLG,HMGB1,IL18,IL1B
## Scavenging By Class B Receptors                                                                                                                                                                                                                                                                                                                            APOA1
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                                                                                                                                          PTGS2
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                                                                                                                                                        TLR3
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                                                                                                                                           TNF
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                                                                                                                               HMGB1,LY96
## Interleukin 2 Family Signaling                                                                                                                                                                                                                                                                                                               CSF2,IL15,IL2,STAT3
## Interleukin 17 Signaling                                                                                                                                                                                                                                                                                                      CREB1,IL17A,IRAK1,MAPK8,NOD2,RIPK2
## Interleukin 1 Family Signaling                                                                                                                                                                                                                                                                      HMGB1,IL13,IL18,IL1B,IL4,IRAK1,MAPK8,NFKBIA,NOD2,RIPK2,STAT3
## Scavenging By Class A Receptors                                                                                                                                                                                                                                                                                                                      APOA1,MARCO
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                                                                                                                                          BIRC3,TLR3
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                                                                                                                                                   CDK1
## Creb Phosphorylation                                                                                                                                                                                                                                                                                                                                       CREB1
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                                                                                                                              NFKBIA
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                                                                                                                                                                                         CSF2
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                                                                                              CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2
## Activation Of C3 And C5                                                                                                                                                                                                                                                                                                                                       C3
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                                                                                                                                                           MYC
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                                                                                                                                                                               CREB1
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                                                                                                                            CD86,CTLA4
## Hdl Assembly                                                                                                                                                                                                                                                                                                                                               APOA1
## Heme Signaling                                                                                                                                                                                                                                                                                                                            APOA1,CREB1,LY96,SIRT1
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                                                                                                                                             CDC42
## Inflammasomes                                                                                                                                                                                                                                                                                                                                         AIM2,NLRP3
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                                                                                                                                                          CREB1
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                                                                                                                                                MYC
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                                                                                                                                           NFKBIA,TLR3
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                                                                                                                                                                               STAT3
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                                                                                                                                                              CD163
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                                                                                                                                                                 CDK1
## Interleukin 23 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Interleukin 9 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                                                                                                                                         LY96
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                                                                                                                                              BIRC3,LY96
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                                                                                                                                   CDK1,NOD2,RIPK2
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                                                                                                                                     HMGB1,NFKBIA
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                                                                                                                                                                     MAPK8
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                                                                                                                                                  CREB1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                                                                                                                                                   CREB1
## Chylomicron Assembly                                                                                                                                                                                                                                                                                                                                       APOA1
## Chylomicron Remodeling                                                                                                                                                                                                                                                                                                                                     APOA1
## Hdl Remodeling                                                                                                                                                                                                                                                                                                                                             APOA1
## Interleukin 21 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Mapk3 Erk1 Activation                                                                                                                                                                                                                                                                                                                                       CDK1
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                                                                                                                                                       CDK1
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                                                                                                                                                                 SIRT1
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                                                                                                                                                                         FASLG,LY96
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                                                                                                                                                    CDK1
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                UST
## Dscam Interactions                                                                                                                                                                                                                                                                                                                                         MAPK8
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                                                                                                                                 HLA-B
## Enos Activation                                                                                                                                                                                                                                                                                                                                             CAV1
## Interleukin 27 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Interleukin 6 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Receptor Mediated Mitophagy                                                                                                                                                                                                                                                                                                                                 ATG5
## Regulation By C Flip                                                                                                                                                                                                                                                                                                                                       FASLG
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                                                                                                                                  CDC42
## Signaling By Leptin                                                                                                                                                                                                                                                                                                                                        STAT3
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                                                                                                                                                   NFKBIA
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                                                                                                                                                            TLR3
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                                                                                                     BIRC3,CD40,CD70,FASLG,TNF,TNFSF11,TNFSF13B
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                                                                                                                                                                      CCL2,CXCL8
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                                                                                                                                                                          CREB1
## G0 And Early G1                                                                                                                                                                                                                                                                                                                                         CDK1,MYC
## Interleukin 2 Signaling                                                                                                                                                                                                                                                                                                                                      IL2
## Interleukin 35 Signalling                                                                                                                                                                                                                                                                                                                                  STAT3
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                                                                                                                                      CSF2,IL2
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                        CREB1
## Signaling By Interleukins                                                                                                                                                            CCL11,CCL2,CCL22,CCR5,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL8,FASLG,HMGB1,IL13,IL15,IL17A,IL18,IL1B,IL2,IL4,IRAK1,IRF4,LBP,MAPK8,MIF,MYC,NFKBIA,NOD2,PTGS2,RIPK2,STAT3,TNF
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                                                                                                                                                                                  STAT3
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                                                                                                                                                      KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                                                                                                                                                    TLR3
## Costimulation By The Cd28 Family                                                                                                                                                                                                                                                                                                 CD274,CD86,CDC42,CTLA4,HLA-DQB1
## Pd 1 Signaling                                                                                                                                                                                                                                                                                                                                    CD274,HLA-DQB1
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                                                                                                                                                       HMGB1
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                                                                                                                                        HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                                                                                                                                                                               CDK1
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                                                                                                                              SERPINE1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                                                                                                                                                                             STAT3
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                                                                                                                                                                                                    DPP4
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                                                                                                                                         TNF
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                                                                                                                                                                      WNT5A
## Dap12 Interactions                                                                                                                                                                                                                                                                                                                             HLA-B,TREM1,TREM2
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                                                                                                                                    BIRC3,FASLG
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                                                                                                                                               BIRC3,TNF
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                                                                                                                                          CDC42
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                                                                                                                                               CCR5
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                                                                                                                                                         CDK1
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                                                                                                                                 IRAK1
## Repression Of Wnt Target Genes                                                                                                                                                                                                                                                                                                                               MYC
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                                                                                                                                                  CREB1,MAPK8
## Nicotinate Metabolism                                                                                                                                                                                                                                                                                                                                 CD38,PTGS2
## Peptide Ligand Binding Receptors                                                                                                                                                                                                                                                         C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                                                                                                                                                      CDK1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                                                                                                                                                                   CAV1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                                                                                                                                                                                   WNT5A
## Perk Regulates Gene Expression                                                                                                                                                                                                                                                                                                                        CCL2,CXCL8
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                                                                                                                                                              MYC,SERPINE1
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                                                                                                                                                         PTGS2
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                                                                                                                                                    WNT5A
## Cargo Concentration In The Er                                                                                                                                                                                                                                                                                                                          CD59,CTSC
## Cd28 Co Stimulation                                                                                                                                                                                                                                                                                                                                   CD86,CDC42
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                                                                                                                                                            FASLG
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                                                                                                                                                   MAPK8
## The Nlrp3 Inflammasome                                                                                                                                                                                                                                                                                                                                     NLRP3
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                                                                                                                                                                LY96
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                                                                                                                                                                                                        CDK1
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                                                                                                                                                        LY96
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                                                                                                                                                             CAV1
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                                                                                                                                          BIRC3,TNF
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                                                                                                                                                      APOA1
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                                                                                                                                                                               GALE
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                                                                                                                                                           CREB1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                                                                                                                                                            CREB1
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                                                                                                                                                STAT3
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                                                                                                                                                                                      CDK1
## Interleukin 1 Signaling                                                                                                                                                                                                                                                                                                       HMGB1,IL1B,IRAK1,NFKBIA,NOD2,RIPK2
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                                                                                                                                                                    PTGS2
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                                                                                                                                                               CDK1
## Nicotinamide Salvaging                                                                                                                                                                                                                                                                                                                                     PTGS2
## Other Semaphorin Interactions                                                                                                                                                                                                                                                                                                                              TREM2
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                                                                                                                                         KCNK1
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                                                                                                                                APOA1
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                                                                                                                                                                         MYC
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                                                                                                                                                                                     CDC42,MIF
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                                                                                                                                                      CDC42
## Phosphorylation Of The Apc C                                                                                                                                                                                                                                                                                                                                CDK1
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                                                                                                                                       CREB1
## Signaling By Kit In Disease                                                                                                                                                                                                                                                                                                                                STAT3
## Signaling By Pdgfr In Disease                                                                                                                                                                                                                                                                                                                              STAT3
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                                                                                                                                                                                       DPP4
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                                                                                                                                         IVD
## Interleukin 12 Family Signaling                                                                                                                                                                                                                                                                                                                  CDC42,MIF,STAT3
## Interleukin 37 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Rho Gtpases Activate Paks                                                                                                                                                                                                                                                                                                                                  CDC42
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                                                                                                                                           CD86
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                                                                                                                                                                                                FASLG
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                                                                                                                                                  CDK1
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                                                                                                                                               ATG5
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                                                                                                                                                               DPP4
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                                                                                                                                          CDK1
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                                                                                                                                                CDK1
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                                                                                                                                                                                     CREB1
## Growth Hormone Receptor Signaling                                                                                                                                                                                                                                                                                                                          STAT3
## Interleukin 6 Family Signaling                                                                                                                                                                                                                                                                                                                             STAT3
## Tnf Signaling                                                                                                                                                                                                                                                                                                                                          BIRC3,TNF
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                                                                                                                                                          MYC,SERPINE1
## Triglyceride Catabolism                                                                                                                                                                                                                                                                                                                                     CAV1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                                                                                                                                                                                   HLA-B
## Basigin Interactions                                                                                                                                                                                                                                                                                                                                        CAV1
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                                                                                                                                                                     CDK1
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                                                                                                                                       STAT3
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                                                                                                                                                              CREB1
## Interleukin 20 Family Signaling                                                                                                                                                                                                                                                                                                                            STAT3
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                                                                                                                                                      WNT5A
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                                                                                                                                                                   SERPINE1
## Foxo Mediated Transcription                                                                                                                                                                                                                                                                                                                     CAV1,FASLG,SIRT1
## Interleukin 12 Signaling                                                                                                                                                                                                                                                                                                                               CDC42,MIF
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                                                                                                                                                        CSF2,IL2
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                                                                                                                                                       CAV1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                                                                                                                                                                                           CREB1
## Circadian Clock                                                                                                                                                                                                                                                                                                                             CREB1,SERPINE1,SIRT1
## Dap12 Signaling                                                                                                                                                                                                                                                                                                                                            TREM2
## Death Receptor Signalling                                                                                                                                                                                                                                                                                               BIRC3,FASLG,IRAK1,MAPK8,NFKBIA,RIPK2,TNF
## Downstream Signal Transduction                                                                                                                                                                                                                                                                                                                             STAT3
## G1 S Specific Transcription                                                                                                                                                                                                                                                                                                                                 CDK1
## Mitophagy                                                                                                                                                                                                                                                                                                                                                   ATG5
## Myogenesis                                                                                                                                                                                                                                                                                                                                                 CDC42
## Netrin 1 Signaling                                                                                                                                                                                                                                                                                                                                   CDC42,MAPK8
## Scavenging Of Heme From Plasma                                                                                                                                                                                                                                                                                                                    APOA1,CD163,HP
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                                                                                                                                            MAPK8
## Signaling By Csf3 G Csf                                                                                                                                                                                                                                                                                                                                    STAT3
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                                                                                                                                                                                              CAV1
## Egfr Downregulation                                                                                                                                                                                                                                                                                                                                        CDC42
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                                                                                                                                           STAT3
## G Protein Beta Gamma Signalling                                                                                                                                                                                                                                                                                                                            CDC42
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                                                                                                                                              APOA1
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                                                                                                                                                CREB1
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                                                                                                                                CDC42
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                                                                                                                                                       STAT3
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                                                                                                                                                     MMP8
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                                                                                                                                      MAPK8,STAT3
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                                                                                                                               APOA1
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Rhov Gtpase Cycle                                                                                                                                                                                                                                                                                                                                          CDC42
## Signaling By Notch2                                                                                                                                                                                                                                                                                                                                        CREB1
## Complement Cascade                                                                                                                                                                                                                                                                                                                        C3,C5AR1,CD55,CD59,CRP
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                                                                                                                                           CDC42
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                                                                                                                                                ATG5
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                                                                                                                    IRAK1,MAPK8,NFKBIA,RIPK2
## Rhou Gtpase Cycle                                                                                                                                                                                                                                                                                                                                          CDC42
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                                                                                                                                        APOA1,CD163,HP,MARCO
## Ca Dependent Events                                                                                                                                                                                                                                                                                                                                        CREB1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                                                                                                                                                        ATG5,HMGB1,NFKBIA
## Interleukin 7 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Metalloprotease Dubs                                                                                                                                                                                                                                                                                                                                       NLRP3
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                                                                                                                                        CDK1
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                                                                                                                                                               CDK1
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                                                                                                                                       CDC42
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                                                                                                                                         MPO
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                                                                                                                                                                           STAT3
## Ca2 Pathway                                                                                                                                                                                                                                                                                                                                            MYC,WNT5A
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                                                                                                                                         NFKBIA,TLR3
## Generation Of Second Messenger Molecules                                                                                                                                                                                                                                                                                                                HLA-DQB1
## Ngf Stimulated Transcription                                                                                                                                                                                                                                                                                                                               CREB1
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                                                                                                                                              STAT3
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                                                                                                                                  CREB1,IRAK1
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                                                                                                                                                                                 MYC
## Triglyceride Metabolism                                                                                                                                                                                                                                                                                                                                     CAV1
## Beta Defensins                                                                                                                                                                                                                                                                                                                                            DEFB4A
## Dag And Ip3 Signaling                                                                                                                                                                                                                                                                                                                                      CREB1
## Dna Methylation                                                                                                                                                                                                                                                                                                                                     DNMT1,DNMT3A
## Ephb Mediated Forward Signaling                                                                                                                                                                                                                                                                                                                            CDC42
## Rhof Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Copii Mediated Vesicle Transport                                                                                                                                                                                                                                                                                                                       CD59,CTSC
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Signaling By Scf Kit                                                                                                                                                                                                                                                                                                                                       STAT3
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                                                                                                                                     CREB1,MYC,STAT3
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                                                                                                                                      CAV1,CREB1
## Interferon Alpha Beta Signaling                                                                                                                                                                                                                                                                                                                       HLA-B,IRF4
## Interferon Gamma Signaling                                                                                                                                                                                                                                                                                                                   HLA-B,HLA-DQB1,IRF4
## Irs Mediated Signalling                                                                                                                                                                                                                                                                                                                                     TLR9
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                                                                                                                             CDC42,CDK1,MYC
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                                                                                                                                         APOA1
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                          MYC
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                                                                                                                                    DNMT1,DNMT3A
## Rhog Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                                                                                                                                              MYC,SERPINE1
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                                                                                                                                                            CDK1
## Antigen Processing Cross Presentation                                                                                                                                                                                                                                                                                                           HLA-B,HMGB1,LY96
## Apoptotic Execution Phase                                                                                                                                                                                                                                                                                                                                  HMGB1
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                                                                                                                                                              UST
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                                                                                                                      CCL22,IL1B,NFKBIA
## Defensins                                                                                                                                                                                                                                                                                                                                                 DEFB4A
## Diseases Of Programmed Cell Death                                                                                                                                                                                                                                                                                                             DNMT1,DNMT3A,FASLG
## G Protein Mediated Events                                                                                                                                                                                                                                                                                                                                  CREB1
## Initial Triggering Of Complement                                                                                                                                                                                                                                                                                                                          C3,CRP
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                                                                                                                                         TLR9
## Nuclear Envelope Breakdown                                                                                                                                                                                                                                                                                                                                  CDK1
## Rhod Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Signaling By Egfr                                                                                                                                                                                                                                                                                                                                          CDC42
## Signaling By Ptk6                                                                                                                                                                                                                                                                                                                                          STAT3
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                                                                                                                                                                             TLR9
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                                                                                                                                                                     CREB1
## Antimicrobial Peptides                                                                                                                                                                                                                                                                                                                                BPI,DEFB4A
## Arachidonic Acid Metabolism                                                                                                                                                                                                                                                                                                                                PTGS2
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                                                                                                                                                    WNT5A
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                                                                                                                                   CD55,WNT5A
## Collagen Degradation                                                                                                                                                                                                                                                                                                                                        MMP8
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                                                                                                                                                             CCL22
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                                                                                                                                                   C3,CD34,CD40,FCGR2B,HLA-B,TREM1,TREM2
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                                                                                                                                                      CREB1
## Nrage Signals Death Through Jnk                                                                                                                                                                                                                                                                                                                            MAPK8
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                                                                                                                                                                  CREB1
## Programmed Cell Death                                                                                                                                                                                                                                                                                               BIRC3,FASLG,HMGB1,IL18,IL1B,LY96,MAPK8,STAT3
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Rhob Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Semaphorin Interactions                                                                                                                                                                                                                                                                                                                                    TREM2
## Signaling By Fgfr In Disease                                                                                                                                                                                                                                                                                                                               STAT3
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                                                                                                                                                            MYC
## Signaling By Pdgf                                                                                                                                                                                                                                                                                                                                          STAT3
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                                                                                                                                                 SIRT1
## Unfolded Protein Response Upr                                                                                                                                                                                                                                                                                                                         CCL2,CXCL8
## 2 Ltr Circle Formation                                                                                                                                                                                                                                                                                                                                          
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                                                                                                                                                                                 
## Abacavir Metabolism                                                                                                                                                                                                                                                                                                                                             
## Abacavir Transmembrane Transport                                                                                                                                                                                                                                                                                                                                
## Abacavir Transport And Metabolism                                                                                                                                                                                                                                                                                                                               
## Abc Family Proteins Mediated Transport                                                                                                                                                                                                                                                                                                                     APOA1
## Abc Transporter Disorders                                                                                                                                                                                                                                                                                                                                  APOA1
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                                                                                                                                                                                
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                                                                                                                                                                                     
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                                                                                                                                                                                   
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                                                                                                                                                     
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                                                                                                                                                                          
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                    
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                                                                                                                                                       
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                                                                                                                                                             
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                                                                                                                                                                
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                                                                                                                                                                   
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                                                                                                                                             
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                                                                                                                                             
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                                                                                                                                             
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                                                                                                                                                                                                                   
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                                                                                                                                                         
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                                                                                                                                                                                            
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                                                                                                                                                             
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                             
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                                                                                                                                                                     
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                                                                                                                                                    
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                                                                                                                                                                          
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                                                                                                                                                       CREB1
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                            
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                                                                                                                                                            
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                            
## Activation Of Rac1                                                                                                                                                                                                                                                                                                                                              
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                                                                                                                                                         
## Activation Of Ras In B Cells                                                                                                                                                                                                                                                                                                                                    
## Activation Of Smo                                                                                                                                                                                                                                                                                                                                               
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                                                                                                                                                                                                                           
## Activation Of The Phototransduction Cascade                                                                                                                                                                                                                                                                                                                     
## Activation Of The Pre Replicative Complex                                                                                                                                                                                                                                                                                                                       
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                                                                                                                                                                    
## Activation Of Trka Receptors                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                                                                                                                                     
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                                                                                                                                            
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                                                                                                                                    
## Adaptive Immune System                                                                                                                                                                                                                                        C3,CD274,CD34,CD40,CD86,CDC42,CTLA4,CTSC,FCGR2B,HLA-B,HLA-DQB1,HMGB1,LY96,NFKBIA,RIPK2,TREM1,TREM2
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                                                                                                                                            
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                                                                                                                                            
## Adherens Junctions Interactions                                                                                                                                                                                                                                                                                                                                 
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                                                                                                                                                                    CREB1
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                                                                                                                                                       
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                                                                                                                                                      
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                                                                                                                                                             
## Adrenoceptors                                                                                                                                                                                                                                                                                                                                                   
## Aflatoxin Activation And Detoxification                                                                                                                                                                                                                                                                                                                         
## Aggrephagy                                                                                                                                                                                                                                                                                                                                                      
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                                                                                                                                                       
## Alpha Defensins                                                                                                                                                                                                                                                                                                                                                 
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                                                                                                                                                                      
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                                                                                                                                    
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                                                                                                                                                        
## Amine Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                                  
## Amino Acid Conjugation                                                                                                                                                                                                                                                                                                                                          
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                                                                                                                                                                 
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                                                                                                                                     
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                                                                                                                                                                        
## Amyloid Fiber Formation                                                                                                                                                                                                                                                                                                                               APOA1,CST3
## Anchoring Fibril Formation                                                                                                                                                                                                                                                                                                                                      
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                                                                                                                                                          CDK1
## Androgen Biosynthesis                                                                                                                                                                                                                                                                                                                                           
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                                                                                                                                                                   CD163,CREB1
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                                                                                                                                                                                                
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                                                                                                                                                                        
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                                                                                                                                                     
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                                                                                                                                                                                                                        
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                                                                                                                                                           CDK1
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                                                                                                                                                         
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                                                                                                                                                                                                          
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                                                                                                                                                                 
## Apoptosis                                                                                                                                                                                                                                                                                                                           FASLG,HMGB1,LY96,MAPK8,STAT3
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                                                                                                                                                    
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                                                                                                                                                         
## Apoptotic Factor Mediated Response                                                                                                                                                                                                                                                                                                                              
## Aquaporin Mediated Transport                                                                                                                                                                                                                                                                                                                                    
## Arachidonate Production From Dag                                                                                                                                                                                                                                                                                                                                
## Arms Mediated Activation                                                                                                                                                                                                                                                                                                                                        
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                                                                                                                                            
## Asparagine N Linked Glycosylation                                                                                                                                                                                                                                                                                                                 CD55,CD59,CTSC
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                                                                                                                                             
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                                                                                                                                                                        
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                                                                                                                                                                
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                                                                                                                                                                    
## Assembly Of The Hiv Virion                                                                                                                                                                                                                                                                                                                                      
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                                                                                                                                                                        
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                                                                                                                                                         
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                                                                                                                                                       
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                                                                                                                                            
## Attachment And Entry                                                                                                                                                                                                                                                                                                                                            
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                                                                                                                                                
## Attenuation Phase                                                                                                                                                                                                                                                                                                                                               
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                                       
## Aurka Activation By Tpx2                                                                                                                                                                                                                                                                                                                                    CDK1
## Autophagy                                                                                                                                                                                                                                                                                                                                                   ATG5
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                                                                                                                                                             
## Base Excision Repair                                                                                                                                                                                                                                                                                                                                            
## Base Excision Repair Ap Site Formation                                                                                                                                                                                                                                                                                                                          
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                                                                                                                                                       
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                                                                                                                                                 MYC,WNT5A
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                                                                                                                                            
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                                                                                                                                                    
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                                                                                                                                                              
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                                                                                                                                                                  
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                                                                                                                                                               
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                                                                                                                                                                  
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                                                                                                                                                
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                                                                                                                                                                   
## Bicarbonate Transporters                                                                                                                                                                                                                                                                                                                                        
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                                                                                                                                              
## Biological Oxidations                                                                                                                                                                                                                                                                                                                                           
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                                                                                                                                               
## Biosynthesis Of Maresins                                                                                                                                                                                                                                                                                                                                        
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                                                                                                                                                                                                                              
## Biotin Transport And Metabolism                                                                                                                                                                                                                                                                                                                                 
## Blood Group Systems Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                                                                                                                                            
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                     
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                                                                                                                                            
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                                                                                                                   CCL22,IL1B,NFKBIA
## Ca2 Activated K Channels                                                                                                                                                                                                                                                                                                                                        
## Calcineurin Activates Nfat                                                                                                                                                                                                                                                                                                                                      
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                                                                                                                                                
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                                                                                                                                     
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                                                                                                                                                                     
## Cardiac Conduction                                                                                                                                                                                                                                                                                                                                         KCNK1
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                                                                                                                                                        WNT5A
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                                                                                                                                                                   
## Carnitine Metabolism                                                                                                                                                                                                                                                                                                                                            
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                                                                                                                                                                            
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                                                                                                                                                              
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                                                                                                                                                          
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                                                                                                                                         
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                                                                                                                                    
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                    CAV1,CDC42
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                                                                                                                                                    
## Cell Cell Communication                                                                                                                                                                                                                                                                                                                                         
## Cell Cell Junction Organization                                                                                                                                                                                                                                                                                                                                 
## Cell Cycle                                                                                                                                                                                                                                                                                                                                              CDK1,MYC
## Cell Cycle Checkpoints                                                                                                                                                                                                                                                                                                                                      CDK1
## Cell Cycle Mitotic                                                                                                                                                                                                                                                                                                                                      CDK1,MYC
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                                                                                                                                                              MAPK8
## Cell Extracellular Matrix Interactions                                                                                                                                                                                                                                                                                                                          
## Cell Junction Organization                                                                                                                                                                                                                                                                                                                                      
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                                                                                                                                        CAV1,CD2,CEACAM1,MIF,TREM1
## Cellular Hexose Transport                                                                                                                                                                                                                                                                                                                                       
## Cellular Response To Chemical Stress                                                                                                                                                                                                                                                                                                                 NLRP3,STAT3
## Cellular Response To Heat Stress                                                                                                                                                                                                                                                                                                                           SIRT1
## Cellular Response To Hypoxia                                                                                                                                                                                                                                                                                                                                    
## Cellular Response To Starvation                                                                                                                                                                                                                                                                                                                                 
## Cellular Responses To External Stimuli                                                                                                                                                                                                                                                                            APOA1,CREB1,CXCL8,LY96,MAPK8,NLRP3,SIRT1,STAT3
## Cellular Senescence                                                                                                                                                                                                                                                                                                                            CXCL8,MAPK8,STAT3
## Cgmp Effects                                                                                                                                                                                                                                                                                                                                                    
## Chaperone Mediated Autophagy                                                                                                                                                                                                                                                                                                                                    
## Chl1 Interactions                                                                                                                                                                                                                                                                                                                                               
## Cholesterol Biosynthesis                                                                                                                                                                                                                                                                                                                                        
## Choline Catabolism                                                                                                                                                                                                                                                                                                                                              
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                                                                                                                                                      
## Chromatin Modifying Enzymes                                                                                                                                                                                                                                                                                                                               DNMT3A
## Chromosome Maintenance                                                                                                                                                                                                                                                                                                                                          
## Chylomicron Clearance                                                                                                                                                                                                                                                                                                                                           
## Cilium Assembly                                                                                                                                                                                                                                                                                                                                             CDK1
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                                                                                                                                     
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                                                                       C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                                                                                                                                                            
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                                                                                                                                            HLA-B,HMGB1,LY96
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                                                                                                                                                     
## Clathrin Mediated Endocytosis                                                                                                                                                                                                                                                                                                                              WNT5A
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                                                                                                                                                         
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                                                                                                                                                              
## Coenzyme A Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                                                                                                                                                  
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                                                                                                                                                     
## Collagen Chain Trimerization                                                                                                                                                                                                                                                                                                                                    
## Collagen Formation                                                                                                                                                                                                                                                                                                                                              
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                         
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                                                                                                                                                                      
## Complex I Biogenesis                                                                                                                                                                                                                                                                                                                                            
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                                                                                                                                        CDK1
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                                                                                                                                            
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                                                                                                                                                           CD86
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                                                                                                                                              
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                                                                                                                                                                                
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                                                                                                                                                                   
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                                                                                                                                                                      
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                                                                                                                                                                                
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                                                                                                                                                                              
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                                                                                                                                                                   
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                                                                                                                                                                 
## Copi Mediated Anterograde Transport                                                                                                                                                                                                                                                                                                                    CD55,CD59
## Creatine Metabolism                                                                                                                                                                                                                                                                                                                                             
## Creation Of C4 And C2 Activators                                                                                                                                                                                                                                                                                                                             CRP
## Creb3 Factors Activate Genes                                                                                                                                                                                                                                                                                                                                    
## Cristae Formation                                                                                                                                                                                                                                                                                                                                               
## Crmps In Sema3a Signaling                                                                                                                                                                                                                                                                                                                                       
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                                                                                                                                                                                 
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                                                                                                                                                                      
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                                                                                                                                                
## Cs Ds Degradation                                                                                                                                                                                                                                                                                                                                               
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                                                                                                                                                             MYC
## Cyclin D Associated Events In G1                                                                                                                                                                                                                                                                                                                                
## Cyp2e1 Reactions                                                                                                                                                                                                                                                                                                                                                
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                                                                                                                                                        
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                                                                                                                                                      
## Cytokine Signaling In Immune System                                                                                                  BIRC3,CCL11,CCL2,CCL22,CCR5,CD40,CD70,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL8,FASLG,HLA-B,HLA-DQB1,HMGB1,IL13,IL15,IL17A,IL18,IL1B,IL2,IL4,IRAK1,IRF4,LBP,MAPK8,MIF,MYC,NFKBIA,NOD2,PTGS2,RIPK2,STAT3,TNF,TNFSF11,TNFSF13B
## Cytoprotection By Hmox1                                                                                                                                                                                                                                                                                                                              NLRP3,STAT3
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                                                                                                                                                          
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                                                                                                                                                        
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                                                                                                                                                   
## Darpp 32 Events                                                                                                                                                                                                                                                                                                                                                 
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                                                                                                                                                                        
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                                                                                                                                              
## Deadenylation Of Mrna                                                                                                                                                                                                                                                                                                                                           
## Dectin 2 Family                                                                                                                                                                                                                                                                                                                                                 
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                                                                                                                                                     
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                                                                                                                                                     
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                                                                                                                                                                                   
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                                                                                                                                                           
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                                                                                                                                                            
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                                                                                                                                                   
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                                                                                                                                    
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                                                                                                                                     
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                                                                                                                                                   
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                                                                                                                                               
## Defective F9 Activation                                                                                                                                                                                                                                                                                                                                         
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                                                                                                                                                         
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                                                                                                                                                       
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                                                                                                                                                                                      
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                                                                                                                                     
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                                                                                                                                     
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                                                                                                                                                       
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                                                                                                                                                
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                                                                                                                                             
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                                                                                                                                                      
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                                                                                                                                                                                        
## Degradation Of Axin                                                                                                                                                                                                                                                                                                                                             
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                                                                                                                                                                       MYC
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                                                                                                                                                        
## Degradation Of Dvl                                                                                                                                                                                                                                                                                                                                              
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                                                                                                                                                           
## Degradation Of The Extracellular Matrix                                                                                                                                                                                                                                                                                                                     MMP8
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                                                                                                                                                                                
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                                                                                                                                                       
## Deubiquitination                                                                                                                                                                                                                                                                                                          BIRC3,CDK1,MYC,NFKBIA,NLRP3,NOD2,RIPK2
## Developmental Biology                                                                                                                                                                                                                                                                                                      CDC42,CREB1,MAPK8,MYC,STAT3,TNF,TREM2
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                                                                                                                                                                                                   
## Digestion                                                                                                                                                                                                                                                                                                                                                       
## Digestion And Absorption                                                                                                                                                                                                                                                                                                                                        
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                                                                                                                                               
## Digestion Of Dietary Lipid                                                                                                                                                                                                                                                                                                                                      
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                                                                                                                                                                           
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                                                                                                                                                            
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                                                                                                                                                            
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                                                                                                                                                                  
## Diseases Of Base Excision Repair                                                                                                                                                                                                                                                                                                                                
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                                                                                                                                             
## Diseases Of Dna Repair                                                                                                                                                                                                                                                                                                                                          
## Diseases Of Glycosylation                                                                                                                                                                                                                                                                                                                                   GALE
## Diseases Of Metabolism                                                                                                                                                                                                                                                                                                                                      GALE
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                                                                                                                                                 
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                                                                                                                                                  
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                                                                                                                                                                            CD86,CREB1,MYC,STAT3
## Disinhibition Of Snare Formation                                                                                                                                                                                                                                                                                                                                
## Disorders Of Transmembrane Transporters                                                                                                                                                                                                                                                                                                                    APOA1
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                                                                                                                                                        
## Dna Damage Bypass                                                                                                                                                                                                                                                                                                                                               
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                                                                                                                                                
## Dna Damage Reversal                                                                                                                                                                                                                                                                                                                                             
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                                                                                                                                                                   
## Dna Double Strand Break Repair                                                                                                                                                                                                                                                                                                                             MAPK8
## Dna Double Strand Break Response                                                                                                                                                                                                                                                                                                                           MAPK8
## Dna Repair                                                                                                                                                                                                                                                                                                                                                 MAPK8
## Dna Replication                                                                                                                                                                                                                                                                                                                                                 
## Dna Replication Initiation                                                                                                                                                                                                                                                                                                                                      
## Dna Replication Pre Initiation                                                                                                                                                                                                                                                                                                                                  
## Dna Strand Elongation                                                                                                                                                                                                                                                                                                                                           
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                         
## Dopamine Receptors                                                                                                                                                                                                                                                                                                                                              
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                                                                                                                                                         
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                                                                                                                                               
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                                                                                                                                               
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                                                                                                                                                                        
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                                                                                                                                                                   
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                                                                                                                                                        NFKBIA
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                                                                                                                                                         
## Dual Incision In Gg Ner                                                                                                                                                                                                                                                                                                                                         
## Dual Incision In Tc Ner                                                                                                                                                                                                                                                                                                                                         
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                                                                                                                                                               
## Ecm Proteoglycans                                                                                                                                                                                                                                                                                                                                       SERPINE1
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                                                                                                                                      
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                                                                                                                                                       
## Egfr Transactivation By Gastrin                                                                                                                                                                                                                                                                                                                                 
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                                                                                                                                                                                  
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                             
## Eicosanoids                                                                                                                                                                                                                                                                                                                                                     
## Elastic Fibre Formation                                                                                                                                                                                                                                                                                                                                         
## Electric Transmission Across Gap Junctions                                                                                                                                                                                                                                                                                                                      
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                                                                                                                                               
## Endogenous Sterols                                                                                                                                                                                                                                                                                                                                              
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                                                                                                                                                                          
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                                                                                                                                                                
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                                                                                                                                                          
## Eph Ephrin Signaling                                                                                                                                                                                                                                                                                                                                       CDC42
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                                                                                                                                              
## Ephrin Signaling                                                                                                                                                                                                                                                                                                                                                
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                                                                                                                                      DNMT1,DNMT3A,SIRT1
## Er Quality Control Compartment Erqc                                                                                                                                                                                                                                                                                                                             
## Er To Golgi Anterograde Transport                                                                                                                                                                                                                                                                                                                 CD55,CD59,CTSC
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                                                                                                                                                  
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                                                                                                                                                   
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                                                                                                                                                                     
## Erk Mapk Targets                                                                                                                                                                                                                                                                                                                                                
## Erks Are Inactivated                                                                                                                                                                                                                                                                                                                                            
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                                                                                                                                                                          
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                                                                                                                                                                          
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                                                                                                                                                                         
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                                                                                                                                                             
## Erythropoietin Activates Ras                                                                                                                                                                                                                                                                                                                                    
## Erythropoietin Activates Stat5                                                                                                                                                                                                                                                                                                                                  
## Esr Mediated Signaling                                                                                                                                                                                                                                                                                                                            CAV1,CREB1,MYC
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                                                                                                                                                      
## Estrogen Biosynthesis                                                                                                                                                                                                                                                                                                                                           
## Estrogen Dependent Gene Expression                                                                                                                                                                                                                                                                                                                           MYC
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                                                                                                                                                     
## Ethanol Oxidation                                                                                                                                                                                                                                                                                                                                               
## Eukaryotic Translation Elongation                                                                                                                                                                                                                                                                                                                               
## Eukaryotic Translation Initiation                                                                                                                                                                                                                                                                                                                               
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                                                                                                                                                                 
## Extension Of Telomeres                                                                                                                                                                                                                                                                                                                                          
## Extracellular Matrix Organization                                                                                                                                                                                                                                                                                                          CEACAM1,MMP8,SERPINE1
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                      
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                                                                                                                                                                                      CDC42
## Fanconi Anemia Pathway                                                                                                                                                                                                                                                                                                                                          
## Fatty Acid Metabolism                                                                                                                                                                                                                                                                                                                                      PTGS2
## Fatty Acids                                                                                                                                                                                                                                                                                                                                                     
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                                                                                                                                                                     
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                                                                                                                                     
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                                                                                                                                              
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                                                                                                                                 MAPK8,NFKBIA
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                                                                                                                                                
## Fceri Mediated Mapk Activation                                                                                                                                                                                                                                                                                                                             MAPK8
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                                                                                                                                           NFKBIA
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                                                                                                                                               CDC42
## Fcgr Activation                                                                                                                                                                                                                                                                                                                                                 
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                                                                                                                                             CREB1
## Fertilization                                                                                                                                                                                                                                                                                                                                                   
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                                                                                                                                      
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                                                                                                                                                
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                            
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                                                                                                                                                                                                  
## Flt3 Signaling                                                                                                                                                                                                                                                                                                                                                  
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                                                                                                                                                   
## Flt3 Signaling In Disease                                                                                                                                                                                                                                                                                                                                       
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                                                                                                                                                       
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                                                                                                                                    
## Formation Of Apoptosome                                                                                                                                                                                                                                                                                                                                         
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                                                                                                                                                       
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                                                                                                                                                       
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                                                                                                                                                         
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                                                                                                                                                      
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                                                                                                                                                                    
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                                                                                                                                                        
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                                                                                                                                                                    MYC
## Formation Of The Cornified Envelope                                                                                                                                                                                                                                                                                                                             
## Formation Of The Early Elongation Complex                                                                                                                                                                                                                                                                                                                       
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                                                                                                                                                                          
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                                                                                                                                               
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                                                                                                                                                                            
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                                                                                                                                                                                    
## Free Fatty Acid Receptors                                                                                                                                                                                                                                                                                                                                       
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                                                                                                                                                     
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                                                                                                                                    
## Fructose Catabolism                                                                                                                                                                                                                                                                                                                                             
## Fructose Metabolism                                                                                                                                                                                                                                                                                                                                             
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                                                                                                                                                 
## G Alpha I Signalling Events                                                                                                                                                                                                                                                                             C3,C5AR1,CCR5,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8
## G Alpha Q Signalling Events                                                                                                                                                                                                                                                                                                                            CREB1,MLN
## G Alpha S Signalling Events                                                                                                                                                                                                                                                                                                                                     
## G Alpha Z Signalling Events                                                                                                                                                                                                                                                                                                                                     
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                                                                                                                                                       
## G Protein Activation                                                                                                                                                                                                                                                                                                                                            
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                                                                                                                                     
## G2 M Checkpoints                                                                                                                                                                                                                                                                                                                                            CDK1
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                                                                                                                                  CDK1
## G2 Phase                                                                                                                                                                                                                                                                                                                                                        
## Gab1 Signalosome                                                                                                                                                                                                                                                                                                                                                
## Gaba B Receptor Activation                                                                                                                                                                                                                                                                                                                                      
## Gaba Receptor Activation                                                                                                                                                                                                                                                                                                                                        
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                                                                                                                                                                 
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                                                                                                                                                                             
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                                                                                                                                                                                           
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                                                                                                                                                                         
## Gap Junction Assembly                                                                                                                                                                                                                                                                                                                                           
## Gap Junction Degradation                                                                                                                                                                                                                                                                                                                                        
## Gap Junction Trafficking And Regulation                                                                                                                                                                                                                                                                                                                         
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Gene Silencing By Rna                                                                                                                                                                                                                                                                                                                                           
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                                                                                                                                                                                     
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                                                                                                                                                                 
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                                                                                                                                                                        
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                                                                                                                                                      
## Glucagon Type Ligand Receptors                                                                                                                                                                                                                                                                                                                                  
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                                                                                                                                     
## Gluconeogenesis                                                                                                                                                                                                                                                                                                                                                 
## Glucose Metabolism                                                                                                                                                                                                                                                                                                                                              
## Glucuronidation                                                                                                                                                                                                                                                                                                                                                 
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                                                                                                                                              
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                        
## Glutathione Conjugation                                                                                                                                                                                                                                                                                                                                         
## Glutathione Synthesis And Recycling                                                                                                                                                                                                                                                                                                                             
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Glycerophospholipid Catabolism                                                                                                                                                                                                                                                                                                                                  
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                                                                                                                                               
## Glycogen Metabolism                                                                                                                                                                                                                                                                                                                                             
## Glycogen Storage Diseases                                                                                                                                                                                                                                                                                                                                       
## Glycogen Synthesis                                                                                                                                                                                                                                                                                                                                              
## Glycolysis                                                                                                                                                                                                                                                                                                                                                      
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                                                                                                                                 UST
## Glycosphingolipid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                                                                                                                                                                   
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                                                                                                                                             
## Golgi To Er Retrograde Transport                                                                                                                                                                                                                                                                                                                                
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                                                                                                                                                 
## Gpcr Ligand Binding                                                                                                                                                                                                                                                           C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CD55,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN,WNT5A
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                                                                                                                                                                       
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Hats Acetylate Histones                                                                                                                                                                                                                                                                                                                                         
## Hcmv Early Events                                                                                                                                                                                                                                                                                                                                          CREB1
## Hcmv Infection                                                                                                                                                                                                                                                                                                                                             CREB1
## Hcmv Late Events                                                                                                                                                                                                                                                                                                                                                
## Hdacs Deacetylate Histones                                                                                                                                                                                                                                                                                                                                      
## Hdms Demethylate Histones                                                                                                                                                                                                                                                                                                                                       
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                                                                                                                                                        
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                                                                                                                                       
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                                                                                                                                                         
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                                                                                                                                      
## Hedgehog Off State                                                                                                                                                                                                                                                                                                                                              
## Hedgehog On State                                                                                                                                                                                                                                                                                                                                               
## Heme Biosynthesis                                                                                                                                                                                                                                                                                                                                               
## Heme Degradation                                                                                                                                                                                                                                                                                                                                                
## Hemostasis                                                                                                                                                                                                                                                                                                  APOA1,CAV1,CD2,CD63,CDC42,CEACAM1,MIF,SERPINE1,TREM1
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                                                                                                                                                       
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                                      
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                         
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                                                                                                                                                                                          
## Histidine Catabolism                                                                                                                                                                                                                                                                                                                                            
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                                                                                                                                              
## Hiv Infection                                                                                                                                                                                                                                                                                                                                               CCR5
## Hiv Life Cycle                                                                                                                                                                                                                                                                                                                                              CCR5
## Hiv Transcription Elongation                                                                                                                                                                                                                                                                                                                                    
## Hiv Transcription Initiation                                                                                                                                                                                                                                                                                                                                    
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                                                                                                                                                      
## Homology Directed Repair                                                                                                                                                                                                                                                                                                                                        
## Hormone Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                                
## Host Interactions Of Hiv Factors                                                                                                                                                                                                                                                                                                                                
## Hs Gag Biosynthesis                                                                                                                                                                                                                                                                                                                                             
## Hs Gag Degradation                                                                                                                                                                                                                                                                                                                                              
## Hsf1 Activation                                                                                                                                                                                                                                                                                                                                                 
## Hsf1 Dependent Transactivation                                                                                                                                                                                                                                                                                                                                  
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                                                                                                                                                                         
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                                                                                                                                            
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                                                                                                                                              
## Hyaluronan Metabolism                                                                                                                                                                                                                                                                                                                                           
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                                                                                                                                               
## Hydrolysis Of Lpc                                                                                                                                                                                                                                                                                                                                               
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                                                                                                                                                                 
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                                                                                                                                                       
## Infectious Disease                                                                                                                                                                                                                                                                                    C3,CCR5,CD163,CDC42,CREB1,IL18,IL1B,MAPK8,NLRP3,TLR9,WNT5A
## Influenza Infection                                                                                                                                                                                                                                                                                                                                             
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                                                                                                                                                     
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                                                                                                                                                                                 
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                                                                                                                                                                                                                                     
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                                                                                                                                                                                   
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                                                                                                                                                                    
## Innate Immune System                                                                                                                                   AIM2,ATG5,BIRC3,BPI,C3,C5AR1,CCL22,CD55,CD59,CD63,CDC42,CEACAM1,CREB1,CRP,CST3,CTSC,CXCL1,DEFB4A,HLA-B,HMGB1,HP,IL1B,IRAK1,LBP,LY96,MAPK8,MIF,MMP8,MPO,NFKBIA,NLRP3,NOD2,RIPK2,SLPI,TLR3,TLR9,TREM1,TREM2
## Inositol Phosphate Metabolism                                                                                                                                                                                                                                                                                                                                   
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                                                                                                                                                                                     
## Insulin Processing                                                                                                                                                                                                                                                                                                                                              
## Insulin Receptor Recycling                                                                                                                                                                                                                                                                                                                                      
## Integration Of Energy Metabolism                                                                                                                                                                                                                                                                                                                                
## Integration Of Provirus                                                                                                                                                                                                                                                                                                                                         
## Integrin Cell Surface Interactions                                                                                                                                                                                                                                                                                                                              
## Integrin Signaling                                                                                                                                                                                                                                                                                                                                              
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                                                                                                                                             
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                                                                                                                                                                           
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                                                                                                                                                                 
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                                                                                                                                                                 
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                                                                                                                                                              
## Interferon Signaling                                                                                                                                                                                                                                                                                                                         HLA-B,HLA-DQB1,IRF4
## Interleukin 36 Pathway                                                                                                                                                                                                                                                                                                                                          
## Intestinal Absorption                                                                                                                                                                                                                                                                                                                                           
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                                                                                                                                                                  
## Intra Golgi Traffic                                                                                                                                                                                                                                                                                                                                             
## Intracellular Signaling By Second Messengers                                                                                                                                                                                                                                                                                                    CD86,CREB1,IRAK1
## Intraflagellar Transport                                                                                                                                                                                                                                                                                                                                        
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                      
## Inwardly Rectifying K Channels                                                                                                                                                                                                                                                                                                                                  
## Ion Channel Transport                                                                                                                                                                                                                                                                                                                                           
## Ion Homeostasis                                                                                                                                                                                                                                                                                                                                                 
## Ion Transport By P Type Atpases                                                                                                                                                                                                                                                                                                                                 
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                                                                                                                                                        
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                                                                                                                                                       
## Ire1alpha Activates Chaperones                                                                                                                                                                                                                                                                                                                                  
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                                                                                                                                                          
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                                                                                                                                                           
## Iron Uptake And Transport                                                                                                                                                                                                                                                                                                                                       
## Irs Activation                                                                                                                                                                                                                                                                                                                                                  
## Josephin Domain Dubs                                                                                                                                                                                                                                                                                                                                            
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                    
## Keratan Sulfate Degradation                                                                                                                                                                                                                                                                                                                                     
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                                                                                                                                              
## Keratinization                                                                                                                                                                                                                                                                                                                                                  
## Ketone Body Metabolism                                                                                                                                                                                                                                                                                                                                          
## Kinesins                                                                                                                                                                                                                                                                                                                                                        
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                                          
## L1cam Interactions                                                                                                                                                                                                                                                                                                                                              
## Lagging Strand Synthesis                                                                                                                                                                                                                                                                                                                                        
## Laminin Interactions                                                                                                                                                                                                                                                                                                                                            
## Late Endosomal Microautophagy                                                                                                                                                                                                                                                                                                                                   
## Ldl Clearance                                                                                                                                                                                                                                                                                                                                                   
## Lectin Pathway Of Complement Activation                                                                                                                                                                                                                                                                                                                         
## Leishmania Infection                                                                                                                                                                                                                                                                                            C3,CD163,CDC42,CREB1,IL18,IL1B,MAPK8,NLRP3,WNT5A
## Leukotriene Receptors                                                                                                                                                                                                                                                                                                                                           
## Lgi Adam Interactions                                                                                                                                                                                                                                                                                                                                           
## Ligand Receptor Interactions                                                                                                                                                                                                                                                                                                                                    
## Linoleic Acid La Metabolism                                                                                                                                                                                                                                                                                                                                     
## Lipid Particle Organization                                                                                                                                                                                                                                                                                                                                     
## Lipophagy                                                                                                                                                                                                                                                                                                                                                       
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                                                                                                                                                    
## Long Term Potentiation                                                                                                                                                                                                                                                                                                                                          
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                                                                                                                                                      
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                                                                                                                                                           
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                                                                                                                                                                          
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                                                                                                                                                                                          
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                                                                                                                                             
## Lysine Catabolism                                                                                                                                                                                                                                                                                                                                               
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                                                                                                                                     
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                                                                                                                                              
## M Phase                                                                                                                                                                                                                                                                                                                                                     CDK1
## Map2k And Mapk Activation                                                                                                                                                                                                                                                                                                                                       
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                                                                                                                                                        
## Mapk Family Signaling Cascades                                                                                                                                                                                                                                                                                                           CDC42,CDK1,CSF2,IL2,MYC
## Mapk1 Erk2 Activation                                                                                                                                                                                                                                                                                                                                           
## Maturation Of Nucleoprotein                                                                                                                                                                                                                                                                                                                                     
## Maturation Of Protein 3a                                                                                                                                                                                                                                                                                                                                        
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                                                                                                                                                          
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                                                                                                                                                          
## Meiosis                                                                                                                                                                                                                                                                                                                                                         
## Meiotic Recombination                                                                                                                                                                                                                                                                                                                                           
## Meiotic Synapsis                                                                                                                                                                                                                                                                                                                                                
## Melanin Biosynthesis                                                                                                                                                                                                                                                                                                                                            
## Membrane Trafficking                                                                                                                                                                                                                                                                                                                        CD55,CD59,CTSC,WNT5A
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                                                                                                                                                
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                                                                                                                                    
## Met Activates Ptpn11                                                                                                                                                                                                                                                                                                                                            
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                                                                                                                                     
## Met Activates Ras Signaling                                                                                                                                                                                                                                                                                                                                     
## Met Interacts With Tns Proteins                                                                                                                                                                                                                                                                                                                                 
## Met Promotes Cell Motility                                                                                                                                                                                                                                                                                                                                      
## Met Receptor Activation                                                                                                                                                                                                                                                                                                                                         
## Met Receptor Recycling                                                                                                                                                                                                                                                                                                                                          
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                                                                                                                                                             
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                                                                                                                                            
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                                                                                                                                                    IVD
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                                                                                                                                                                   
## Metabolism Of Carbohydrates                                                                                                                                                                                                                                                                                                                             GALE,UST
## Metabolism Of Cofactors                                                                                                                                                                                                                                                                                                                                         
## Metabolism Of Folate And Pterines                                                                                                                                                                                                                                                                                                                               
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                                                                                                                                                                
## Metabolism Of Lipids                                                                                                                                                                                                                                                                                                                            APOA1,CAV1,PTGS2
## Metabolism Of Nucleotides                                                                                                                                                                                                                                                                                                                                       
## Metabolism Of Polyamines                                                                                                                                                                                                                                                                                                                                        
## Metabolism Of Porphyrins                                                                                                                                                                                                                                                                                                                                        
## Metabolism Of Rna                                                                                                                                                                                                                                                                                                                                               
## Metabolism Of Steroid Hormones                                                                                                                                                                                                                                                                                                                                  
## Metabolism Of Steroids                                                                                                                                                                                                                                                                                                                                          
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                                                                                                                            APOA1,CD38,PTGS2
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                                                                                                                                                    CD38,PTGS2
## Metal Ion Slc Transporters                                                                                                                                                                                                                                                                                                                                      
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                                                                                                                                                                   
## Metallothioneins Bind Metals                                                                                                                                                                                                                                                                                                                                    
## Methionine Salvage Pathway                                                                                                                                                                                                                                                                                                                                      
## Methylation                                                                                                                                                                                                                                                                                                                                                     
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                                                                                                                                  CTSC,HLA-DQB1
## Microrna Mirna Biogenesis                                                                                                                                                                                                                                                                                                                                       
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                                                                                                                                                  
## Miro Gtpase Cycle                                                                                                                                                                                                                                                                                                                                               
## Miscellaneous Substrates                                                                                                                                                                                                                                                                                                                                        
## Miscellaneous Transport And Binding Events                                                                                                                                                                                                                                                                                                                      
## Mismatch Repair                                                                                                                                                                                                                                                                                                                                                 
## Mitochondrial Biogenesis                                                                                                                                                                                                                                                                                                                                   CREB1
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                                                                                                                                             
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                                                                                                                                                         
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                                                                                                                                                                                
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                                                                                                                                                                              
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                                                                                                                                                    
## Mitochondrial Protein Import                                                                                                                                                                                                                                                                                                                                    
## Mitochondrial Translation                                                                                                                                                                                                                                                                                                                                       
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                                                                                                                                               
## Mitochondrial Uncoupling                                                                                                                                                                                                                                                                                                                                        
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                                                                                                                                    CDK1,MYC
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                                                                                                                                      CDK1
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                                                                                                                                              CDK1
## Mitotic Prometaphase                                                                                                                                                                                                                                                                                                                                        CDK1
## Mitotic Prophase                                                                                                                                                                                                                                                                                                                                            CDK1
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                                                                                                                                      
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                                                                                                                                                   
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                                                                                                                                                         
## Molecules Associated With Elastic Fibres                                                                                                                                                                                                                                                                                                                        
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Mrna Capping                                                                                                                                                                                                                                                                                                                                                    
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                                                                                                                                            
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                                                                                                                                            
## Mrna Editing                                                                                                                                                                                                                                                                                                                                                    
## Mrna Editing C To U Conversion                                                                                                                                                                                                                                                                                                                                  
## Mrna Splicing                                                                                                                                                                                                                                                                                                                                                   
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                                                                                                                                     
## Mtor Signalling                                                                                                                                                                                                                                                                                                                                                 
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                                                                                                                                      
## Mucopolysaccharidoses                                                                                                                                                                                                                                                                                                                                           
## Multifunctional Anion Exchangers                                                                                                                                                                                                                                                                                                                                
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                                                              
## Muscle Contraction                                                                                                                                                                                                                                                                                                                                         KCNK1
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation                                                                                                                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                                                                                                                                                                          
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                                                                                                                                                               
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                                                                                                                                                                     
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                                                                                                                                                                   
## Nade Modulates Death Signalling                                                                                                                                                                                                                                                                                                                                 
## Ncam1 Interactions                                                                                                                                                                                                                                                                                                                                              
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                                                                                                                                            
## Neddylation                                                                                                                                                                                                                                                                                                                                                     
## Nef And Signal Transduction                                                                                                                                                                                                                                                                                                                                     
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                                                                                                                                                
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                                                                                                                                                
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                                                                                                                                                                                      
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                                                                                                                                                                                                                  
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                                                                                                                                    DNMT1,SIRT1
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                                                                                                                                                    
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                                                                                                                                                                                      
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Flt3                                                                                                                                                                                                                                                                                                                                     
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Met Activity                                                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                                                                                                                                                         
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                                                                                                                                                                                      
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                                                                                                                                           CD86,IRAK1
## Nephrin Family Interactions                                                                                                                                                                                                                                                                                                                                     
## Nervous System Development                                                                                                                                                                                                                                                                                                               CDC42,CREB1,MAPK8,TREM2
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                                                                                                                                               
## Neurexins And Neuroligins                                                                                                                                                                                                                                                                                                                                       
## Neurofascin Interactions                                                                                                                                                                                                                                                                                                                                        
## Neuronal System                                                                                                                                                                                                                                                                                                                                      CREB1,KCNK1
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                                                                                                                                             
## Neurotransmitter Clearance                                                                                                                                                                                                                                                                                                                                      
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                                                                                                                                                                            CREB1
## Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                                  
## Neutrophil Degranulation                                                                                                                                                                                                                                                    BPI,C3,C5AR1,CD55,CD59,CD63,CEACAM1,CST3,CTSC,CXCL1,HLA-B,HMGB1,HP,MIF,MMP8,MPO,SLPI
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                                                                                                                                                                                        
## Ngf Independant Trka Activation                                                                                                                                                                                                                                                                                                                                 
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                                                                                                                                                       
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                                                                                                                                                          
## Noncanonical Activation Of Notch3                                                                                                                                                                                                                                                                                                                               
## Nonhomologous End Joining Nhej                                                                                                                                                                                                                                                                                                                                  
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                                                                                                                                     
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                   
## Notch Hlh Transcription Pathway                                                                                                                                                                                                                                                                                                                                 
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                             
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                             
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                                                                                                                                              
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                                                                                                                                                                                  
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                                                                                                                                                                      
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                                                                                                                                                                                                
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                                                                                                                                                                                           
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                                                                                                                                                                                
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                                                                                                                                                                                                 
## Nrcam Interactions                                                                                                                                                                                                                                                                                                                                              
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                                                                                                                                                           
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                                                                                                                            
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                                                                                                                                              CDK1
## Nuclear Import Of Rev Protein                                                                                                                                                                                                                                                                                                                                   
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                                                                                                                                                          
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                                                                                                                                      
## Nucleobase Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Nucleobase Catabolism                                                                                                                                                                                                                                                                                                                                           
## Nucleotide Excision Repair                                                                                                                                                                                                                                                                                                                                      
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                                                                                                                                            
## Nucleotide Salvage                                                                                                                                                                                                                                                                                                                                              
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                                                                                                                                                               
## O Linked Glycosylation                                                                                                                                                                                                                                                                                                                                          
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                                                                                                                                                
## Oas Antiviral Response                                                                                                                                                                                                                                                                                                                                          
## Olfactory Signaling Pathway                                                                                                                                                                                                                                                                                                                                     
## Oncogene Induced Senescence                                                                                                                                                                                                                                                                                                                                     
## Oncogenic Mapk Signaling                                                                                                                                                                                                                                                                                                                                        
## Opioid Signalling                                                                                                                                                                                                                                                                                                                                          CREB1
## Opsins                                                                                                                                                                                                                                                                                                                                                          
## Orc1 Removal From Chromatin                                                                                                                                                                                                                                                                                                                                     
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                                                                                                                                                                                         
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                                                                                                                                  CDK1,CREB1
## Organic Anion Transport                                                                                                                                                                                                                                                                                                                                         
## Organic Anion Transporters                                                                                                                                                                                                                                                                                                                                      
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                                                                                                                                                       
## Organic Cation Transport                                                                                                                                                                                                                                                                                                                                        
## Other Interleukin Signaling                                                                                                                                                                                                                                                                                                                                     
## Oxidative Stress Induced Senescence                                                                                                                                                                                                                                                                                                                        MAPK8
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                                                                                                                                                                 
## P2y Receptors                                                                                                                                                                                                                                                                                                                                                   
## P38mapk Events                                                                                                                                                                                                                                                                                                                                                  
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                                                                                                                                                                  
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                                                                                                                                                   
## Parasite Infection                                                                                                                                                                                                                                                                                                                                         CDC42
## Passive Transport By Aquaporins                                                                                                                                                                                                                                                                                                                                 
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                                                                                                                                                                  
## Pcp Ce Pathway                                                                                                                                                                                                                                                                                                                                             WNT5A
## Pecam1 Interactions                                                                                                                                                                                                                                                                                                                                             
## Pentose Phosphate Pathway                                                                                                                                                                                                                                                                                                                                       
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                                                                                                                                    
## Peptide Hormone Metabolism                                                                                                                                                                                                                                                                                                                                  DPP4
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Peroxisomal Protein Import                                                                                                                                                                                                                                                                                                                                      
## Pexophagy                                                                                                                                                                                                                                                                                                                                                       
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                                                                                                                                    
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                                                                                                                                                        
## Phase 2 Plateau Phase                                                                                                                                                                                                                                                                                                                                           
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                                                                                                                                    
## Phase I Functionalization Of Compounds                                                                                                                                                                                                                                                                                                                          
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                                                                                                                                               
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                                                                                                                                                           
## Phenylalanine Metabolism                                                                                                                                                                                                                                                                                                                                        
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                                                                                                                                                                   
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                                                                                                                                                      
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                                                                                                                                                          
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                                                                                                                                                          
## Phospholipid Metabolism                                                                                                                                                                                                                                                                                                                                         
## Physiological Factors                                                                                                                                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                                                                                                                             
## Pi Metabolism                                                                                                                                                                                                                                                                                                                                                   
## Pi3k Akt Activation                                                                                                                                                                                                                                                                                                                                             
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                                                                                                                          CD86,CREB1
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                                                                                                                                                  
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                                                                                                                                                 
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                                                                                                                                                           
## Pka Activation In Glucagon Signalling                                                                                                                                                                                                                                                                                                                           
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                                                                                                                                                                           
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                                                                                                                                                 
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                                                                                                                                                       APOA1
## Platelet Activation Signaling And Aggregation                                                                                                                                                                                                                                                                                          APOA1,CD63,CDC42,SERPINE1
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                                                                                                                                                           
## Platelet Aggregation Plug Formation                                                                                                                                                                                                                                                                                                                             
## Platelet Calcium Homeostasis                                                                                                                                                                                                                                                                                                                                    
## Platelet Homeostasis                                                                                                                                                                                                                                                                                                                                            
## Platelet Sensitization By Ldl                                                                                                                                                                                                                                                                                                                                   
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                                                                                                                                                                  
## Polo Like Kinase Mediated Events                                                                                                                                                                                                                                                                                                                                
## Polymerase Switching                                                                                                                                                                                                                                                                                                                                            
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                                                                                                                                                            
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                                                                                                                                               
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                                                                                                                                                         
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                                                                                                                                                                           GP2
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                                                                                                                                                                
## Potassium Channels                                                                                                                                                                                                                                                                                                                                         KCNK1
## Potential Therapeutics For Sars                                                                                                                                                                                                                                                                                                                             TLR9
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                                                                                                                                                                                 
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                                                                                                                                                                        
## Pre Notch Expression And Processing                                                                                                                                                                                                                                                                                                                             
## Pre Notch Processing In Golgi                                                                                                                                                                                                                                                                                                                                   
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                                                                                                                                                               
## Pregnenolone Biosynthesis                                                                                                                                                                                                                                                                                                                                       
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                                                                                                                                                                          
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                                                                                                                                                       
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                                                                                                                                                       
## Processing And Activation Of Sumo                                                                                                                                                                                                                                                                                                                               
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                                                                                                                                                                 
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                                                                                                                                                        
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                                                                                                                                                      
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                                                                                                                                              
## Processing Of Smdt1                                                                                                                                                                                                                                                                                                                                             
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                                                                                                                                                            
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                                                                                                                                                      
## Prolactin Receptor Signaling                                                                                                                                                                                                                                                                                                                                    
## Prolonged Erk Activation Events                                                                                                                                                                                                                                                                                                                                 
## Propionyl Coa Catabolism                                                                                                                                                                                                                                                                                                                                        
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                                                                                                                                                                           
## Prostanoid Ligand Receptors                                                                                                                                                                                                                                                                                                                                     
## Protein Folding                                                                                                                                                                                                                                                                                                                                            STAT3
## Protein Localization                                                                                                                                                                                                                                                                                                                                            
## Protein Methylation                                                                                                                                                                                                                                                                                                                                             
## Protein Protein Interactions At Synapses                                                                                                                                                                                                                                                                                                                        
## Protein Repair                                                                                                                                                                                                                                                                                                                                                  
## Protein Ubiquitination                                                                                                                                                                                                                                                                                                                                          
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                                                                                                                                                        
## Pten Regulation                                                                                                                                                                                                                                                                                                                                                 
## Ptk6 Expression                                                                                                                                                                                                                                                                                                                                                 
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                                                                                                                                               
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                                                                                                                                       
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                                                                                                                                                              
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                                                                                                                                                                           
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                                                                                                                                                                           
## Purine Catabolism                                                                                                                                                                                                                                                                                                                                               
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                                                                                                                                                                
## Purine Salvage                                                                                                                                                                                                                                                                                                                                                  
## Pyrimidine Catabolism                                                                                                                                                                                                                                                                                                                                           
## Pyrimidine Salvage                                                                                                                                                                                                                                                                                                                                              
## Pyruvate Metabolism                                                                                                                                                                                                                                                                                                                                             
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                                                                                                                                                                   
## Ra Biosynthesis Pathway                                                                                                                                                                                                                                                                                                                                         
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                                                                                                                                                           
## Rab Geranylgeranylation                                                                                                                                                                                                                                                                                                                                         
## Rab Regulation Of Trafficking                                                                                                                                                                                                                                                                                                                                   
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Raf Activation                                                                                                                                                                                                                                                                                                                                                  
## Rap1 Signalling                                                                                                                                                                                                                                                                                                                                                 
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                                                                                                                                                            
## Ras Processing                                                                                                                                                                                                                                                                                                                                                  
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                                                                                                                                                                       
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                                                                                                                                                                    
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                                                                                                                                                     
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                                                                                                                                                                                                          
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                                                                                                                                                                                
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                                                                                                                                                                    CDK1
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                                                                                                                                                  CDK1
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                                                                                                                                               
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                                                                                                                                           
## Recycling Pathway Of L1                                                                                                                                                                                                                                                                                                                                         
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                                                                                                                                                
## Reelin Signalling Pathway                                                                                                                                                                                                                                                                                                                                       
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Bach1 Activity                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Beta Cell Development                                                                                                                                                                                                                                                                                                                             
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                                                                                                                                                                           
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                                                                                                                                                                     
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                                                                                                                                                                                              
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                                                                                                                                                     
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                                                                                                                                             
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                                                                                                                                                                       
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                                                                                                                                                     
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                                                                                                                                                                               
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                                                                                                                                                                                                   
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                                                                                                                                                                                                              
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                                                                                                                                                                     
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                                                                                                                                                                                
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                                                                                                                                                            SIRT1
## Regulation Of Ifna Signaling                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Ifng Signaling                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                                                                                                                                                                          
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                                                                                                                                                                                                                            APOA1,C3,CST3
## Regulation Of Insulin Secretion                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Kit Signaling                                                                                                                                                                                                                                                                                                                                     
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                                                                                                                                                APOA1
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                                                                                                                                                                        
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                                                                                                                                                                             
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                                                                                                                                                              CDK1
## Regulation Of Pten Gene Transcription                                                                                                                                                                                                                                                                                                                           
## Regulation Of Pten Localization                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                                                                                                                                             
## Regulation Of Pten Stability And Activity                                                                                                                                                                                                                                                                                                                       
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                                                                                                                                                                
## Regulation Of Ras By Gaps                                                                                                                                                                                                                                                                                                                                       
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Signaling By Cbl                                                                                                                                                                                                                                                                                                                                  
## Regulation Of Signaling By Nodal                                                                                                                                                                                                                                                                                                                                
## Regulation Of Tp53 Activity                                                                                                                                                                                                                                                                                                                                 CDK1
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                                                                                                                                                             
## Relaxin Receptors                                                                                                                                                                                                                                                                                                                                               
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                                                                                                                                                              
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                                                                                                                                                        
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                                                                                                                                                                                           
## Reproduction                                                                                                                                                                                                                                                                                                                                                    
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                                                                                                                                             
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                                                                                                                                                                                    
## Resolution Of D Loop Structures                                                                                                                                                                                                                                                                                                                                 
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                                                                                                                                                                                               
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                                                                                                                                                     CDK1
## Respiratory Electron Transport                                                                                                                                                                                                                                                                                                                                  
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                                                                                                                                                                                                                                
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                                                                                                                                                      
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                                                                                                                                                               
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                                                                                                                                                 
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                                                                                                                                  APOA1,CD63,SERPINE1
## Response To Metal Ions                                                                                                                                                                                                                                                                                                                                          
## Ret Signaling                                                                                                                                                                                                                                                                                                                                                   
## Retinoid Cycle Disease Events                                                                                                                                                                                                                                                                                                                                   
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                                                                                                                                              
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                                                                                                                                                                 
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                                                                                                                                                          
## Rho Gtpase Cycle                                                                                                                                                                                                                                                                                                                                      CAV1,CDC42
## Rho Gtpase Effectors                                                                                                                                                                                                                                                                                                                                       CDC42
## Rho Gtpases Activate Cit                                                                                                                                                                                                                                                                                                                                        
## Rho Gtpases Activate Formins                                                                                                                                                                                                                                                                                                                               CDC42
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                                                                                                                                             
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                                                                                                                                       
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                                                                                                                                                    
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                                                                                                                                      
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                                                                                                                             
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                              
## Rmts Methylate Histone Arginines                                                                                                                                                                                                                                                                                                                          DNMT3A
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                                                                                                                                                
## Rna Polymerase I Transcription                                                                                                                                                                                                                                                                                                                                  
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                                                                                                                                                       
## Rna Polymerase I Transcription Termination                                                                                                                                                                                                                                                                                                                      
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                                                                                                                                                       
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                                                                                                                                                     
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                                                                                                                                             
## Rna Polymerase Iii Transcription                                                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                                                                                                                                                    
## Robo Receptors Bind Akap5                                                                                                                                                                                                                                                                                                                                       
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                                                                                                                                              
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                                                                                                                                                                   
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                                                                                                                                                           
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                                                                                                                                                                 
## Rora Activates Gene Expression                                                                                                                                                                                                                                                                                                                                  
## Rrna Modification In The Mitochondrion                                                                                                                                                                                                                                                                                                                          
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                                                                                                                                                    
## Rrna Processing                                                                                                                                                                                                                                                                                                                                                 
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                                                                                                                                            
## Rsk Activation                                                                                                                                                                                                                                                                                                                                                  
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                                                                                                                                                                                              
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                                                                                                                                                                        
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                                                                                                                                                                     
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                                                                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                                                                                                                                                                                
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                                                                                                                                                                                      
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                                                                                                                                                                                             
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                                                                                                                                                                                        
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Bone Development                                                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                                                                                                                                                          
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                                                                                                                                                      
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                                                                                                                                                       
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                                                                                                                                            
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                                                                                                                                                              
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                                                                                                                                                 
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                                                                                                                                         
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                                                                                                                                                     
## S Phase                                                                                                                                                                                                                                                                                                                                                      MYC
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                                                                                                                                                                 
## Sars Cov 1 Infection                                                                                                                                                                                                                                                                                                                                            
## Sars Cov 2 Infection                                                                                                                                                                                                                                                                                                                                            
## Sars Cov Infections                                                                                                                                                                                                                                                                                                                                         TLR9
## Scavenging By Class F Receptors                                                                                                                                                                                                                                                                                                                                 
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                                                                                                                                                        
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                                                                                                                                                                 
## Selective Autophagy                                                                                                                                                                                                                                                                                                                                         ATG5
## Selenoamino Acid Metabolism                                                                                                                                                                                                                                                                                                                                     
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                                                                                                                                             
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                                                                                                                                                                               
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                                                                                                                                                  
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                                                                                                                                                                          
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                                                                                                                                                                     
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                                                                                                                                                       CXCL8,STAT3
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                                                                                                                                             
## Sensory Perception                                                                                                                                                                                                                                                                                                                                         APOA1
## Sensory Processing Of Sound                                                                                                                                                                                                                                                                                                                                     
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                                                                                                                                                                                  
## Separation Of Sister Chromatids                                                                                                                                                                                                                                                                                                                                 
## Serine Biosynthesis                                                                                                                                                                                                                                                                                                                                             
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                                                                                                                                            
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                        
## Serotonin Receptors                                                                                                                                                                                                                                                                                                                                             
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                                                                                                                                      
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                                                                                                                                      
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                                                                                                                                      
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                                                                                                                                                           
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                                                                                                                                                   
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                                                                                                                                                  
## Sialic Acid Metabolism                                                                                                                                                                                                                                                                                                                                          
## Signal Amplification                                                                                                                                                                                                                                                                                                                                            
## Signal Attenuation                                                                                                                                                                                                                                                                                                                                              
## Signal Regulatory Protein Family Interactions                                                                                                                                                                                                                                                                                                                   
## Signal Transduction By L1                                                                                                                                                                                                                                                                                                                                       
## Signaling By Activin                                                                                                                                                                                                                                                                                                                                            
## Signaling By Bmp                                                                                                                                                                                                                                                                                                                                                
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                                                                                                                                               
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                                                                                                                                                        
## Signaling By Egfr In Cancer                                                                                                                                                                                                                                                                                                                                     
## Signaling By Erbb2                                                                                                                                                                                                                                                                                                                                              
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                                                                                                                                                  
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                                                                                                                                    
## Signaling By Erbb4                                                                                                                                                                                                                                                                                                                                              
## Signaling By Erythropoietin                                                                                                                                                                                                                                                                                                                                     
## Signaling By Fgfr                                                                                                                                                                                                                                                                                                                                               
## Signaling By Fgfr1                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr2                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                                                                                                                                      
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                                                                                                                                                   
## Signaling By Fgfr3                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                                                                                                                                            
## Signaling By Fgfr4                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                                                                                                                                                   
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                                                                                                                                               
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                                                                                                                                                           
## Signaling By Gpcr                                                                                                                                                                                                                                                 C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CD55,CDC42,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN,WNT5A
## Signaling By Hedgehog                                                                                                                                                                                                                                                                                                                                           
## Signaling By Hippo                                                                                                                                                                                                                                                                                                                                              
## Signaling By Insulin Receptor                                                                                                                                                                                                                                                                                                                               TLR9
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                                                                                                                                       
## Signaling By Mapk Mutants                                                                                                                                                                                                                                                                                                                                       
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                                                                                                                                                                      
## Signaling By Met                                                                                                                                                                                                                                                                                                                                           STAT3
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                                                                                                                                                              
## Signaling By Mras Complex Mutants                                                                                                                                                                                                                                                                                                                               
## Signaling By Mst1                                                                                                                                                                                                                                                                                                                                               
## Signaling By Nodal                                                                                                                                                                                                                                                                                                                                              
## Signaling By Notch                                                                                                                                                                                                                                                                                                                                     CREB1,MYC
## Signaling By Notch1                                                                                                                                                                                                                                                                                                                                          MYC
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                                                                                                                                                                 
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                                                                                                                                                                               
## Signaling By Notch3                                                                                                                                                                                                                                                                                                                                             
## Signaling By Notch4                                                                                                                                                                                                                                                                                                                                             
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                                                                                                                                         
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                                                                                                                                         
## Signaling By Ntrks                                                                                                                                                                                                                                                                                                                                   CREB1,STAT3
## Signaling By Nuclear Receptors                                                                                                                                                                                                                                                                                                                    CAV1,CREB1,MYC
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                                                                                                                               CAV1,CDC42,CREB1,STAT3,TLR9
## Signaling By Retinoic Acid                                                                                                                                                                                                                                                                                                                                      
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                                                                                                                                      
## Signaling By Robo Receptors                                                                                                                                                                                                                                                                                                                                CDC42
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                                                                                                                                                                
## Signaling By Tgfb Family Members                                                                                                                                                                                                                                                                                                                    MYC,SERPINE1
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                                                                                                                                      NFKBIA
## Signaling By Vegf                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Signaling By Wnt                                                                                                                                                                                                                                                                                                                                  CAV1,MYC,WNT5A
## Signaling By Wnt In Cancer                                                                                                                                                                                                                                                                                                                                      
## Signalling To Erks                                                                                                                                                                                                                                                                                                                                              
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                                                                                                                                               
## Signalling To Ras                                                                                                                                                                                                                                                                                                                                               
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                                                                                                                                                                            
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                                                                                                                                            
## Slc Transporter Disorders                                                                                                                                                                                                                                                                                                                                       
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                                                                                                                                                          
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                                                                                                                                                          
## Smooth Muscle Contraction                                                                                                                                                                                                                                                                                                                                       
## Snrnp Assembly                                                                                                                                                                                                                                                                                                                                                  
## Sodium Calcium Exchangers                                                                                                                                                                                                                                                                                                                                       
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                                                                                                                                                         
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                                                                                                                                                                     
## Sodium Proton Exchangers                                                                                                                                                                                                                                                                                                                                        
## Sos Mediated Signalling                                                                                                                                                                                                                                                                                                                                         
## Sperm Motility And Taxes                                                                                                                                                                                                                                                                                                                                        
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                                                                                                                                               
## Sphingolipid Metabolism                                                                                                                                                                                                                                                                                                                                         
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                                                                                                                                                
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                                                                                                                                                                     
## Stabilization Of P53                                                                                                                                                                                                                                                                                                                                            
## Stat5 Activation                                                                                                                                                                                                                                                                                                                                                
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                                                                                                                                                                 
## Stimuli Sensing Channels                                                                                                                                                                                                                                                                                                                                        
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                                                                                                                                                               
## Striated Muscle Contraction                                                                                                                                                                                                                                                                                                                                     
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                                                                                                                                    
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                                                                                                                                              
## Sumo Is Proteolytically Processed                                                                                                                                                                                                                                                                                                                               
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                                                                                                                                                    
## Sumoylation                                                                                                                                                                                                                                                                                                                                  DNMT1,DNMT3A,NFKBIA
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                                                                                                                                                                  
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                                                                                                                                                         
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                                                                                                                                             
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                                                                                                                                             
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Transcription Factors                                                                                                                                                                                                                                                                                                                            
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                                                                                                                                                        
## Suppression Of Apoptosis                                                                                                                                                                                                                                                                                                                                        
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                                                                                                                                            
## Surfactant Metabolism                                                                                                                                                                                                                                                                                                                                           
## Switching Of Origins To A Post Replicative State                                                                                                                                                                                                                                                                                                                
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                                                                                                                                                
## Syndecan Interactions                                                                                                                                                                                                                                                                                                                                           
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                                                                                                                                               
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                                                                                                                                                                           
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                                                                                                                                                           
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                                                                                                                                                                        
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                                                                                                                                                          
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                                                                                                                                                                                
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                                                                                                                                                                                
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                                                                                                                                                                            
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                                                                                                                                                   
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                                                                                                                                                                                   
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                                                                                                                                                                   
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                                                                                                                                                         
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Pa                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pc                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pe                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pg                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pi                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                                                                                                                                                                
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                                                                                                                                            
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                                                                                                                                                         
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                                                                                                                                                           
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                                                                                                                                                    
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                                                                                                                                                      
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                                                                                                                                                                  
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                                                                                                                                                           
## Tbc Rabgaps                                                                                                                                                                                                                                                                                                                                                     
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                                                                                                                                        CAV1,MYC,WNT5A
## Tcr Signaling                                                                                                                                                                                                                                                                                                                              HLA-DQB1,NFKBIA,RIPK2
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                                                                                                                                                      
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                                                                                                                                                          
## Telomere Extension By Telomerase                                                                                                                                                                                                                                                                                                                                
## Telomere Maintenance                                                                                                                                                                                                                                                                                                                                            
## Terminal Pathway Of Complement                                                                                                                                                                                                                                                                                                                                  
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                                                                                                                                            
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                                                                                                                                                        
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                                                                                                                                                                              
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                                                                                                                                                                                                 
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                                                                                                                                                                                                    
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                                                                                                                                                     
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                                                                                                                                                                                         
## The Activation Of Arylsulfatases                                                                                                                                                                                                                                                                                                                                
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                                                                                                                                                            
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                                                                                                                                                                    
## The Fatty Acid Cycling Model                                                                                                                                                                                                                                                                                                                                    
## The Phototransduction Cascade                                                                                                                                                                                                                                                                                                                                   
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                                                                                                                                                     
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                                                                                                                                                                   CDK1
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                                                                                                                                                                                   
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                                                                                                                                                                                 
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                                                                                                                                                      
## Thyroxine Biosynthesis                                                                                                                                                                                                                                                                                                                                          
## Tie2 Signaling                                                                                                                                                                                                                                                                                                                                                  
## Tight Junction Interactions                                                                                                                                                                                                                                                                                                                                     
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                                                                                                                                                         
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                                                                                                                                                  
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                                                                                                                                                                                 
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                                                                                                                                                                     
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                                                                                                                                                                                          
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                                                                                                                                                                                          
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain                                                                                                                                                                                                                            
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                                                                                                                                                          
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                                                                                                                                                  
## Trafficking Of Ampa Receptors                                                                                                                                                                                                                                                                                                                                   
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                                                                                                                                                                  
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                                                                                                                                                             
## Trail Signaling                                                                                                                                                                                                                                                                                                                                                 
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                                                                                                                                             
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                                                                                                                                                                         
## Transcription Of The Hiv Genome                                                                                                                                                                                                                                                                                                                                 
## Transcriptional Regulation By E2f6                                                                                                                                                                                                                                                                                                                              
## Transcriptional Regulation By Runx1                                                                                                                                                                                                                                                                                                               CSF2,CTLA4,IL2
## Transcriptional Regulation By Runx2                                                                                                                                                                                                                                                                                                                         CDK1
## Transcriptional Regulation By Runx3                                                                                                                                                                                                                                                                                                                          MYC
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                                                                                                                                                        
## Transcriptional Regulation By Tp53                                                                                                                                                                                                                                                                                                                          CDK1
## Transcriptional Regulation By Ventx                                                                                                                                                                                                                                                                                                                             
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                                                                                                                                                            
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                                                                                                                                                                                TNF
## Transferrin Endocytosis And Recycling                                                                                                                                                                                                                                                                                                                           
## Translation                                                                                                                                                                                                                                                                                                                                                     
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                                                                                                                                                                                                  
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                                                                                                                                                                   
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Polh                                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Polk                                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                                                                                                                                                                                              
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                                                                                                                                                            
## Transmission Across Chemical Synapses                                                                                                                                                                                                                                                                                                                      CREB1
## Transport And Synthesis Of Paps                                                                                                                                                                                                                                                                                                                                 
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                                                                                                                                                                                        
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                                                                                                                                                                   
## Transport Of Fatty Acids                                                                                                                                                                                                                                                                                                                                        
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                                                                                                                                                                             
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                                                                                                                                                                                   
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                                                                                                                                                     
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                                                                                                                                                                                                        
## Transport Of Nucleotide Sugars                                                                                                                                                                                                                                                                                                                                  
## Transport Of Organic Anions                                                                                                                                                                                                                                                                                                                                     
## Transport Of Small Molecules                                                                                                                                                                                                                                                                                                                               APOA1
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                                                                                                                                                     
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                                                                                                                                                                         
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                                                                                                                                                CD55,CD59,CTSC
## Triglyceride Biosynthesis                                                                                                                                                                                                                                                                                                                                       
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                           
## Trna Aminoacylation                                                                                                                                                                                                                                                                                                                                             
## Trna Modification In The Mitochondrion                                                                                                                                                                                                                                                                                                                          
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                                                                                                                                                    
## Trna Processing                                                                                                                                                                                                                                                                                                                                                 
## Trna Processing In The Mitochondrion                                                                                                                                                                                                                                                                                                                            
## Trna Processing In The Nucleus                                                                                                                                                                                                                                                                                                                                  
## Trp Channels                                                                                                                                                                                                                                                                                                                                                    
## Tryptophan Catabolism                                                                                                                                                                                                                                                                                                                                           
## Type I Hemidesmosome Assembly                                                                                                                                                                                                                                                                                                                                   
## Tyrosine Catabolism                                                                                                                                                                                                                                                                                                                                             
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                                                                                                                                             
## Ub Specific Processing Proteases                                                                                                                                                                                                                                                                                                                BIRC3,MYC,NFKBIA
## Ubiquinol Biosynthesis                                                                                                                                                                                                                                                                                                                                          
## Uch Proteinases                                                                                                                                                                                                                                                                                                                                                 
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                                                                                                                                                                                   
## Unwinding Of Dna                                                                                                                                                                                                                                                                                                                                                
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                                                                                                                                                          
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                                                                                                                                                           
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                                                                                                                                                         
## Urea Cycle                                                                                                                                                                                                                                                                                                                                                      
## Vasopressin Like Receptors                                                                                                                                                                                                                                                                                                                                      
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                                                                                                                                                                    
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                                                                                                                                               
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                                                                                                                                              
## Vesicle Mediated Transport                                                                                                                                                                                                                                                                                             APOA1,CD163,CD55,CD59,CTSC,HP,MARCO,WNT5A
## Viral Messenger Rna Synthesis                                                                                                                                                                                                                                                                                                                                   
## Visual Phototransduction                                                                                                                                                                                                                                                                                                                                   APOA1
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                                                                                                                                                   
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                                                                                                                                                
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                                                                                                                                              
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                                                                                                                                                  
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                                                                                                                                                 
## Vitamins                                                                                                                                                                                                                                                                                                                                                        
## Vldl Assembly                                                                                                                                                                                                                                                                                                                                                   
## Vldl Clearance                                                                                                                                                                                                                                                                                                                                                  
## Vldlr Internalisation And Degradation                                                                                                                                                                                                                                                                                                                           
## Voltage Gated Potassium Channels                                                                                                                                                                                                                                                                                                                                
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                                                                                                                                                  
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                                                                                                                                                  
## Xenobiotics                                                                                                                                                                                                                                                                                                                                                     
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                                                                                                                                                                   
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                                                                                                                                                                        
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                                                                                                                                                                 
## Zinc Transporters
hyp_dots(hyp_mic4, merge = T, fdr = 0.1, title = "Reactome(bck=all)")

hyp_mic4$as.list()
## $cancer
##                                                                                                                                                                                                                                                                     label
## Cytokine Signaling In Immune System                                                                                                                                                                                                   Cytokine Signaling In Immune System
## Interleukin 10 Signaling                                                                                                                                                                                                                         Interleukin 10 Signaling
## Signaling By Interleukins                                                                                                                                                                                                                       Signaling By Interleukins
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                   Chemokine Receptors Bind Chemokines
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                     Interleukin 4 And Interleukin 13 Signaling
## Innate Immune System                                                                                                                                                                                                                                 Innate Immune System
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                       Tnfr2 Non Canonical Nf Kb Pathway
## G Alpha I Signalling Events                                                                                                                                                                                                                   G Alpha I Signalling Events
## Peptide Ligand Binding Receptors                                                                                                                                                                                                         Peptide Ligand Binding Receptors
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                 Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Signaling By Gpcr                                                                                                                                                                                                                                       Signaling By Gpcr
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                             Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                         Extra Nuclear Estrogen Signaling
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                           Tnfs Bind Their Physiological Receptors
## Gpcr Ligand Binding                                                                                                                                                                                                                                   Gpcr Ligand Binding
## Leishmania Infection                                                                                                                                                                                                                                 Leishmania Infection
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                     Class A 1 Rhodopsin Like Receptors
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                               Cd163 Mediating An Anti Inflammatory Response
## Interleukin 1 Processing                                                                                                                                                                                                                         Interleukin 1 Processing
## Regulated Necrosis                                                                                                                                                                                                                                     Regulated Necrosis
## Toll Like Receptor Cascades                                                                                                                                                                                                                   Toll Like Receptor Cascades
## Costimulation By The Cd28 Family                                                                                                                                                                                                         Costimulation By The Cd28 Family
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                         Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                 Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Esr Mediated Signaling                                                                                                                                                                                                                             Esr Mediated Signaling
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                             Myd88 Independent Tlr4 Cascade
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                 Pi3k Akt Signaling In Cancer
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                           Purinergic Signaling In Leishmaniasis Infection
## Pyroptosis                                                                                                                                                                                                                                                     Pyroptosis
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                   Negative Regulation Of The Pi3k Akt Network
## Pd 1 Signaling                                                                                                                                                                                                                                             Pd 1 Signaling
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                             Senescence Associated Secretory Phenotype Sasp
## Post Translational Protein Modification                                                                                                                                                                                           Post Translational Protein Modification
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                   Mapk Targets Nuclear Events Mediated By Map Kinases
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                           Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Infectious Disease                                                                                                                                                                                                                                     Infectious Disease
## Interleukin 1 Family Signaling                                                                                                                                                                                                             Interleukin 1 Family Signaling
## Ngf Stimulated Transcription                                                                                                                                                                                                                 Ngf Stimulated Transcription
## Signaling By Nuclear Receptors                                                                                                                                                                                                             Signaling By Nuclear Receptors
## Intracellular Signaling By Second Messengers                                                                                                                                                                                 Intracellular Signaling By Second Messengers
## Adaptive Immune System                                                                                                                                                                                                                             Adaptive Immune System
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                         Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                         Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                       Nuclear Events Kinase And Transcription Factor Activation
## Cellular Senescence                                                                                                                                                                                                                                   Cellular Senescence
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                 Cytosolic Sensors Of Pathogen Associated Dna
## Programmed Cell Death                                                                                                                                                                                                                               Programmed Cell Death
## Circadian Clock                                                                                                                                                                                                                                           Circadian Clock
## Interleukin 17 Signaling                                                                                                                                                                                                                         Interleukin 17 Signaling
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                     Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                               Mecp2 Regulates Transcription Factors
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                       Constitutive Signaling By Aberrant Pi3k In Cancer
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                   Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation                                                                                                                                                                                                                 Fibronectin Matrix Formation
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                       Ptk6 Promotes Hif1a Stabilization
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                 Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Creb Phosphorylation                                                                                                                                                                                                                                 Creb Phosphorylation
## Neutrophil Degranulation                                                                                                                                                                                                                         Neutrophil Degranulation
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                             Fcgr3a Mediated Il10 Synthesis
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                       Toll Like Receptor 9 Tlr9 Cascade
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                 Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Interleukin 18 Signaling                                                                                                                                                                                                                         Interleukin 18 Signaling
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                       Mecp2 Regulates Transcription Of Neuronal Ligands
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                             Signaling By Receptor Tyrosine Kinases
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                   Cargo Recognition For Clathrin Mediated Endocytosis
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                       Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           Egfr Transactivation By Gastrin
## Mapk1 Erk2 Activation                                                                                                                                                                                                                               Mapk1 Erk2 Activation
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 Toll Like Receptor Tlr1 Tlr2 Cascade
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                             Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                       Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                         Camk Iv Mediated Phosphorylation Of Creb
## Mapk3 Erk1 Activation                                                                                                                                                                                                                               Mapk3 Erk1 Activation
## Extracellular Matrix Organization                                                                                                                                                                                                       Extracellular Matrix Organization
## Interleukin 6 Signaling                                                                                                                                                                                                                           Interleukin 6 Signaling
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                         Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                   Cd28 Dependent Vav1 Pathway
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                       Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Killing Mechanisms                                                                                                                                                                                                                                     Killing Mechanisms
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch2 Intracellular Domain Regulates Transcription
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                         Ticam1 Dependent Activation Of Irf3 Irf7
## Vldlr Internalisation And Degradation                                                                                                                                                                                               Vldlr Internalisation And Degradation
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                     Dissolution Of Fibrin Clot
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                             Erbb2 Activates Ptk6 Signaling
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                               Irf3 Mediated Induction Of Type I Ifn
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                   Trafficking And Processing Of Endosomal Tlr
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                               Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                           Adora2b Mediated Anti Inflammatory Cytokines Production
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                               Shc1 Events In Egfr Signaling
## Signaling By Ntrks                                                                                                                                                                                                                                     Signaling By Ntrks
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                     Constitutive Signaling By Egfrviii
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                               Erbb2 Regulates Cell Motility
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                         Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                           Wnt5a Dependent Internalization Of Fzd4
## Hcmv Early Events                                                                                                                                                                                                                                       Hcmv Early Events
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                 C Type Lectin Receptors Clrs
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                     Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb2 Events In Erbb2 Signaling
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb2 Signaling
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                             Signaling By Erbb2 Ecd Mutants
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                       Sting Mediated Induction Of Host Immune Responses
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                           Sumoylation Of Dna Methylation Proteins
## Clathrin Mediated Endocytosis                                                                                                                                                                                                               Clathrin Mediated Endocytosis
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                               Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Gab1 Signalosome                                                                                                                                                                                                                                         Gab1 Signalosome
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                               Rip Mediated Nfkb Activation Via Zbp1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                           Mecp2 Regulates Neuronal Receptors And Channels
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                         Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Ldl Clearance                                                                                                                                                                                                                                               Ldl Clearance
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                 Pka Mediated Phosphorylation Of Creb
## Hcmv Infection                                                                                                                                                                                                                                             Hcmv Infection
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                     Ctla4 Inhibitory Signaling
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                         Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Inflammasomes                                                                                                                                                                                                                                               Inflammasomes
## Signal Transduction By L1                                                                                                                                                                                                                       Signal Transduction By L1
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                     Zbp1 Dai Mediated Induction Of Type I Ifns
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                       Cd28 Dependent Pi3k Akt Signaling
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb2 Signaling
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                         Ikk Complex Recruitment Mediated By Rip1
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                     Raf Independent Mapk1 3 Activation
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                 Termination Of O Glycan Biosynthesis
## Interleukin 6 Family Signaling                                                                                                                                                                                                             Interleukin 6 Family Signaling
## Cellular Responses To External Stimuli                                                                                                                                                                                             Cellular Responses To External Stimuli
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch3 Activation And Transmission Of Signal To The Nucleus
## Signaling By Egfr In Cancer                                                                                                                                                                                                                   Signaling By Egfr In Cancer
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                               Constitutive Signaling By Akt1 E17k In Cancer
## Dectin 2 Family                                                                                                                                                                                                                                           Dectin 2 Family
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                 Signaling By Erbb2 In Cancer
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                               Wnt Ligand Biogenesis And Trafficking
## Sumoylation                                                                                                                                                                                                                                                   Sumoylation
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                         Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                               Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                         Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                             Cell Surface Interactions At The Vascular Wall
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                       Downregulation Of Erbb2 Signaling
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                       Ripk1 Mediated Regulated Necrosis
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                         Tnfr1 Induced Nfkappab Signaling Pathway
## Diseases Of Immune System                                                                                                                                                                                                                       Diseases Of Immune System
## Egfr Downregulation                                                                                                                                                                                                                                   Egfr Downregulation
## Perk Regulates Gene Expression                                                                                                                                                                                                             Perk Regulates Gene Expression
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                   Regulation Of Mecp2 Expression And Activity
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                             Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                           Activation Of Matrix Metalloproteinases
## Cd28 Co Stimulation                                                                                                                                                                                                                                   Cd28 Co Stimulation
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                 Plasma Lipoprotein Clearance
## Sialic Acid Metabolism                                                                                                                                                                                                                             Sialic Acid Metabolism
## Signaling By Notch2                                                                                                                                                                                                                                   Signaling By Notch2
## G Alpha Q Signalling Events                                                                                                                                                                                                                   G Alpha Q Signalling Events
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                               Regulation Of Tnfr1 Signaling
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                         Nod1 2 Signaling Pathway
## Ub Specific Processing Proteases                                                                                                                                                                                                         Ub Specific Processing Proteases
## Ca Dependent Events                                                                                                                                                                                                                                   Ca Dependent Events
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                     Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                 Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Generation Of Second Messenger Molecules                                                                                                                                                                                         Generation Of Second Messenger Molecules
## Dag And Ip3 Signaling                                                                                                                                                                                                                               Dag And Ip3 Signaling
## Transcriptional Regulation By Ventx                                                                                                                                                                                                   Transcriptional Regulation By Ventx
## Signaling By Scf Kit                                                                                                                                                                                                                                 Signaling By Scf Kit
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                             Sumoylation Of Transcription Cofactors
## Signaling By Notch                                                                                                                                                                                                                                     Signaling By Notch
## Tnf Signaling                                                                                                                                                                                                                                               Tnf Signaling
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                     Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Dap12 Interactions                                                                                                                                                                                                                                     Dap12 Interactions
## Interleukin 12 Signaling                                                                                                                                                                                                                         Interleukin 12 Signaling
## Heme Signaling                                                                                                                                                                                                                                             Heme Signaling
## Signaling By Notch3                                                                                                                                                                                                                                   Signaling By Notch3
## Signaling By Egfr                                                                                                                                                                                                                                       Signaling By Egfr
## Signaling By Erbb2                                                                                                                                                                                                                                     Signaling By Erbb2
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                             Eph Ephrin Mediated Repulsion Of Cells
## G Protein Mediated Events                                                                                                                                                                                                                       G Protein Mediated Events
## Signaling By Ptk6                                                                                                                                                                                                                                       Signaling By Ptk6
## Interleukin 12 Family Signaling                                                                                                                                                                                                           Interleukin 12 Family Signaling
## Nervous System Development                                                                                                                                                                                                                     Nervous System Development
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                             Transcriptional Activation Of Mitochondrial Biogenesis
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                 Assembly Of Collagen Fibrils And Other Multimeric Structures
## Ca2 Pathway                                                                                                                                                                                                                                                   Ca2 Pathway
## Deubiquitination                                                                                                                                                                                                                                         Deubiquitination
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                               Ncam Signaling For Neurite Out Growth
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         O Linked Glycosylation Of Mucins
## Signaling By Erbb4                                                                                                                                                                                                                                     Signaling By Erbb4
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                           Synthesis Of Substrates In N Glycan Biosythesis
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Dna Repair Genes
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                   Transcriptional Regulation By Mecp2
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                           Asymmetric Localization Of Pcp Proteins
## Collagen Degradation                                                                                                                                                                                                                                 Collagen Degradation
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With O Glycosylation Of Proteins
## Dna Methylation                                                                                                                                                                                                                                           Dna Methylation
## Rna Polymerase Ii Transcription                                                                                                                                                                                                           Rna Polymerase Ii Transcription
## Mapk Family Signaling Cascades                                                                                                                                                                                                             Mapk Family Signaling Cascades
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                 Plasma Lipoprotein Assembly Remodeling And Clearance
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                         Prc2 Methylates Histones And Dna
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                             Signaling By Tgf Beta Receptor Complex
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                     Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Ecm Proteoglycans                                                                                                                                                                                                                                       Ecm Proteoglycans
## Hemostasis                                                                                                                                                                                                                                                     Hemostasis
## Rmts Methylate Histone Arginines                                                                                                                                                                                                         Rmts Methylate Histone Arginines
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             Fceri Mediated Mapk Activation
## Collagen Formation                                                                                                                                                                                                                                     Collagen Formation
## Eph Ephrin Signaling                                                                                                                                                                                                                                 Eph Ephrin Signaling
## Interferon Gamma Signaling                                                                                                                                                                                                                     Interferon Gamma Signaling
## Opioid Signalling                                                                                                                                                                                                                                       Opioid Signalling
## Pcp Ce Pathway                                                                                                                                                                                                                                             Pcp Ce Pathway
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                 Transcriptional Regulation Of Granulopoiesis
## Unfolded Protein Response Upr                                                                                                                                                                                                               Unfolded Protein Response Upr
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                 Activation Of Nmda Receptors And Postsynaptic Events
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                   Class B 2 Secretin Family Receptors
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                       Clec7a Dectin 1 Signaling
## Mitochondrial Biogenesis                                                                                                                                                                                                                         Mitochondrial Biogenesis
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       Diseases Of Programmed Cell Death
## Interleukin 1 Signaling                                                                                                                                                                                                                           Interleukin 1 Signaling
## Signaling By Tgfb Family Members                                                                                                                                                                                                         Signaling By Tgfb Family Members
## Stimuli Sensing Channels                                                                                                                                                                                                                         Stimuli Sensing Channels
## Amyloid Fiber Formation                                                                                                                                                                                                                           Amyloid Fiber Formation
## O Linked Glycosylation                                                                                                                                                                                                                             O Linked Glycosylation
## L1cam Interactions                                                                                                                                                                                                                                     L1cam Interactions
## Tcr Signaling                                                                                                                                                                                                                                               Tcr Signaling
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                       Mhc Class Ii Antigen Presentation
## Oxidative Stress Induced Senescence                                                                                                                                                                                                   Oxidative Stress Induced Senescence
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                   Response To Elevated Platelet Cytosolic Ca2
## Death Receptor Signalling                                                                                                                                                                                                                       Death Receptor Signalling
## Degradation Of The Extracellular Matrix                                                                                                                                                                                           Degradation Of The Extracellular Matrix
## Diseases Of Glycosylation                                                                                                                                                                                                                       Diseases Of Glycosylation
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                             Beta Catenin Independent Wnt Signaling
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                         Epigenetic Regulation Of Gene Expression
## Estrogen Dependent Gene Expression                                                                                                                                                                                                     Estrogen Dependent Gene Expression
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                   Fc Epsilon Receptor Fceri Signaling
## Ion Channel Transport                                                                                                                                                                                                                               Ion Channel Transport
## Interferon Signaling                                                                                                                                                                                                                                 Interferon Signaling
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                           Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Membrane Trafficking                                                                                                                                                                                                                                 Membrane Trafficking
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                     Tcf Dependent Signaling In Response To Wnt
## Developmental Biology                                                                                                                                                                                                                               Developmental Biology
## Diseases Of Metabolism                                                                                                                                                                                                                             Diseases Of Metabolism
## Platelet Activation Signaling And Aggregation                                                                                                                                                                               Platelet Activation Signaling And Aggregation
## Chromatin Modifying Enzymes                                                                                                                                                                                                                   Chromatin Modifying Enzymes
## Transmission Across Chemical Synapses                                                                                                                                                                                               Transmission Across Chemical Synapses
## Transport Of Small Molecules                                                                                                                                                                                                                 Transport Of Small Molecules
## Vesicle Mediated Transport                                                                                                                                                                                                                     Vesicle Mediated Transport
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                 Organelle Biogenesis And Maintenance
## Asparagine N Linked Glycosylation                                                                                                                                                                                                       Asparagine N Linked Glycosylation
## Signaling By Wnt                                                                                                                                                                                                                                         Signaling By Wnt
## Transcriptional Regulation By Tp53                                                                                                                                                                                                     Transcriptional Regulation By Tp53
## Neuronal System                                                                                                                                                                                                                                           Neuronal System
## 2 Ltr Circle Formation                                                                                                                                                                                                                             2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                           A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism                                                                                                                                                                                                                                   Abacavir Metabolism
## Abacavir Transmembrane Transport                                                                                                                                                                                                         Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism                                                                                                                                                                                                       Abacavir Transport And Metabolism
## Abc Family Proteins Mediated Transport                                                                                                                                                                                             Abc Family Proteins Mediated Transport
## Abc Transporter Disorders                                                                                                                                                                                                                       Abc Transporter Disorders
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                               Abc Transporters In Lipid Homeostasis
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                         Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                   Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                               Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                   Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                             Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                 Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                       Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                   Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                         Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                               Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                   Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                               Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                   Activated Tak1 Mediates P38 Mapk Activation
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                           Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                 Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                   Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                   Activation Of Bad And Translocation To Mitochondria
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                           Activation Of Bh3 Only Proteins
## Activation Of C3 And C5                                                                                                                                                                                                                           Activation Of C3 And C5
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                   Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                 Activation Of Gene Expression By Srebf Srebp
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                 Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                             Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                       Activation Of Nima Kinases Nek9 Nek6 Nek7
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                 Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                 Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                 Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1                                                                                                                                                                                                                                     Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                           Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells                                                                                                                                                                                                                 Activation Of Ras In B Cells
## Activation Of Smo                                                                                                                                                                                                                                       Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                               Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade                                                                                                                                                                                   Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex                                                                                                                                                                                       Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                 Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors                                                                                                                                                                                                                 Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                 Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                 Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                 Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                 Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions                                                                                                                                                                                                           Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                       Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                     Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                   Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors                                                                                                                                                                                                                                               Adrenoceptors
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                 Advanced Glycosylation Endproduct Receptor Signaling
## Aflatoxin Activation And Detoxification                                                                                                                                                                                           Aflatoxin Activation And Detoxification
## Aggrephagy                                                                                                                                                                                                                                                     Aggrephagy
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                       Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins                                                                                                                                                                                                                                           Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                     Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                 Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                         Alpha Protein Kinase 1 Signaling Pathway
## Alternative Complement Activation                                                                                                                                                                                                       Alternative Complement Activation
## Amine Ligand Binding Receptors                                                                                                                                                                                                             Amine Ligand Binding Receptors
## Amino Acid Conjugation                                                                                                                                                                                                                             Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                           Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                         Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation                                                                                                                                                                                                                     Anchoring Fibril Formation
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                     Anchoring Of The Basal Body To The Plasma Membrane
## Androgen Biosynthesis                                                                                                                                                                                                                               Androgen Biosynthesis
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                         Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                         Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Antigen Processing Cross Presentation                                                                                                                                                                                               Antigen Processing Cross Presentation
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                         Antigen Processing Ubiquitination Proteasome Degradation
## Antimicrobial Peptides                                                                                                                                                                                                                             Antimicrobial Peptides
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                   Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                 Apc C Cdc20 Mediated Degradation Of Cyclin B
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                         Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                       Apc C Mediated Degradation Of Cell Cycle Proteins
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                           Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                             Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                           Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptosis                                                                                                                                                                                                                                                       Apoptosis
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                   Apoptosis Induced Dna Fragmentation
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                 Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                           Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Execution Phase                                                                                                                                                                                                                       Apoptotic Execution Phase
## Apoptotic Factor Mediated Response                                                                                                                                                                                                     Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport                                                                                                                                                                                                                 Aquaporin Mediated Transport
## Arachidonate Production From Dag                                                                                                                                                                                                         Arachidonate Production From Dag
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   Arachidonic Acid Metabolism
## Arms Mediated Activation                                                                                                                                                                                                                         Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                 Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                   Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                         Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                         Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of The Hiv Virion                                                                                                                                                                                                                     Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                         Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                           Assembly Of The Pre Replicative Complex
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                         Association Of Tric Cct With Target Proteins During Biosynthesis
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                       Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                 Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry                                                                                                                                                                                                                                 Attachment And Entry
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                         Attachment Of Gpi Anchor To Upar
## Attenuation Phase                                                                                                                                                                                                                                       Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                       Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## Aurka Activation By Tpx2                                                                                                                                                                                                                         Aurka Activation By Tpx2
## Autophagy                                                                                                                                                                                                                                                       Autophagy
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                   B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair                                                                                                                                                                                                                                 Base Excision Repair
## Base Excision Repair Ap Site Formation                                                                                                                                                                                             Base Excision Repair Ap Site Formation
## Basigin Interactions                                                                                                                                                                                                                                 Basigin Interactions
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                       Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                 Beta Catenin Phosphorylation Cascade
## Beta Defensins                                                                                                                                                                                                                                             Beta Defensins
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                 Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                     Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                             Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                       Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                             Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                         Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                               Beta Oxidation Of Very Long Chain Fatty Acids
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                 Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Bicarbonate Transporters                                                                                                                                                                                                                         Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                     Bile Acid And Bile Salt Metabolism
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                 Binding And Uptake Of Ligands By Scavenger Receptors
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                     Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Biological Oxidations                                                                                                                                                                                                                               Biological Oxidations
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                         Biosynthesis Of Epa Derived Spms
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                       Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins                                                                                                                                                                                                                         Biosynthesis Of Maresins
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                           Biosynthesis Of Specialized Proresolving Mediators Spms
## Biotin Transport And Metabolism                                                                                                                                                                                                           Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis                                                                                                                                                                                                         Blood Group Systems Biosynthesis
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                 Branched Chain Amino Acid Catabolism
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                 Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                   Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                 Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels                                                                                                                                                                                                                         Ca2 Activated K Channels
## Calcineurin Activates Nfat                                                                                                                                                                                                                     Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                         Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                   Carboxyterminal Post Translational Modifications Of Tubulin
## Cardiac Conduction                                                                                                                                                                                                                                     Cardiac Conduction
## Cargo Concentration In The Er                                                                                                                                                                                                               Cargo Concentration In The Er
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                               Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism                                                                                                                                                                                                                                 Carnitine Metabolism
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                         Caspase Activation Via Death Receptors In The Presence Of Ligand
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                 Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                               Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                     Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                             Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                           Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                 Cd22 Mediated Bcr Regulation
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                     Cdc42 Gtpase Cycle
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                 Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication                                                                                                                                                                                                                           Cell Cell Communication
## Cell Cell Junction Organization                                                                                                                                                                                                           Cell Cell Junction Organization
## Cell Cycle                                                                                                                                                                                                                                                     Cell Cycle
## Cell Cycle Checkpoints                                                                                                                                                                                                                             Cell Cycle Checkpoints
## Cell Cycle Mitotic                                                                                                                                                                                                                                     Cell Cycle Mitotic
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                               Cell Death Signalling Via Nrage Nrif And Nade
## Cell Extracellular Matrix Interactions                                                                                                                                                                                             Cell Extracellular Matrix Interactions
## Cell Junction Organization                                                                                                                                                                                                                     Cell Junction Organization
## Cellular Hexose Transport                                                                                                                                                                                                                       Cellular Hexose Transport
## Cellular Response To Chemical Stress                                                                                                                                                                                                 Cellular Response To Chemical Stress
## Cellular Response To Heat Stress                                                                                                                                                                                                         Cellular Response To Heat Stress
## Cellular Response To Hypoxia                                                                                                                                                                                                                 Cellular Response To Hypoxia
## Cellular Response To Starvation                                                                                                                                                                                                           Cellular Response To Starvation
## Cgmp Effects                                                                                                                                                                                                                                                 Cgmp Effects
## Chaperone Mediated Autophagy                                                                                                                                                                                                                 Chaperone Mediated Autophagy
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                               Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Chl1 Interactions                                                                                                                                                                                                                                       Chl1 Interactions
## Cholesterol Biosynthesis                                                                                                                                                                                                                         Cholesterol Biosynthesis
## Choline Catabolism                                                                                                                                                                                                                                     Choline Catabolism
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                         Chondroitin Sulfate Biosynthesis
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                           Chondroitin Sulfate Dermatan Sulfate Metabolism
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                     Chrebp Activates Metabolic Gene Expression
## Chromosome Maintenance                                                                                                                                                                                                                             Chromosome Maintenance
## Chylomicron Assembly                                                                                                                                                                                                                                 Chylomicron Assembly
## Chylomicron Clearance                                                                                                                                                                                                                               Chylomicron Clearance
## Chylomicron Remodeling                                                                                                                                                                                                                             Chylomicron Remodeling
## Cilium Assembly                                                                                                                                                                                                                                           Cilium Assembly
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                 Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                 Class I Mhc Mediated Antigen Processing Presentation
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                   Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                           Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                     Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis                                                                                                                                                                                                                           Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                             Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                   Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization                                                                                                                                                                                                                 Collagen Chain Trimerization
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                           Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                     Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complement Cascade                                                                                                                                                                                                                                     Complement Cascade
## Complex I Biogenesis                                                                                                                                                                                                                                 Complex I Biogenesis
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                         Condensation Of Prometaphase Chromosomes
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                 Condensation Of Prophase Chromosomes
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                 Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                               Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                     Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                         Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                     Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                               Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                           Copi Independent Golgi To Er Retrograde Traffic
## Copi Mediated Anterograde Transport                                                                                                                                                                                                   Copi Mediated Anterograde Transport
## Copii Mediated Vesicle Transport                                                                                                                                                                                                         Copii Mediated Vesicle Transport
## Creatine Metabolism                                                                                                                                                                                                                                   Creatine Metabolism
## Creation Of C4 And C2 Activators                                                                                                                                                                                                         Creation Of C4 And C2 Activators
## Creb3 Factors Activate Genes                                                                                                                                                                                                                 Creb3 Factors Activate Genes
## Cristae Formation                                                                                                                                                                                                                                       Cristae Formation
## Crmps In Sema3a Signaling                                                                                                                                                                                                                       Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                           Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                     Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                         Crosslinking Of Collagen Fibrils
## Cs Ds Degradation                                                                                                                                                                                                                                       Cs Ds Degradation
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                           Cyclin A B1 B2 Associated Events During G2 M Transition
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                         Cyclin A Cdk2 Associated Events At S Phase Entry
## Cyclin D Associated Events In G1                                                                                                                                                                                                         Cyclin D Associated Events In G1
## Cyp2e1 Reactions                                                                                                                                                                                                                                         Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                         Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                     Cytochrome P450 Arranged By Substrate Type
## Cytoprotection By Hmox1                                                                                                                                                                                                                           Cytoprotection By Hmox1
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                             Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                         Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                               Cytosolic Trna Aminoacylation
## Dap12 Signaling                                                                                                                                                                                                                                           Dap12 Signaling
## Darpp 32 Events                                                                                                                                                                                                                                           Darpp 32 Events
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                       Dcc Mediated Attractive Signaling
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                           Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                         Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                     Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna                                                                                                                                                                                                                               Deadenylation Of Mrna
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                             Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                   Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                   Defective B4galt7 Causes Eds Progeroid Type
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                               Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                 Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                               Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                               Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                       Defective Ext2 Causes Exostoses 2
## Defective F9 Activation                                                                                                                                                                                                                           Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                           Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                       Defective Factor Viii Causes Hemophilia A
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                   Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                       Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                         Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                   Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                     Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                         Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Defensins                                                                                                                                                                                                                                                       Defensins
## Degradation Of Axin                                                                                                                                                                                                                                   Degradation Of Axin
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                             Degradation Of Beta Catenin By The Destruction Complex
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                         Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl                                                                                                                                                                                                                                     Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                               Degradation Of Gli1 By The Proteasome
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                             Depolymerisation Of The Nuclear Lamina
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                         Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                   Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                               Dermatan Sulfate Biosynthesis
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                       Detoxification Of Reactive Oxygen Species
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                               Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion                                                                                                                                                                                                                                                       Digestion
## Digestion And Absorption                                                                                                                                                                                                                         Digestion And Absorption
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                       Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid                                                                                                                                                                                                                     Digestion Of Dietary Lipid
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                             Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                               Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                               Diseases Associated With Glycosylation Precursor Biosynthesis
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                             Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair                                                                                                                                                                                                         Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                   Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair                                                                                                                                                                                                                             Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                           Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                             Diseases Of Mitotic Cell Cycle
## Disinhibition Of Snare Formation                                                                                                                                                                                                         Disinhibition Of Snare Formation
## Disorders Of Transmembrane Transporters                                                                                                                                                                                           Disorders Of Transmembrane Transporters
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                         Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass                                                                                                                                                                                                                                       Dna Damage Bypass
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                         Dna Damage Recognition In Gg Ner
## Dna Damage Reversal                                                                                                                                                                                                                                   Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                               Dna Damage Telomere Stress Induced Senescence
## Dna Double Strand Break Repair                                                                                                                                                                                                             Dna Double Strand Break Repair
## Dna Double Strand Break Response                                                                                                                                                                                                         Dna Double Strand Break Response
## Dna Repair                                                                                                                                                                                                                                                     Dna Repair
## Dna Replication                                                                                                                                                                                                                                           Dna Replication
## Dna Replication Initiation                                                                                                                                                                                                                     Dna Replication Initiation
## Dna Replication Pre Initiation                                                                                                                                                                                                             Dna Replication Pre Initiation
## Dna Strand Elongation                                                                                                                                                                                                                               Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                           Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors                                                                                                                                                                                                                                     Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                           Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                       Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                         Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                               Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signal Transduction                                                                                                                                                                                                             Downstream Signal Transduction
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                     Downstream Signaling Events Of B Cell Receptor Bcr
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr4
## Dscam Interactions                                                                                                                                                                                                                                     Dscam Interactions
## Dual Incision In Gg Ner                                                                                                                                                                                                                           Dual Incision In Gg Ner
## Dual Incision In Tc Ner                                                                                                                                                                                                                           Dual Incision In Tc Ner
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                   E2f Enabled Inhibition Of Pre Replication Complex Formation
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                     E2f Mediated Regulation Of Dna Replication
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                       E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                               Early Phase Of Hiv Life Cycle
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                     Effects Of Pip2 Hydrolysis
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                             Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                   Eicosanoid Ligand Binding Receptors
## Eicosanoids                                                                                                                                                                                                                                                   Eicosanoids
## Elastic Fibre Formation                                                                                                                                                                                                                           Elastic Fibre Formation
## Electric Transmission Across Gap Junctions                                                                                                                                                                                     Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                       Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols                                                                                                                                                                                                                                     Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                             Endosomal Sorting Complex Required For Transport Escrt
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                     Endosomal Vacuolar Pathway
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                         Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Enos Activation                                                                                                                                                                                                                                           Enos Activation
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                     Epha Mediated Growth Cone Collapse
## Ephb Mediated Forward Signaling                                                                                                                                                                                                           Ephb Mediated Forward Signaling
## Ephrin Signaling                                                                                                                                                                                                                                         Ephrin Signaling
## Er Quality Control Compartment Erqc                                                                                                                                                                                                   Er Quality Control Compartment Erqc
## Er To Golgi Anterograde Transport                                                                                                                                                                                                       Er To Golgi Anterograde Transport
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                   Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets                                                                                                                                                                                                                                         Erk Mapk Targets
## Erks Are Inactivated                                                                                                                                                                                                                                 Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                             Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                             Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                           Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                   Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras                                                                                                                                                                                                                 Erythropoietin Activates Ras
## Erythropoietin Activates Stat5                                                                                                                                                                                                             Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                     Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis                                                                                                                                                                                                                               Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                   Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation                                                                                                                                                                                                                                       Ethanol Oxidation
## Eukaryotic Translation Elongation                                                                                                                                                                                                       Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation                                                                                                                                                                                                       Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                           Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres                                                                                                                                                                                                                             Extension Of Telomeres
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Extrinsic Pathway Of Fibrin Clot Formation
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                               Factors Involved In Megakaryocyte Development And Platelet Production
## Fanconi Anemia Pathway                                                                                                                                                                                                                             Fanconi Anemia Pathway
## Fasl Cd95l Signaling                                                                                                                                                                                                                                 Fasl Cd95l Signaling
## Fatty Acid Metabolism                                                                                                                                                                                                                               Fatty Acid Metabolism
## Fatty Acids                                                                                                                                                                                                                                                   Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                   Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                     Fbxw7 Mutants And Notch1 In Cancer
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                         Fceri Mediated Ca 2 Mobilization
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                           Fceri Mediated Nf Kb Activation
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                 Fcgamma Receptor Fcgr Dependent Phagocytosis
## Fcgr Activation                                                                                                                                                                                                                                           Fcgr Activation
## Fertilization                                                                                                                                                                                                                                               Fertilization
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr1 Ligand Binding And Activation
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr1 Mutant Receptor Activation
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                     Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                 Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                             Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling                                                                                                                                                                                                                                             Flt3 Signaling
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                               Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease                                                                                                                                                                                                                       Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                       Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                 Folding Of Actin By Cct Tric
## Formation Of Apoptosome                                                                                                                                                                                                                           Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                       Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                       Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                           Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                     Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                 Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                         Formation Of Tc Ner Pre Incision Complex
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                       Formation Of The Beta Catenin Tcf Transactivating Complex
## Formation Of The Cornified Envelope                                                                                                                                                                                                   Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex                                                                                                                                                                                       Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                             Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                       Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                 Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription                                                                                                                                                                                                                   Foxo Mediated Transcription
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Cycle Genes
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Death Genes
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                 Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors                                                                                                                                                                                                                       Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                   Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr4 Signaling
## Fructose Catabolism                                                                                                                                                                                                                                   Fructose Catabolism
## Fructose Metabolism                                                                                                                                                                                                                                   Fructose Metabolism
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                           G Alpha 12 13 Signalling Events
## G Alpha S Signalling Events                                                                                                                                                                                                                   G Alpha S Signalling Events
## G Alpha Z Signalling Events                                                                                                                                                                                                                   G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                               G Beta Gamma Signalling Through Cdc42
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                       G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation                                                                                                                                                                                                                                 G Protein Activation
## G Protein Beta Gamma Signalling                                                                                                                                                                                                           G Protein Beta Gamma Signalling
## G0 And Early G1                                                                                                                                                                                                                                           G0 And Early G1
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   G1 S Dna Damage Checkpoints
## G1 S Specific Transcription                                                                                                                                                                                                                   G1 S Specific Transcription
## G2 M Checkpoints                                                                                                                                                                                                                                         G2 M Checkpoints
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                     G2 M Dna Damage Checkpoint
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                           G2 M Dna Replication Checkpoint
## G2 Phase                                                                                                                                                                                                                                                         G2 Phase
## Gaba B Receptor Activation                                                                                                                                                                                                                     Gaba B Receptor Activation
## Gaba Receptor Activation                                                                                                                                                                                                                         Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                           Gaba Synthesis Release Reuptake And Degradation
## Galactose Catabolism                                                                                                                                                                                                                                 Galactose Catabolism
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                   Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                               Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                           Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly                                                                                                                                                                                                                               Gap Junction Assembly
## Gap Junction Degradation                                                                                                                                                                                                                         Gap Junction Degradation
## Gap Junction Trafficking And Regulation                                                                                                                                                                                           Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                           Gdp Fucose Biosynthesis
## Gene Silencing By Rna                                                                                                                                                                                                                               Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                   Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                           Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                         Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                     Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors                                                                                                                                                                                                             Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   Glucocorticoid Biosynthesis
## Gluconeogenesis                                                                                                                                                                                                                                           Gluconeogenesis
## Glucose Metabolism                                                                                                                                                                                                                                     Glucose Metabolism
## Glucuronidation                                                                                                                                                                                                                                           Glucuronidation
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                     Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                         Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation                                                                                                                                                                                                                           Glutathione Conjugation
## Glutathione Synthesis And Recycling                                                                                                                                                                                                   Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                         Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism                                                                                                                                                                                                             Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                       Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism                                                                                                                                                                                                                                   Glycogen Metabolism
## Glycogen Storage Diseases                                                                                                                                                                                                                       Glycogen Storage Diseases
## Glycogen Synthesis                                                                                                                                                                                                                                     Glycogen Synthesis
## Glycolysis                                                                                                                                                                                                                                                     Glycolysis
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                 Glycosaminoglycan Metabolism
## Glycosphingolipid Metabolism                                                                                                                                                                                                                 Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                               Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                   Golgi Associated Vesicle Biogenesis
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                   Golgi Cisternae Pericentriolar Stack Reorganization
## Golgi To Er Retrograde Transport                                                                                                                                                                                                         Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                           Gp1b Ix V Activation Signalling
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                         Gpvi Mediated Activation Cascade
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                       Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb7 Events In Erbb2 Signaling
## Growth Hormone Receptor Signaling                                                                                                                                                                                                       Growth Hormone Receptor Signaling
## Hats Acetylate Histones                                                                                                                                                                                                                           Hats Acetylate Histones
## Hcmv Late Events                                                                                                                                                                                                                                         Hcmv Late Events
## Hdacs Deacetylate Histones                                                                                                                                                                                                                     Hdacs Deacetylate Histones
## Hdl Assembly                                                                                                                                                                                                                                                 Hdl Assembly
## Hdl Clearance                                                                                                                                                                                                                                               Hdl Clearance
## Hdl Remodeling                                                                                                                                                                                                                                             Hdl Remodeling
## Hdms Demethylate Histones                                                                                                                                                                                                                       Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                         Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                       Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                           Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                     Hedgehog Ligand Biogenesis
## Hedgehog Off State                                                                                                                                                                                                                                     Hedgehog Off State
## Hedgehog On State                                                                                                                                                                                                                                       Hedgehog On State
## Heme Biosynthesis                                                                                                                                                                                                                                       Heme Biosynthesis
## Heme Degradation                                                                                                                                                                                                                                         Heme Degradation
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                       Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                     Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                           Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                             Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism                                                                                                                                                                                                                                 Histidine Catabolism
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                     Hiv Elongation Arrest And Recovery
## Hiv Infection                                                                                                                                                                                                                                               Hiv Infection
## Hiv Life Cycle                                                                                                                                                                                                                                             Hiv Life Cycle
## Hiv Transcription Elongation                                                                                                                                                                                                                 Hiv Transcription Elongation
## Hiv Transcription Initiation                                                                                                                                                                                                                 Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                     Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair                                                                                                                                                                                                                         Homology Directed Repair
## Hormone Ligand Binding Receptors                                                                                                                                                                                                         Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors                                                                                                                                                                                                         Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis                                                                                                                                                                                                                                   Hs Gag Biosynthesis
## Hs Gag Degradation                                                                                                                                                                                                                                     Hs Gag Degradation
## Hsf1 Activation                                                                                                                                                                                                                                           Hsf1 Activation
## Hsf1 Dependent Transactivation                                                                                                                                                                                                             Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                           Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                 Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                     Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism                                                                                                                                                                                                                               Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                       Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc                                                                                                                                                                                                                                       Hydrolysis Of Lpc
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                 Ikba Variant Leads To Eda Id
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                           Il 6 Type Cytokine Receptor Ligand Interactions
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                             Inactivation Of Cdc42 And Rac1
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                 Inactivation Of Csf3 G Csf Signaling
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                               Incretin Synthesis Secretion And Inactivation
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                       Infection With Mycobacterium Tuberculosis
## Influenza Infection                                                                                                                                                                                                                                   Influenza Infection
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                   Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                           Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                   Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Initial Triggering Of Complement                                                                                                                                                                                                         Initial Triggering Of Complement
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                               Initiation Of Nuclear Envelope Ne Reformation
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                               Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                 Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism                                                                                                                                                                                                               Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                   Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing                                                                                                                                                                                                                                     Insulin Processing
## Insulin Receptor Recycling                                                                                                                                                                                                                     Insulin Receptor Recycling
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                   Insulin Receptor Signalling Cascade
## Integration Of Energy Metabolism                                                                                                                                                                                                         Integration Of Energy Metabolism
## Integration Of Provirus                                                                                                                                                                                                                           Integration Of Provirus
## Integrin Cell Surface Interactions                                                                                                                                                                                                     Integrin Cell Surface Interactions
## Integrin Signaling                                                                                                                                                                                                                                     Integrin Signaling
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                   Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                               Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                           Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                           Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                     Interconversion Of Nucleotide Di And Triphosphates
## Interferon Alpha Beta Signaling                                                                                                                                                                                                           Interferon Alpha Beta Signaling
## Interleukin 15 Signaling                                                                                                                                                                                                                         Interleukin 15 Signaling
## Interleukin 2 Family Signaling                                                                                                                                                                                                             Interleukin 2 Family Signaling
## Interleukin 2 Signaling                                                                                                                                                                                                                           Interleukin 2 Signaling
## Interleukin 20 Family Signaling                                                                                                                                                                                                           Interleukin 20 Family Signaling
## Interleukin 21 Signaling                                                                                                                                                                                                                         Interleukin 21 Signaling
## Interleukin 23 Signaling                                                                                                                                                                                                                         Interleukin 23 Signaling
## Interleukin 27 Signaling                                                                                                                                                                                                                         Interleukin 27 Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                         Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Interleukin 35 Signalling                                                                                                                                                                                                                       Interleukin 35 Signalling
## Interleukin 36 Pathway                                                                                                                                                                                                                             Interleukin 36 Pathway
## Interleukin 37 Signaling                                                                                                                                                                                                                         Interleukin 37 Signaling
## Interleukin 7 Signaling                                                                                                                                                                                                                           Interleukin 7 Signaling
## Interleukin 9 Signaling                                                                                                                                                                                                                           Interleukin 9 Signaling
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                     Interleukin Receptor Shc Signaling
## Intestinal Absorption                                                                                                                                                                                                                               Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                             Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic                                                                                                                                                                                                                                   Intra Golgi Traffic
## Intraflagellar Transport                                                                                                                                                                                                                         Intraflagellar Transport
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                           Intrinsic Pathway For Apoptosis
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels                                                                                                                                                                                                             Inwardly Rectifying K Channels
## Ion Homeostasis                                                                                                                                                                                                                                           Ion Homeostasis
## Ion Transport By P Type Atpases                                                                                                                                                                                                           Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                         Ionotropic Activity Of Kainate Receptors
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                     Irak1 Recruits Ikk Complex
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                       Irak2 Mediated Activation Of Tak1 Complex
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                           Irak4 Deficiency Tlr2 4
## Ire1alpha Activates Chaperones                                                                                                                                                                                                             Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                             Irf3 Mediated Activation Of Type 1 Ifn
## Iron Uptake And Transport                                                                                                                                                                                                                       Iron Uptake And Transport
## Irs Activation                                                                                                                                                                                                                                             Irs Activation
## Irs Mediated Signalling                                                                                                                                                                                                                           Irs Mediated Signalling
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                       Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Josephin Domain Dubs                                                                                                                                                                                                                                 Josephin Domain Dubs
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                 Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation                                                                                                                                                                                                                   Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                     Keratan Sulfate Keratin Metabolism
## Keratinization                                                                                                                                                                                                                                             Keratinization
## Ketone Body Metabolism                                                                                                                                                                                                                             Ketone Body Metabolism
## Kinesins                                                                                                                                                                                                                                                         Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                             Ksrp Khsrp Binds And Destabilizes Mrna
## Lagging Strand Synthesis                                                                                                                                                                                                                         Lagging Strand Synthesis
## Laminin Interactions                                                                                                                                                                                                                                 Laminin Interactions
## Late Endosomal Microautophagy                                                                                                                                                                                                               Late Endosomal Microautophagy
## Lectin Pathway Of Complement Activation                                                                                                                                                                                           Lectin Pathway Of Complement Activation
## Leukotriene Receptors                                                                                                                                                                                                                               Leukotriene Receptors
## Lgi Adam Interactions                                                                                                                                                                                                                               Lgi Adam Interactions
## Ligand Receptor Interactions                                                                                                                                                                                                                 Ligand Receptor Interactions
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   Linoleic Acid La Metabolism
## Lipid Particle Organization                                                                                                                                                                                                                   Lipid Particle Organization
## Lipophagy                                                                                                                                                                                                                                                       Lipophagy
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                 Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation                                                                                                                                                                                                                             Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                     Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                               Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                             Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                             Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                   Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism                                                                                                                                                                                                                                       Lysine Catabolism
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                     Lysosphingolipid And Lpa Receptors
## M Phase                                                                                                                                                                                                                                                           M Phase
## Map2k And Mapk Activation                                                                                                                                                                                                                       Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                         Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                               Mapk6 Mapk4 Signaling
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                               Mastl Facilitates Mitotic Progression
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   Maturation Of Nucleoprotein
## Maturation Of Protein 3a                                                                                                                                                                                                                         Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 2 Spike Protein
## Meiosis                                                                                                                                                                                                                                                           Meiosis
## Meiotic Recombination                                                                                                                                                                                                                               Meiotic Recombination
## Meiotic Synapsis                                                                                                                                                                                                                                         Meiotic Synapsis
## Melanin Biosynthesis                                                                                                                                                                                                                                 Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                         Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                 Met Activates Ptk2 Signaling
## Met Activates Ptpn11                                                                                                                                                                                                                                 Met Activates Ptpn11
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   Met Activates Rap1 And Rac1
## Met Activates Ras Signaling                                                                                                                                                                                                                   Met Activates Ras Signaling
## Met Interacts With Tns Proteins                                                                                                                                                                                                           Met Interacts With Tns Proteins
## Met Promotes Cell Motility                                                                                                                                                                                                                     Met Promotes Cell Motility
## Met Receptor Activation                                                                                                                                                                                                                           Met Receptor Activation
## Met Receptor Recycling                                                                                                                                                                                                                             Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                   Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                 Metabolism Of Amine Derived Hormones
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                       Metabolism Of Amino Acids And Derivatives
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                               Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   Metabolism Of Carbohydrates
## Metabolism Of Cofactors                                                                                                                                                                                                                           Metabolism Of Cofactors
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                     Metabolism Of Fat Soluble Vitamins
## Metabolism Of Folate And Pterines                                                                                                                                                                                                       Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                         Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Lipids                                                                                                                                                                                                                                 Metabolism Of Lipids
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                       Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Metabolism Of Nucleotides                                                                                                                                                                                                                       Metabolism Of Nucleotides
## Metabolism Of Polyamines                                                                                                                                                                                                                         Metabolism Of Polyamines
## Metabolism Of Porphyrins                                                                                                                                                                                                                         Metabolism Of Porphyrins
## Metabolism Of Rna                                                                                                                                                                                                                                       Metabolism Of Rna
## Metabolism Of Steroid Hormones                                                                                                                                                                                                             Metabolism Of Steroid Hormones
## Metabolism Of Steroids                                                                                                                                                                                                                             Metabolism Of Steroids
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                 Metabolism Of Vitamins And Cofactors
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                     Metabolism Of Water Soluble Vitamins And Cofactors
## Metal Ion Slc Transporters                                                                                                                                                                                                                     Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                               Metal Sequestration By Antimicrobial Proteins
## Metalloprotease Dubs                                                                                                                                                                                                                                 Metalloprotease Dubs
## Metallothioneins Bind Metals                                                                                                                                                                                                                 Metallothioneins Bind Metals
## Methionine Salvage Pathway                                                                                                                                                                                                                     Methionine Salvage Pathway
## Methylation                                                                                                                                                                                                                                                   Methylation
## Microrna Mirna Biogenesis                                                                                                                                                                                                                       Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                             Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle                                                                                                                                                                                                                                       Miro Gtpase Cycle
## Miscellaneous Substrates                                                                                                                                                                                                                         Miscellaneous Substrates
## Miscellaneous Transport And Binding Events                                                                                                                                                                                     Miscellaneous Transport And Binding Events
## Mismatch Repair                                                                                                                                                                                                                                           Mismatch Repair
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                   Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                           Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                         Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                     Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                 Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import                                                                                                                                                                                                                 Mitochondrial Protein Import
## Mitochondrial Translation                                                                                                                                                                                                                       Mitochondrial Translation
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                       Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling                                                                                                                                                                                                                         Mitochondrial Uncoupling
## Mitophagy                                                                                                                                                                                                                                                       Mitophagy
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                 Mitotic G1 Phase And G1 S Transition
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                             Mitotic G2 G2 M Phases
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                             Mitotic Metaphase And Anaphase
## Mitotic Prometaphase                                                                                                                                                                                                                                 Mitotic Prometaphase
## Mitotic Prophase                                                                                                                                                                                                                                         Mitotic Prophase
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                     Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                               Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                           Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres                                                                                                                                                                                         Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                         Molybdenum Cofactor Biosynthesis
## Mrna Capping                                                                                                                                                                                                                                                 Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing                                                                                                                                                                                                                                                 Mrna Editing
## Mrna Editing C To U Conversion                                                                                                                                                                                                             Mrna Editing C To U Conversion
## Mrna Splicing                                                                                                                                                                                                                                               Mrna Splicing
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   Mrna Splicing Minor Pathway
## Mtor Signalling                                                                                                                                                                                                                                           Mtor Signalling
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                     Mtorc1 Mediated Signalling
## Mucopolysaccharidoses                                                                                                                                                                                                                               Mucopolysaccharidoses
## Multifunctional Anion Exchangers                                                                                                                                                                                                         Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                     Muscarinic Acetylcholine Receptors
## Muscle Contraction                                                                                                                                                                                                                                     Muscle Contraction
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                 Myoclonic Epilepsy Of Lafora
## Myogenesis                                                                                                                                                                                                                                                     Myogenesis
## N Glycan Antennae Elongation                                                                                                                                                                                                                 N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                             N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                       N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                   N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                               Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling                                                                                                                                                                                                           Nade Modulates Death Signalling
## Ncam1 Interactions                                                                                                                                                                                                                                     Ncam1 Interactions
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                 Nectin Necl Trans Heterodimerization
## Neddylation                                                                                                                                                                                                                                                   Neddylation
## Nef And Signal Transduction                                                                                                                                                                                                                   Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                     Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                             Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Negative Epigenetic Regulation Of Rrna Expression
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                 Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                     Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3                                                                                                                                                                                                                   Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                   Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity                                                                                                                                                                                                   Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                   Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                           Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                     Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                 Negative Regulators Of Ddx58 Ifih1 Signaling
## Nephrin Family Interactions                                                                                                                                                                                                                   Nephrin Family Interactions
## Netrin 1 Signaling                                                                                                                                                                                                                                     Netrin 1 Signaling
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                       Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins                                                                                                                                                                                                                       Neurexins And Neuroligins
## Neurofascin Interactions                                                                                                                                                                                                                         Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                   Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance                                                                                                                                                                                                                     Neurotransmitter Clearance
## Neurotransmitter Release Cycle                                                                                                                                                                                                             Neurotransmitter Release Cycle
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                         Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                           Nf Kb Is Activated And Signals Survival
## Ngf Independant Trka Activation                                                                                                                                                                                                           Ngf Independant Trka Activation
## Nicotinamide Salvaging                                                                                                                                                                                                                             Nicotinamide Salvaging
## Nicotinate Metabolism                                                                                                                                                                                                                               Nicotinate Metabolism
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                       Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                             Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3                                                                                                                                                                                                       Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej                                                                                                                                                                                                             Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                               Norepinephrine Neurotransmitter Release Cycle
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                       Nostrin Mediated Enos Trafficking
## Notch Hlh Transcription Pathway                                                                                                                                                                                                           Notch Hlh Transcription Pathway
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch1 Intracellular Domain Regulates Transcription
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                     Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                             Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                     Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                               Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                           Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrage Signals Death Through Jnk                                                                                                                                                                                                           Nrage Signals Death Through Jnk
## Nrcam Interactions                                                                                                                                                                                                                                     Nrcam Interactions
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                         Nrif Signals Cell Death From The Nucleus
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                               Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                 Ntrk2 Activates Rac1
## Nuclear Envelope Breakdown                                                                                                                                                                                                                     Nuclear Envelope Breakdown
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                             Nuclear Envelope Ne Reassembly
## Nuclear Import Of Rev Protein                                                                                                                                                                                                               Nuclear Import Of Rev Protein
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                 Nuclear Pore Complex Npc Disassembly
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                             Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                     Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis                                                                                                                                                                                                                           Nucleobase Biosynthesis
## Nucleobase Catabolism                                                                                                                                                                                                                               Nucleobase Catabolism
## Nucleotide Excision Repair                                                                                                                                                                                                                     Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                 Nucleotide Like Purinergic Receptors
## Nucleotide Salvage                                                                                                                                                                                                                                     Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                       O Glycosylation Of Tsr Domain Containing Proteins
## Oas Antiviral Response                                                                                                                                                                                                                             Oas Antiviral Response
## Olfactory Signaling Pathway                                                                                                                                                                                                                   Olfactory Signaling Pathway
## Oncogene Induced Senescence                                                                                                                                                                                                                   Oncogene Induced Senescence
## Oncogenic Mapk Signaling                                                                                                                                                                                                                         Oncogenic Mapk Signaling
## Opsins                                                                                                                                                                                                                                                             Opsins
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                           Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport                                                                                                                                                                                                                           Organic Anion Transport
## Organic Anion Transporters                                                                                                                                                                                                                     Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                       Organic Cation Anion Zwitterion Transport
## Organic Cation Transport                                                                                                                                                                                                                         Organic Cation Transport
## Other Interleukin Signaling                                                                                                                                                                                                                   Other Interleukin Signaling
## Other Semaphorin Interactions                                                                                                                                                                                                               Other Semaphorin Interactions
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                             Ovarian Tumor Domain Proteases
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                           P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors                                                                                                                                                                                                                                               P2y Receptors
## P38mapk Events                                                                                                                                                                                                                                             P38mapk Events
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                 P75 Ntr Receptor Mediated Signalling
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                             P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                 P75ntr Recruits Signalling Complexes
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                               P75ntr Regulates Axonogenesis
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                         P75ntr Signals Via Nf Kb
## Parasite Infection                                                                                                                                                                                                                                     Parasite Infection
## Passive Transport By Aquaporins                                                                                                                                                                                                           Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                             Pcna Dependent Long Patch Base Excision Repair
## Pecam1 Interactions                                                                                                                                                                                                                                   Pecam1 Interactions
## Pentose Phosphate Pathway                                                                                                                                                                                                                       Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                 Peptide Hormone Biosynthesis
## Peptide Hormone Metabolism                                                                                                                                                                                                                     Peptide Hormone Metabolism
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                 Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import                                                                                                                                                                                                                     Peroxisomal Protein Import
## Pexophagy                                                                                                                                                                                                                                                       Pexophagy
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                 Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                         Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase                                                                                                                                                                                                                               Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                 Phase 3 Rapid Repolarisation
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                     Phase 4 Resting Membrane Potential
## Phase I Functionalization Of Compounds                                                                                                                                                                                             Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                       Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                               Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism                                                                                                                                                                                                                         Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                               Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                     Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism                                                                                                                                                                                                                           Phospholipid Metabolism
## Phosphorylation Of Emi1                                                                                                                                                                                                                           Phosphorylation Of Emi1
## Phosphorylation Of The Apc C                                                                                                                                                                                                                 Phosphorylation Of The Apc C
## Physiological Factors                                                                                                                                                                                                                               Physiological Factors
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr4
## Pi Metabolism                                                                                                                                                                                                                                               Pi Metabolism
## Pi3k Akt Activation                                                                                                                                                                                                                                   Pi3k Akt Activation
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                           Pi5p Regulates Tp53 Acetylation
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                               Pink1 Prkn Mediated Mitophagy
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                               Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling                                                                                                                                                                                               Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                               Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                           Pkmts Methylate Histone Lysines
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   Plasma Lipoprotein Assembly
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                               Plasma Lipoprotein Remodeling
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                               Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation                                                                                                                                                                                                   Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis                                                                                                                                                                                                                 Platelet Calcium Homeostasis
## Platelet Homeostasis                                                                                                                                                                                                                                 Platelet Homeostasis
## Platelet Sensitization By Ldl                                                                                                                                                                                                               Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                             Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events                                                                                                                                                                                                         Polo Like Kinase Mediated Events
## Polymerase Switching                                                                                                                                                                                                                                 Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                 Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                           Post Chaperonin Tubulin Folding Pathway
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                     Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                         Postmitotic Nuclear Pore Complex Npc Reformation
## Potassium Channels                                                                                                                                                                                                                                     Potassium Channels
## Potential Therapeutics For Sars                                                                                                                                                                                                           Potential Therapeutics For Sars
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                             Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                           Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                         Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing                                                                                                                                                                                                   Pre Notch Expression And Processing
## Pre Notch Processing In Golgi                                                                                                                                                                                                               Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                       Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis                                                                                                                                                                                                                       Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                             Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                       Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                       Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo                                                                                                                                                                                                       Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                           Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                         Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                     Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                     Processing Of Intronless Pre Mrnas
## Processing Of Smdt1                                                                                                                                                                                                                                   Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                 Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                     Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling                                                                                                                                                                                                                 Prolactin Receptor Signaling
## Prolonged Erk Activation Events                                                                                                                                                                                                           Prolonged Erk Activation Events
## Propionyl Coa Catabolism                                                                                                                                                                                                                         Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                               Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   Prostanoid Ligand Receptors
## Protein Folding                                                                                                                                                                                                                                           Protein Folding
## Protein Localization                                                                                                                                                                                                                                 Protein Localization
## Protein Methylation                                                                                                                                                                                                                                   Protein Methylation
## Protein Protein Interactions At Synapses                                                                                                                                                                                         Protein Protein Interactions At Synapses
## Protein Repair                                                                                                                                                                                                                                             Protein Repair
## Protein Ubiquitination                                                                                                                                                                                                                             Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                         Proton Coupled Monocarboxylate Transport
## Pten Regulation                                                                                                                                                                                                                                           Pten Regulation
## Ptk6 Expression                                                                                                                                                                                                                                           Ptk6 Expression
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                       Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                     Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                               Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                               Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism                                                                                                                                                                                                                                       Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                         Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage                                                                                                                                                                                                                                             Purine Salvage
## Pyrimidine Catabolism                                                                                                                                                                                                                               Pyrimidine Catabolism
## Pyrimidine Salvage                                                                                                                                                                                                                                     Pyrimidine Salvage
## Pyruvate Metabolism                                                                                                                                                                                                                                   Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                               Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway                                                                                                                                                                                                                           Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                               Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation                                                                                                                                                                                                                           Rab Geranylgeranylation
## Rab Regulation Of Trafficking                                                                                                                                                                                                               Rab Regulation Of Trafficking
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                       Rac1 Gtpase Cycle
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                       Rac2 Gtpase Cycle
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                       Rac3 Gtpase Cycle
## Raf Activation                                                                                                                                                                                                                                             Raf Activation
## Rap1 Signalling                                                                                                                                                                                                                                           Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                 Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing                                                                                                                                                                                                                                             Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                       Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                 Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   Receptor Mediated Mitophagy
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                   Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                             Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                         Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                         Recruitment Of Mitotic Centrosome Proteins And Complexes
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                     Recruitment Of Numa To Mitotic Centrosomes
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                       Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                               Recycling Of Eif2 Gdp
## Recycling Pathway Of L1                                                                                                                                                                                                                           Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                         Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway                                                                                                                                                                                                                       Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                           Regulated Proteolysis Of P75ntr
## Regulation By C Flip                                                                                                                                                                                                                                 Regulation By C Flip
## Regulation Of Bach1 Activity                                                                                                                                                                                                                 Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development                                                                                                                                                                                                   Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                               Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                   Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                     Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                   Regulation Of Expression Of Slits And Robos
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                     Regulation Of Foxo Transcriptional Activity By Acetylation
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                   Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                       Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                   Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                       Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                               Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                     Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                   Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                         Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                   Regulation Of Hmox1 Expression And Activity
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                           Regulation Of Hsf1 Mediated Heat Shock Response
## Regulation Of Ifna Signaling                                                                                                                                                                                                                 Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling                                                                                                                                                                                                                 Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                             Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion                                                                                                                                                                                                           Regulation Of Insulin Secretion
## Regulation Of Kit Signaling                                                                                                                                                                                                                   Regulation Of Kit Signaling
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                   Regulation Of Lipid Metabolism By Pparalpha
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                         Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                   Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                             Regulation Of Plk1 Activity At G2 M Transition
## Regulation Of Pten Gene Transcription                                                                                                                                                                                               Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization                                                                                                                                                                                                           Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                   Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity                                                                                                                                                                                       Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                         Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps                                                                                                                                                                                                                       Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                   Regulation Of Runx1 Expression And Activity
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                   Regulation Of Runx2 Expression And Activity
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                   Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl                                                                                                                                                                                                             Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal                                                                                                                                                                                                         Regulation Of Signaling By Nodal
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                             Regulation Of Tlr By Endogenous Ligand
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   Regulation Of Tp53 Activity
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                           Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                   Regulation Of Tp53 Activity Through Phosphorylation
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                               Regulation Of Tp53 Expression And Degradation
## Relaxin Receptors                                                                                                                                                                                                                                       Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                     Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                         Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                               Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Repression Of Wnt Target Genes                                                                                                                                                                                                             Repression Of Wnt Target Genes
## Reproduction                                                                                                                                                                                                                                                 Reproduction
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                   Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                 Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures                                                                                                                                                                                                           Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                       Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                           Resolution Of Sister Chromatid Cohesion
## Respiratory Electron Transport                                                                                                                                                                                                             Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                         Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                     Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                       Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                           Response Of Mtb To Phagocytosis
## Response To Metal Ions                                                                                                                                                                                                                             Response To Metal Ions
## Ret Signaling                                                                                                                                                                                                                                               Ret Signaling
## Retinoid Cycle Disease Events                                                                                                                                                                                                               Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                     Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                           Retrograde Transport At The Trans Golgi Network
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                             Reversible Hydration Of Carbon Dioxide
## Rho Gtpase Cycle                                                                                                                                                                                                                                         Rho Gtpase Cycle
## Rho Gtpase Effectors                                                                                                                                                                                                                                 Rho Gtpase Effectors
## Rho Gtpases Activate Cit                                                                                                                                                                                                                         Rho Gtpases Activate Cit
## Rho Gtpases Activate Formins                                                                                                                                                                                                                 Rho Gtpases Activate Formins
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   Rho Gtpases Activate Iqgaps
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                       Rho Gtpases Activate Ktn1
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                   Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Paks                                                                                                                                                                                                                       Rho Gtpases Activate Paks
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                       Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                 Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                     Rho Gtpases Activate Rocks
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                 Rho Gtpases Activate Wasps And Waves
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                       Rhoa Gtpase Cycle
## Rhob Gtpase Cycle                                                                                                                                                                                                                                       Rhob Gtpase Cycle
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                   Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                 Rhobtb3 Atpase Cycle
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                       Rhoc Gtpase Cycle
## Rhod Gtpase Cycle                                                                                                                                                                                                                                       Rhod Gtpase Cycle
## Rhof Gtpase Cycle                                                                                                                                                                                                                                       Rhof Gtpase Cycle
## Rhog Gtpase Cycle                                                                                                                                                                                                                                       Rhog Gtpase Cycle
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                       Rhoh Gtpase Cycle
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                       Rhoj Gtpase Cycle
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                       Rhoq Gtpase Cycle
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                     Rhot1 Gtpase Cycle
## Rhou Gtpase Cycle                                                                                                                                                                                                                                       Rhou Gtpase Cycle
## Rhov Gtpase Cycle                                                                                                                                                                                                                                       Rhov Gtpase Cycle
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                         Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription                                                                                                                                                                                                             Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                       Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination                                                                                                                                                                                     Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                       Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                   Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                   Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription                                                                                                                                                                                                         Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                 Rna Polymerase Iii Transcription Termination
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                       Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                       Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                       Rnd3 Gtpase Cycle
## Robo Receptors Bind Akap5                                                                                                                                                                                                                       Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                     Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                               Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                               Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                           Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression                                                                                                                                                                                                             Rora Activates Gene Expression
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                 Ros And Rns Production In Phagocytes
## Rrna Modification In The Mitochondrion                                                                                                                                                                                             Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Rrna Modification In The Nucleus And Cytosol
## Rrna Processing                                                                                                                                                                                                                                           Rrna Processing
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                 Rrna Processing In The Mitochondrion
## Rsk Activation                                                                                                                                                                                                                                             Rsk Activation
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                       Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                     Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                         Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                   Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                               Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                     Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx2 Regulates Bone Development                                                                                                                                                                                                         Runx2 Regulates Bone Development
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                             Runx2 Regulates Chondrocyte Maturation
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                         Runx2 Regulates Genes Involved In Cell Migration
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                     Runx2 Regulates Osteoblast Differentiation
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                       Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                 Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                     Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                           Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                           Runx3 Regulates P14 Arf
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                               Runx3 Regulates Wnt Signaling
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                   Runx3 Regulates Yap1 Mediated Transcription
## S Phase                                                                                                                                                                                                                                                           S Phase
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                           Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection                                                                                                                                                                                                                                 Sars Cov 1 Infection
## Sars Cov 2 Infection                                                                                                                                                                                                                                 Sars Cov 2 Infection
## Sars Cov Infections                                                                                                                                                                                                                                   Sars Cov Infections
## Scavenging By Class A Receptors                                                                                                                                                                                                           Scavenging By Class A Receptors
## Scavenging By Class B Receptors                                                                                                                                                                                                           Scavenging By Class B Receptors
## Scavenging By Class F Receptors                                                                                                                                                                                                           Scavenging By Class F Receptors
## Scavenging Of Heme From Plasma                                                                                                                                                                                                             Scavenging Of Heme From Plasma
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                         Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                           Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selective Autophagy                                                                                                                                                                                                                                   Selective Autophagy
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                   Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                       Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                             Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                             Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                   Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Semaphorin Interactions                                                                                                                                                                                                                           Semaphorin Interactions
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                   Sensing Of Dna Double Strand Breaks
## Sensory Perception                                                                                                                                                                                                                                     Sensory Perception
## Sensory Processing Of Sound                                                                                                                                                                                                                   Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                             Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids                                                                                                                                                                                                           Separation Of Sister Chromatids
## Serine Biosynthesis                                                                                                                                                                                                                                   Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                 Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                         Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors                                                                                                                                                                                                                                   Serotonin Receptors
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                               Shc Related Events Triggered By Igf1r
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb4 Signaling
## Signal Amplification                                                                                                                                                                                                                                 Signal Amplification
## Signal Attenuation                                                                                                                                                                                                                                     Signal Attenuation
## Signal Regulatory Protein Family Interactions                                                                                                                                                                               Signal Regulatory Protein Family Interactions
## Signaling By Activin                                                                                                                                                                                                                                 Signaling By Activin
## Signaling By Bmp                                                                                                                                                                                                                                         Signaling By Bmp
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                       Signaling By Braf And Raf Fusions
## Signaling By Csf3 G Csf                                                                                                                                                                                                                           Signaling By Csf3 G Csf
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                         Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                   Signaling By Cytosolic Fgfr1 Fusion Mutants
## Signaling By Erythropoietin                                                                                                                                                                                                                   Signaling By Erythropoietin
## Signaling By Fgfr                                                                                                                                                                                                                                       Signaling By Fgfr
## Signaling By Fgfr In Disease                                                                                                                                                                                                                 Signaling By Fgfr In Disease
## Signaling By Fgfr1                                                                                                                                                                                                                                     Signaling By Fgfr1
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                               Signaling By Fgfr1 In Disease
## Signaling By Fgfr2                                                                                                                                                                                                                                     Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                     Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                               Signaling By Fgfr2 In Disease
## Signaling By Fgfr3                                                                                                                                                                                                                                     Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                 Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4                                                                                                                                                                                                                                     Signaling By Fgfr4
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                               Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                       Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                               Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Hedgehog                                                                                                                                                                                                                               Signaling By Hedgehog
## Signaling By Hippo                                                                                                                                                                                                                                     Signaling By Hippo
## Signaling By Insulin Receptor                                                                                                                                                                                                               Signaling By Insulin Receptor
## Signaling By Kit In Disease                                                                                                                                                                                                                   Signaling By Kit In Disease
## Signaling By Leptin                                                                                                                                                                                                                                   Signaling By Leptin
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                       Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants                                                                                                                                                                                                                       Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                     Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Met                                                                                                                                                                                                                                         Signaling By Met
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                     Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants                                                                                                                                                                                                       Signaling By Mras Complex Mutants
## Signaling By Mst1                                                                                                                                                                                                                                       Signaling By Mst1
## Signaling By Nodal                                                                                                                                                                                                                                     Signaling By Nodal
## Signaling By Notch1                                                                                                                                                                                                                                   Signaling By Notch1
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                           Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                       Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                       Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch4                                                                                                                                                                                                                                   Signaling By Notch4
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                           Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                           Signaling By Ntrk3 Trkc
## Signaling By Pdgf                                                                                                                                                                                                                                       Signaling By Pdgf
## Signaling By Pdgfr In Disease                                                                                                                                                                                                               Signaling By Pdgfr In Disease
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                       Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Signaling By Retinoic Acid                                                                                                                                                                                                                     Signaling By Retinoic Acid
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                       Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                     Signaling By Rnf43 Mutants
## Signaling By Robo Receptors                                                                                                                                                                                                                   Signaling By Robo Receptors
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                         Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                 Signaling By The B Cell Receptor Bcr
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                           Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Signaling By Vegf                                                                                                                                                                                                                                       Signaling By Vegf
## Signaling By Wnt In Cancer                                                                                                                                                                                                                     Signaling By Wnt In Cancer
## Signalling To Erks                                                                                                                                                                                                                                     Signalling To Erks
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                       Signalling To P38 Via Rit And Rin
## Signalling To Ras                                                                                                                                                                                                                                       Signalling To Ras
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                     Sirt1 Negatively Regulates Rrna Expression
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                 Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                 Slc Mediated Transmembrane Transport
## Slc Transporter Disorders                                                                                                                                                                                                                       Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                             Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                             Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction                                                                                                                                                                                                                       Smooth Muscle Contraction
## Snrnp Assembly                                                                                                                                                                                                                                             Snrnp Assembly
## Sodium Calcium Exchangers                                                                                                                                                                                                                       Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                           Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                   Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers                                                                                                                                                                                                                         Sodium Proton Exchangers
## Sos Mediated Signalling                                                                                                                                                                                                                           Sos Mediated Signalling
## Sperm Motility And Taxes                                                                                                                                                                                                                         Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                       Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism                                                                                                                                                                                                                           Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                         Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                   Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53                                                                                                                                                                                                                                 Stabilization Of P53
## Stat5 Activation                                                                                                                                                                                                                                         Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                           Stat5 Activation Downstream Of Flt3 Itd Mutants
## Striated Muscle Contraction                                                                                                                                                                                                                   Striated Muscle Contraction
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                 Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                 Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                     Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed                                                                                                                                                                                                       Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                             Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                             Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                           Sumoylation Of Dna Replication Proteins
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                           Sumoylation Of Immune Response Proteins
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                             Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                   Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                   Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Factors                                                                                                                                                                                                 Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                         Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis                                                                                                                                                                                                                         Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                 Suppression Of Phagosomal Maturation
## Surfactant Metabolism                                                                                                                                                                                                                               Surfactant Metabolism
## Switching Of Origins To A Post Replicative State                                                                                                                                                                         Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                         Synaptic Adhesion Like Molecules
## Syndecan Interactions                                                                                                                                                                                                                               Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                               Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                               Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                         Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                             Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                 Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                               Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                           Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                               Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                         Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                               Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                     Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                           Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                     Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                     Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                         Synthesis Of Lipoxins Lx
## Synthesis Of Pa                                                                                                                                                                                                                                           Synthesis Of Pa
## Synthesis Of Pc                                                                                                                                                                                                                                           Synthesis Of Pc
## Synthesis Of Pe                                                                                                                                                                                                                                           Synthesis Of Pe
## Synthesis Of Pg                                                                                                                                                                                                                                           Synthesis Of Pg
## Synthesis Of Pi                                                                                                                                                                                                                                           Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                         Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                 Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                           Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                           Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                         Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                     Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                     Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                               Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                 Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                     Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                             Synthesis Secretion And Deacylation Of Ghrelin
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                               Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                         Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                               Tachykinin Receptors Bind Tachykinins
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                               Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                               Tandem Pore Domain Potassium Channels
## Tbc Rabgaps                                                                                                                                                                                                                                                   Tbc Rabgaps
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                     Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                             Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase                                                                                                                                                                                                         Telomere Extension By Telomerase
## Telomere Maintenance                                                                                                                                                                                                                                 Telomere Maintenance
## Terminal Pathway Of Complement                                                                                                                                                                                                             Terminal Pathway Of Complement
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                         Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                     Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                 Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                   Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                           Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases                                                                                                                                                                                                         The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                 The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                 The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model                                                                                                                                                                                                                 The Fatty Acid Cycling Model
## The Nlrp3 Inflammasome                                                                                                                                                                                                                             The Nlrp3 Inflammasome
## The Phototransduction Cascade                                                                                                                                                                                                               The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                   The Retinoid Cycle In Cones Daylight Vision
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                       The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                               The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                           Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                     Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis                                                                                                                                                                                                                             Thyroxine Biosynthesis
## Tie2 Signaling                                                                                                                                                                                                                                             Tie2 Signaling
## Tight Junction Interactions                                                                                                                                                                                                                   Tight Junction Interactions
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                 Tnfr1 Induced Proapoptotic Signaling
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                     Tnfr1 Mediated Ceramide Production
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                           Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                             Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                         Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                           Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Cycle Genes
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Death Genes
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                   Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                             Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                 Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                             Traf6 Mediated Irf7 Activation
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                           Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                           Traf6 Mediated Nf Kb Activation
## Trafficking Of Ampa Receptors                                                                                                                                                                                                               Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                             Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                   Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling                                                                                                                                                                                                                                           Trail Signaling
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                   Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                           Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                 Transcription Of E2f Targets Under Negative Control By Dream Complex
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Transcription Of The Hiv Genome                                                                                                                                                                                                           Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6                                                                                                                                                                                                     Transcriptional Regulation By E2f6
## Transcriptional Regulation By Runx1                                                                                                                                                                                                   Transcriptional Regulation By Runx1
## Transcriptional Regulation By Runx2                                                                                                                                                                                                   Transcriptional Regulation By Runx2
## Transcriptional Regulation By Runx3                                                                                                                                                                                                   Transcriptional Regulation By Runx3
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                         Transcriptional Regulation By Small Rnas
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                 Transcriptional Regulation Of Pluripotent Stem Cells
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                 Transcriptional Regulation Of Testis Differentiation
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                               Transcriptional Regulation Of White Adipocyte Differentiation
## Transferrin Endocytosis And Recycling                                                                                                                                                                                               Transferrin Endocytosis And Recycling
## Translation                                                                                                                                                                                                                                                   Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                             Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh                                                                                                                                                                                                               Translesion Synthesis By Polh
## Translesion Synthesis By Polk                                                                                                                                                                                                               Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                     Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                 Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transport And Synthesis Of Paps                                                                                                                                                                                                           Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                         Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                               Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids                                                                                                                                                                                                                         Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                   Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                               Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                   Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                         Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars                                                                                                                                                                                                             Transport Of Nucleotide Sugars
## Transport Of Organic Anions                                                                                                                                                                                                                   Transport Of Organic Anions
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                   Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                           Transport Of Vitamins Nucleosides And Related Molecules
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                     Transport To The Golgi And Subsequent Modification
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                   Trif Mediated Programmed Cell Death
## Triglyceride Biosynthesis                                                                                                                                                                                                                       Triglyceride Biosynthesis
## Triglyceride Catabolism                                                                                                                                                                                                                           Triglyceride Catabolism
## Triglyceride Metabolism                                                                                                                                                                                                                           Triglyceride Metabolism
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                               Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation                                                                                                                                                                                                                                   Trna Aminoacylation
## Trna Modification In The Mitochondrion                                                                                                                                                                                             Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Trna Modification In The Nucleus And Cytosol
## Trna Processing                                                                                                                                                                                                                                           Trna Processing
## Trna Processing In The Mitochondrion                                                                                                                                                                                                 Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus                                                                                                                                                                                                             Trna Processing In The Nucleus
## Trp Channels                                                                                                                                                                                                                                                 Trp Channels
## Tryptophan Catabolism                                                                                                                                                                                                                               Tryptophan Catabolism
## Type I Hemidesmosome Assembly                                                                                                                                                                                                               Type I Hemidesmosome Assembly
## Tyrosine Catabolism                                                                                                                                                                                                                                   Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                   Tysnd1 Cleaves Peroxisomal Proteins
## Ubiquinol Biosynthesis                                                                                                                                                                                                                             Ubiquinol Biosynthesis
## Uch Proteinases                                                                                                                                                                                                                                           Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                               Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna                                                                                                                                                                                                                                         Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                             Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                               Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                           Uptake And Function Of Diphtheria Toxin
## Urea Cycle                                                                                                                                                                                                                                                     Urea Cycle
## Vasopressin Like Receptors                                                                                                                                                                                                                     Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                 Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                       Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                     Vegfr2 Mediated Cell Proliferation
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                               Vegfr2 Mediated Vascular Permeability
## Viral Messenger Rna Synthesis                                                                                                                                                                                                               Viral Messenger Rna Synthesis
## Visual Phototransduction                                                                                                                                                                                                                         Visual Phototransduction
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                               Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                         Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                     Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                             Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                           Vitamin D Calciferol Metabolism
## Vitamins                                                                                                                                                                                                                                                         Vitamins
## Vldl Assembly                                                                                                                                                                                                                                               Vldl Assembly
## Vldl Clearance                                                                                                                                                                                                                                             Vldl Clearance
## Voltage Gated Potassium Channels                                                                                                                                                                                                         Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                             Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                         Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                             Wnt Mediated Activation Of Dvl
## Xenobiotics                                                                                                                                                                                                                                                   Xenobiotics
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                               Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                         Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                           Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters                                                                                                                                                                                                                                       Zinc Transporters
##                                                                                                                                         pval
## Cytokine Signaling In Immune System                                                                                                  3.6e-16
## Interleukin 10 Signaling                                                                                                             2.3e-14
## Signaling By Interleukins                                                                                                            4.8e-11
## Chemokine Receptors Bind Chemokines                                                                                                  1.3e-09
## Interleukin 4 And Interleukin 13 Signaling                                                                                           1.7e-09
## Innate Immune System                                                                                                                 1.1e-07
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    1.4e-06
## G Alpha I Signalling Events                                                                                                          2.1e-06
## Peptide Ligand Binding Receptors                                                                                                     2.1e-06
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         4.4e-06
## Signaling By Gpcr                                                                                                                    5.9e-06
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               1.3e-05
## Extra Nuclear Estrogen Signaling                                                                                                     1.3e-05
## Tnfs Bind Their Physiological Receptors                                                                                              2.3e-05
## Gpcr Ligand Binding                                                                                                                  2.6e-05
## Leishmania Infection                                                                                                                 2.6e-05
## Class A 1 Rhodopsin Like Receptors                                                                                                   3.9e-05
## Cd163 Mediating An Anti Inflammatory Response                                                                                        1.3e-04
## Interleukin 1 Processing                                                                                                             1.3e-04
## Regulated Necrosis                                                                                                                   1.7e-04
## Toll Like Receptor Cascades                                                                                                          2.2e-04
## Costimulation By The Cd28 Family                                                                                                     3.9e-04
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     5.4e-04
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         6.0e-04
## Esr Mediated Signaling                                                                                                               8.4e-04
## Myd88 Independent Tlr4 Cascade                                                                                                       8.6e-04
## Pi3k Akt Signaling In Cancer                                                                                                         1.1e-03
## Purinergic Signaling In Leishmaniasis Infection                                                                                      1.1e-03
## Pyroptosis                                                                                                                           1.2e-03
## Negative Regulation Of The Pi3k Akt Network                                                                                          1.3e-03
## Pd 1 Signaling                                                                                                                       1.3e-03
## Senescence Associated Secretory Phenotype Sasp                                                                                       1.3e-03
## Post Translational Protein Modification                                                                                              1.4e-03
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  1.6e-03
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.7e-03
## Infectious Disease                                                                                                                   1.8e-03
## Interleukin 1 Family Signaling                                                                                                       2.5e-03
## Ngf Stimulated Transcription                                                                                                         2.5e-03
## Signaling By Nuclear Receptors                                                                                                       2.5e-03
## Intracellular Signaling By Second Messengers                                                                                         2.8e-03
## Adaptive Immune System                                                                                                               4.7e-03
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             5.2e-03
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             5.9e-03
## Nuclear Events Kinase And Transcription Factor Activation                                                                            6.1e-03
## Cellular Senescence                                                                                                                  6.5e-03
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         6.5e-03
## Programmed Cell Death                                                                                                                7.4e-03
## Circadian Clock                                                                                                                      8.0e-03
## Interleukin 17 Signaling                                                                                                             8.2e-03
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   9.0e-03
## Mecp2 Regulates Transcription Factors                                                                                                9.6e-03
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    9.8e-03
## Clec7a Inflammasome Pathway                                                                                                          1.1e-02
## Fibronectin Matrix Formation                                                                                                         1.1e-02
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.1e-02
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 1.1e-02
## Creb Phosphorylation                                                                                                                 1.3e-02
## Neutrophil Degranulation                                                                                                             1.3e-02
## Fcgr3a Mediated Il10 Synthesis                                                                                                       1.4e-02
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    1.4e-02
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         1.5e-02
## Interleukin 18 Signaling                                                                                                             1.5e-02
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    1.5e-02
## Signaling By Receptor Tyrosine Kinases                                                                                               1.6e-02
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  1.7e-02
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.7e-02
## Egfr Transactivation By Gastrin                                                                                                      1.7e-02
## Mapk1 Erk2 Activation                                                                                                                1.7e-02
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 1.7e-02
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               1.9e-02
## Akt Phosphorylates Targets In The Nucleus                                                                                            1.9e-02
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             1.9e-02
## Mapk3 Erk1 Activation                                                                                                                1.9e-02
## Extracellular Matrix Organization                                                                                                    2.0e-02
## Interleukin 6 Signaling                                                                                                              2.1e-02
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     2.1e-02
## Cd28 Dependent Vav1 Pathway                                                                                                          2.3e-02
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    2.3e-02
## Killing Mechanisms                                                                                                                   2.3e-02
## Notch2 Intracellular Domain Regulates Transcription                                                                                  2.3e-02
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             2.3e-02
## Vldlr Internalisation And Degradation                                                                                                2.3e-02
## Dissolution Of Fibrin Clot                                                                                                           2.5e-02
## Erbb2 Activates Ptk6 Signaling                                                                                                       2.5e-02
## Irf3 Mediated Induction Of Type I Ifn                                                                                                2.5e-02
## Trafficking And Processing Of Endosomal Tlr                                                                                          2.5e-02
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                2.5e-02
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              2.7e-02
## Shc1 Events In Egfr Signaling                                                                                                        2.7e-02
## Signaling By Ntrks                                                                                                                   2.7e-02
## Constitutive Signaling By Egfrviii                                                                                                   2.8e-02
## Erbb2 Regulates Cell Motility                                                                                                        2.8e-02
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             2.8e-02
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      2.8e-02
## Wnt5a Dependent Internalization Of Fzd4                                                                                              2.8e-02
## Hcmv Early Events                                                                                                                    2.9e-02
## C Type Lectin Receptors Clrs                                                                                                         3.0e-02
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           3.0e-02
## Grb2 Events In Erbb2 Signaling                                                                                                       3.0e-02
## Pi3k Events In Erbb2 Signaling                                                                                                       3.0e-02
## Signaling By Erbb2 Ecd Mutants                                                                                                       3.0e-02
## Sting Mediated Induction Of Host Immune Responses                                                                                    3.0e-02
## Sumoylation Of Dna Methylation Proteins                                                                                              3.0e-02
## Clathrin Mediated Endocytosis                                                                                                        3.2e-02
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        3.2e-02
## Gab1 Signalosome                                                                                                                     3.2e-02
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                3.2e-02
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      3.4e-02
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     3.6e-02
## Ldl Clearance                                                                                                                        3.6e-02
## Pka Mediated Phosphorylation Of Creb                                                                                                 3.8e-02
## Hcmv Infection                                                                                                                       3.9e-02
## Ctla4 Inhibitory Signaling                                                                                                           4.0e-02
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     4.0e-02
## Inflammasomes                                                                                                                        4.0e-02
## Signal Transduction By L1                                                                                                            4.0e-02
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           4.0e-02
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    4.1e-02
## Shc1 Events In Erbb2 Signaling                                                                                                       4.1e-02
## Ikk Complex Recruitment Mediated By Rip1                                                                                             4.3e-02
## Raf Independent Mapk1 3 Activation                                                                                                   4.3e-02
## Termination Of O Glycan Biosynthesis                                                                                                 4.3e-02
## Interleukin 6 Family Signaling                                                                                                       4.5e-02
## Cellular Responses To External Stimuli                                                                                               4.6e-02
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          4.7e-02
## Signaling By Egfr In Cancer                                                                                                          4.7e-02
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        4.9e-02
## Dectin 2 Family                                                                                                                      4.9e-02
## Signaling By Erbb2 In Cancer                                                                                                         4.9e-02
## Wnt Ligand Biogenesis And Trafficking                                                                                                4.9e-02
## Sumoylation                                                                                                                          5.0e-02
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     5.1e-02
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                5.1e-02
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     5.2e-02
## Cell Surface Interactions At The Vascular Wall                                                                                       5.3e-02
## Downregulation Of Erbb2 Signaling                                                                                                    5.4e-02
## Ripk1 Mediated Regulated Necrosis                                                                                                    5.4e-02
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             5.6e-02
## Diseases Of Immune System                                                                                                            5.8e-02
## Egfr Downregulation                                                                                                                  5.8e-02
## Perk Regulates Gene Expression                                                                                                       6.0e-02
## Regulation Of Mecp2 Expression And Activity                                                                                          6.0e-02
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               6.0e-02
## Activation Of Matrix Metalloproteinases                                                                                              6.1e-02
## Cd28 Co Stimulation                                                                                                                  6.1e-02
## Plasma Lipoprotein Clearance                                                                                                         6.1e-02
## Sialic Acid Metabolism                                                                                                               6.1e-02
## Signaling By Notch2                                                                                                                  6.1e-02
## G Alpha Q Signalling Events                                                                                                          6.4e-02
## Regulation Of Tnfr1 Signaling                                                                                                        6.5e-02
## Nod1 2 Signaling Pathway                                                                                                             6.7e-02
## Ub Specific Processing Proteases                                                                                                     6.7e-02
## Ca Dependent Events                                                                                                                  6.9e-02
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   7.0e-02
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         7.0e-02
## Generation Of Second Messenger Molecules                                                                                             7.2e-02
## Dag And Ip3 Signaling                                                                                                                7.6e-02
## Transcriptional Regulation By Ventx                                                                                                  7.6e-02
## Signaling By Scf Kit                                                                                                                 7.9e-02
## Sumoylation Of Transcription Cofactors                                                                                               7.9e-02
## Signaling By Notch                                                                                                                   8.1e-02
## Tnf Signaling                                                                                                                        8.1e-02
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           8.1e-02
## Dap12 Interactions                                                                                                                   8.3e-02
## Interleukin 12 Signaling                                                                                                             8.6e-02
## Heme Signaling                                                                                                                       8.8e-02
## Signaling By Notch3                                                                                                                  9.0e-02
## Signaling By Egfr                                                                                                                    9.2e-02
## Signaling By Erbb2                                                                                                                   9.2e-02
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               9.3e-02
## G Protein Mediated Events                                                                                                            9.9e-02
## Signaling By Ptk6                                                                                                                    9.9e-02
## Interleukin 12 Family Signaling                                                                                                      1.0e-01
## Nervous System Development                                                                                                           1.0e-01
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               1.0e-01
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.1e-01
## Ca2 Pathway                                                                                                                          1.1e-01
## Deubiquitination                                                                                                                     1.1e-01
## Ncam Signaling For Neurite Out Growth                                                                                                1.1e-01
## O Linked Glycosylation Of Mucins                                                                                                     1.1e-01
## Signaling By Erbb4                                                                                                                   1.1e-01
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.1e-01
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.1e-01
## Transcriptional Regulation By Mecp2                                                                                                  1.1e-01
## Asymmetric Localization Of Pcp Proteins                                                                                              1.2e-01
## Collagen Degradation                                                                                                                 1.2e-01
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.2e-01
## Dna Methylation                                                                                                                      1.2e-01
## Rna Polymerase Ii Transcription                                                                                                      1.2e-01
## Mapk Family Signaling Cascades                                                                                                       1.3e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.3e-01
## Prc2 Methylates Histones And Dna                                                                                                     1.3e-01
## Signaling By Tgf Beta Receptor Complex                                                                                               1.3e-01
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.4e-01
## Ecm Proteoglycans                                                                                                                    1.4e-01
## Hemostasis                                                                                                                           1.4e-01
## Rmts Methylate Histone Arginines                                                                                                     1.4e-01
## Fceri Mediated Mapk Activation                                                                                                       1.5e-01
## Collagen Formation                                                                                                                   1.6e-01
## Eph Ephrin Signaling                                                                                                                 1.6e-01
## Interferon Gamma Signaling                                                                                                           1.6e-01
## Opioid Signalling                                                                                                                    1.6e-01
## Pcp Ce Pathway                                                                                                                       1.6e-01
## Transcriptional Regulation Of Granulopoiesis                                                                                         1.6e-01
## Unfolded Protein Response Upr                                                                                                        1.6e-01
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.7e-01
## Class B 2 Secretin Family Receptors                                                                                                  1.7e-01
## Clec7a Dectin 1 Signaling                                                                                                            1.7e-01
## Mitochondrial Biogenesis                                                                                                             1.7e-01
## Diseases Of Programmed Cell Death                                                                                                    1.8e-01
## Interleukin 1 Signaling                                                                                                              1.8e-01
## Signaling By Tgfb Family Members                                                                                                     1.8e-01
## Stimuli Sensing Channels                                                                                                             1.8e-01
## Amyloid Fiber Formation                                                                                                              1.9e-01
## O Linked Glycosylation                                                                                                               1.9e-01
## L1cam Interactions                                                                                                                   2.1e-01
## Tcr Signaling                                                                                                                        2.1e-01
## Mhc Class Ii Antigen Presentation                                                                                                    2.2e-01
## Oxidative Stress Induced Senescence                                                                                                  2.2e-01
## Response To Elevated Platelet Cytosolic Ca2                                                                                          2.2e-01
## Death Receptor Signalling                                                                                                            2.4e-01
## Degradation Of The Extracellular Matrix                                                                                              2.4e-01
## Diseases Of Glycosylation                                                                                                            2.4e-01
## Beta Catenin Independent Wnt Signaling                                                                                               2.5e-01
## Epigenetic Regulation Of Gene Expression                                                                                             2.5e-01
## Estrogen Dependent Gene Expression                                                                                                   2.5e-01
## Fc Epsilon Receptor Fceri Signaling                                                                                                  3.0e-01
## Ion Channel Transport                                                                                                                3.0e-01
## Interferon Signaling                                                                                                                 3.2e-01
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      3.3e-01
## Membrane Trafficking                                                                                                                 3.4e-01
## Tcf Dependent Signaling In Response To Wnt                                                                                           3.6e-01
## Developmental Biology                                                                                                                3.8e-01
## Diseases Of Metabolism                                                                                                               3.8e-01
## Platelet Activation Signaling And Aggregation                                                                                        4.0e-01
## Chromatin Modifying Enzymes                                                                                                          4.1e-01
## Transmission Across Chemical Synapses                                                                                                4.1e-01
## Transport Of Small Molecules                                                                                                         4.1e-01
## Vesicle Mediated Transport                                                                                                           4.1e-01
## Organelle Biogenesis And Maintenance                                                                                                 4.4e-01
## Asparagine N Linked Glycosylation                                                                                                    4.5e-01
## Signaling By Wnt                                                                                                                     4.7e-01
## Transcriptional Regulation By Tp53                                                                                                   5.0e-01
## Neuronal System                                                                                                                      5.5e-01
## 2 Ltr Circle Formation                                                                                                               1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.0e+00
## Abacavir Metabolism                                                                                                                  1.0e+00
## Abacavir Transmembrane Transport                                                                                                     1.0e+00
## Abacavir Transport And Metabolism                                                                                                    1.0e+00
## Abc Family Proteins Mediated Transport                                                                                               1.0e+00
## Abc Transporter Disorders                                                                                                            1.0e+00
## Abc Transporters In Lipid Homeostasis                                                                                                1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.0e+00
## Acetylcholine Binding And Downstream Events                                                                                          1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.0e+00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.0e+00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.0e+00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.0e+00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.0e+00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.0e+00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          1.0e+00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.0e+00
## Activation Of Atr In Response To Replication Stress                                                                                  1.0e+00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.0e+00
## Activation Of Bh3 Only Proteins                                                                                                      1.0e+00
## Activation Of C3 And C5                                                                                                              1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.0e+00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.0e+00
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            1.0e+00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.0e+00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Rac1                                                                                                                   1.0e+00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Ras In B Cells                                                                                                         1.0e+00
## Activation Of Smo                                                                                                                    1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.0e+00
## Activation Of The Phototransduction Cascade                                                                                          1.0e+00
## Activation Of The Pre Replicative Complex                                                                                            1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.0e+00
## Activation Of Trka Receptors                                                                                                         1.0e+00
## Acyl Chain Remodeling Of Cl                                                                                                          1.0e+00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.0e+00
## Acyl Chain Remodelling Of Pc                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pe                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pg                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pi                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Ps                                                                                                         1.0e+00
## Adenylate Cyclase Activating Pathway                                                                                                 1.0e+00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.0e+00
## Adherens Junctions Interactions                                                                                                      1.0e+00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.0e+00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.0e+00
## Adrenoceptors                                                                                                                        1.0e+00
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 1.0e+00
## Aflatoxin Activation And Detoxification                                                                                              1.0e+00
## Aggrephagy                                                                                                                           1.0e+00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.0e+00
## Alpha Defensins                                                                                                                      1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.0e+00
## Alpha Oxidation Of Phytanate                                                                                                         1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.0e+00
## Alternative Complement Activation                                                                                                    1.0e+00
## Amine Ligand Binding Receptors                                                                                                       1.0e+00
## Amino Acid Conjugation                                                                                                               1.0e+00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.0e+00
## Amino Acids Regulate Mtorc1                                                                                                          1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.0e+00
## Anchoring Fibril Formation                                                                                                           1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.0e+00
## Androgen Biosynthesis                                                                                                                1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.0e+00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             1.0e+00
## Antigen Processing Cross Presentation                                                                                                1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.0e+00
## Antimicrobial Peptides                                                                                                               1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.0e+00
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.0e+00
## Apoptosis                                                                                                                            1.0e+00
## Apoptosis Induced Dna Fragmentation                                                                                                  1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.0e+00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.0e+00
## Apoptotic Execution Phase                                                                                                            1.0e+00
## Apoptotic Factor Mediated Response                                                                                                   1.0e+00
## Aquaporin Mediated Transport                                                                                                         1.0e+00
## Arachidonate Production From Dag                                                                                                     1.0e+00
## Arachidonic Acid Metabolism                                                                                                          1.0e+00
## Arms Mediated Activation                                                                                                             1.0e+00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.0e+00
## Aspartate And Asparagine Metabolism                                                                                                  1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.0e+00
## Assembly Of The Hiv Virion                                                                                                           1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.0e+00
## Assembly Of The Pre Replicative Complex                                                                                              1.0e+00
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.0e+00
## Attachment And Entry                                                                                                                 1.0e+00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.0e+00
## Attenuation Phase                                                                                                                    1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.0e+00
## Aurka Activation By Tpx2                                                                                                             1.0e+00
## Autophagy                                                                                                                            1.0e+00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.0e+00
## Base Excision Repair                                                                                                                 1.0e+00
## Base Excision Repair Ap Site Formation                                                                                               1.0e+00
## Basigin Interactions                                                                                                                 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.0e+00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.0e+00
## Beta Defensins                                                                                                                       1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.0e+00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         1.0e+00
## Bicarbonate Transporters                                                                                                             1.0e+00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   1.0e+00
## Biological Oxidations                                                                                                                1.0e+00
## Biosynthesis Of Epa Derived Spms                                                                                                     1.0e+00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.0e+00
## Biosynthesis Of Maresins                                                                                                             1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              1.0e+00
## Biotin Transport And Metabolism                                                                                                      1.0e+00
## Blood Group Systems Biosynthesis                                                                                                     1.0e+00
## Branched Chain Amino Acid Catabolism                                                                                                 1.0e+00
## Budding And Maturation Of Hiv Virion                                                                                                 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.0e+00
## Butyrophilin Btn Family Interactions                                                                                                 1.0e+00
## Ca2 Activated K Channels                                                                                                             1.0e+00
## Calcineurin Activates Nfat                                                                                                           1.0e+00
## Calcitonin Like Ligand Receptors                                                                                                     1.0e+00
## Calnexin Calreticulin Cycle                                                                                                          1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.0e+00
## Cardiac Conduction                                                                                                                   1.0e+00
## Cargo Concentration In The Er                                                                                                        1.0e+00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.0e+00
## Carnitine Metabolism                                                                                                                 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.0e+00
## Cation Coupled Chloride Cotransporters                                                                                               1.0e+00
## Cd209 Dc Sign Signaling                                                                                                              1.0e+00
## Cd22 Mediated Bcr Regulation                                                                                                         1.0e+00
## Cdc42 Gtpase Cycle                                                                                                                   1.0e+00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.0e+00
## Cell Cell Communication                                                                                                              1.0e+00
## Cell Cell Junction Organization                                                                                                      1.0e+00
## Cell Cycle                                                                                                                           1.0e+00
## Cell Cycle Checkpoints                                                                                                               1.0e+00
## Cell Cycle Mitotic                                                                                                                   1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.0e+00
## Cell Extracellular Matrix Interactions                                                                                               1.0e+00
## Cell Junction Organization                                                                                                           1.0e+00
## Cellular Hexose Transport                                                                                                            1.0e+00
## Cellular Response To Chemical Stress                                                                                                 1.0e+00
## Cellular Response To Heat Stress                                                                                                     1.0e+00
## Cellular Response To Hypoxia                                                                                                         1.0e+00
## Cellular Response To Starvation                                                                                                      1.0e+00
## Cgmp Effects                                                                                                                         1.0e+00
## Chaperone Mediated Autophagy                                                                                                         1.0e+00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        1.0e+00
## Chl1 Interactions                                                                                                                    1.0e+00
## Cholesterol Biosynthesis                                                                                                             1.0e+00
## Choline Catabolism                                                                                                                   1.0e+00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.0e+00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.0e+00
## Chromosome Maintenance                                                                                                               1.0e+00
## Chylomicron Assembly                                                                                                                 1.0e+00
## Chylomicron Clearance                                                                                                                1.0e+00
## Chylomicron Remodeling                                                                                                               1.0e+00
## Cilium Assembly                                                                                                                      1.0e+00
## Citric Acid Cycle Tca Cycle                                                                                                          1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.0e+00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.0e+00
## Coenzyme A Biosynthesis                                                                                                              1.0e+00
## Cohesin Loading Onto Chromatin                                                                                                       1.0e+00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.0e+00
## Collagen Chain Trimerization                                                                                                         1.0e+00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.0e+00
## Complement Cascade                                                                                                                   1.0e+00
## Complex I Biogenesis                                                                                                                 1.0e+00
## Condensation Of Prometaphase Chromosomes                                                                                             1.0e+00
## Condensation Of Prophase Chromosomes                                                                                                 1.0e+00
## Conjugation Of Benzoate With Glycine                                                                                                 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.0e+00
## Copi Mediated Anterograde Transport                                                                                                  1.0e+00
## Copii Mediated Vesicle Transport                                                                                                     1.0e+00
## Creatine Metabolism                                                                                                                  1.0e+00
## Creation Of C4 And C2 Activators                                                                                                     1.0e+00
## Creb3 Factors Activate Genes                                                                                                         1.0e+00
## Cristae Formation                                                                                                                    1.0e+00
## Crmps In Sema3a Signaling                                                                                                            1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.0e+00
## Crosslinking Of Collagen Fibrils                                                                                                     1.0e+00
## Cs Ds Degradation                                                                                                                    1.0e+00
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.0e+00
## Cyclin D Associated Events In G1                                                                                                     1.0e+00
## Cyp2e1 Reactions                                                                                                                     1.0e+00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.0e+00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.0e+00
## Cytoprotection By Hmox1                                                                                                              1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.0e+00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.0e+00
## Cytosolic Trna Aminoacylation                                                                                                        1.0e+00
## Dap12 Signaling                                                                                                                      1.0e+00
## Darpp 32 Events                                                                                                                      1.0e+00
## Dcc Mediated Attractive Signaling                                                                                                    1.0e+00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.0e+00
## Deadenylation Dependent Mrna Decay                                                                                                   1.0e+00
## Deadenylation Of Mrna                                                                                                                1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.0e+00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.0e+00
## Defective Chst3 Causes Sedcjd                                                                                                        1.0e+00
## Defective Chst6 Causes Mcdc1                                                                                                         1.0e+00
## Defective Chsy1 Causes Tpbs                                                                                                          1.0e+00
## Defective Csf2rb Causes Smdp5                                                                                                        1.0e+00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.0e+00
## Defective F9 Activation                                                                                                              1.0e+00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.0e+00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.0e+00
## Defective Lfng Causes Scdo3                                                                                                          1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.0e+00
## Defects In Biotin Btn Metabolism                                                                                                     1.0e+00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.0e+00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.0e+00
## Defensins                                                                                                                            1.0e+00
## Degradation Of Axin                                                                                                                  1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.0e+00
## Degradation Of Cysteine And Homocysteine                                                                                             1.0e+00
## Degradation Of Dvl                                                                                                                   1.0e+00
## Degradation Of Gli1 By The Proteasome                                                                                                1.0e+00
## Depolymerisation Of The Nuclear Lamina                                                                                               1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          1.0e+00
## Dermatan Sulfate Biosynthesis                                                                                                        1.0e+00
## Detoxification Of Reactive Oxygen Species                                                                                            1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.0e+00
## Digestion                                                                                                                            1.0e+00
## Digestion And Absorption                                                                                                             1.0e+00
## Digestion Of Dietary Carbohydrate                                                                                                    1.0e+00
## Digestion Of Dietary Lipid                                                                                                           1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        1.0e+00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With Surfactant Metabolism                                                                                       1.0e+00
## Diseases Of Base Excision Repair                                                                                                     1.0e+00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.0e+00
## Diseases Of Dna Repair                                                                                                               1.0e+00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.0e+00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.0e+00
## Disinhibition Of Snare Formation                                                                                                     1.0e+00
## Disorders Of Transmembrane Transporters                                                                                              1.0e+00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.0e+00
## Dna Damage Bypass                                                                                                                    1.0e+00
## Dna Damage Recognition In Gg Ner                                                                                                     1.0e+00
## Dna Damage Reversal                                                                                                                  1.0e+00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.0e+00
## Dna Double Strand Break Repair                                                                                                       1.0e+00
## Dna Double Strand Break Response                                                                                                     1.0e+00
## Dna Repair                                                                                                                           1.0e+00
## Dna Replication                                                                                                                      1.0e+00
## Dna Replication Initiation                                                                                                           1.0e+00
## Dna Replication Pre Initiation                                                                                                       1.0e+00
## Dna Strand Elongation                                                                                                                1.0e+00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.0e+00
## Dopamine Receptors                                                                                                                   1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.0e+00
## Downregulation Of Erbb4 Signaling                                                                                                    1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.0e+00
## Downstream Signal Transduction                                                                                                       1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.0e+00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.0e+00
## Dscam Interactions                                                                                                                   1.0e+00
## Dual Incision In Gg Ner                                                                                                              1.0e+00
## Dual Incision In Tc Ner                                                                                                              1.0e+00
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          1.0e+00
## E2f Mediated Regulation Of Dna Replication                                                                                           1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.0e+00
## Early Phase Of Hiv Life Cycle                                                                                                        1.0e+00
## Effects Of Pip2 Hydrolysis                                                                                                           1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.0e+00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.0e+00
## Eicosanoids                                                                                                                          1.0e+00
## Elastic Fibre Formation                                                                                                              1.0e+00
## Electric Transmission Across Gap Junctions                                                                                           1.0e+00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.0e+00
## Endogenous Sterols                                                                                                                   1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.0e+00
## Endosomal Vacuolar Pathway                                                                                                           1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.0e+00
## Enos Activation                                                                                                                      1.0e+00
## Epha Mediated Growth Cone Collapse                                                                                                   1.0e+00
## Ephb Mediated Forward Signaling                                                                                                      1.0e+00
## Ephrin Signaling                                                                                                                     1.0e+00
## Er Quality Control Compartment Erqc                                                                                                  1.0e+00
## Er To Golgi Anterograde Transport                                                                                                    1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.0e+00
## Erk Mapk Targets                                                                                                                     1.0e+00
## Erks Are Inactivated                                                                                                                 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.0e+00
## Erythropoietin Activates Ras                                                                                                         1.0e+00
## Erythropoietin Activates Stat5                                                                                                       1.0e+00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.0e+00
## Estrogen Biosynthesis                                                                                                                1.0e+00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.0e+00
## Ethanol Oxidation                                                                                                                    1.0e+00
## Eukaryotic Translation Elongation                                                                                                    1.0e+00
## Eukaryotic Translation Initiation                                                                                                    1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.0e+00
## Extension Of Telomeres                                                                                                               1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.0e+00
## Fanconi Anemia Pathway                                                                                                               1.0e+00
## Fasl Cd95l Signaling                                                                                                                 1.0e+00
## Fatty Acid Metabolism                                                                                                                1.0e+00
## Fatty Acids                                                                                                                          1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.0e+00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.0e+00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.0e+00
## Fceri Mediated Nf Kb Activation                                                                                                      1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.0e+00
## Fcgr Activation                                                                                                                      1.0e+00
## Fertilization                                                                                                                        1.0e+00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr1 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2 Alternative Splicing                                                                                                           1.0e+00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.0e+00
## Flt3 Signaling                                                                                                                       1.0e+00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.0e+00
## Flt3 Signaling In Disease                                                                                                            1.0e+00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.0e+00
## Folding Of Actin By Cct Tric                                                                                                         1.0e+00
## Formation Of Apoptosome                                                                                                              1.0e+00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.0e+00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.0e+00
## Formation Of Incision Complex In Gg Ner                                                                                              1.0e+00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.0e+00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.0e+00
## Formation Of The Cornified Envelope                                                                                                  1.0e+00
## Formation Of The Early Elongation Complex                                                                                            1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.0e+00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.0e+00
## Foxo Mediated Transcription                                                                                                          1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.0e+00
## Free Fatty Acid Receptors                                                                                                            1.0e+00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.0e+00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.0e+00
## Fructose Catabolism                                                                                                                  1.0e+00
## Fructose Metabolism                                                                                                                  1.0e+00
## G Alpha 12 13 Signalling Events                                                                                                      1.0e+00
## G Alpha S Signalling Events                                                                                                          1.0e+00
## G Alpha Z Signalling Events                                                                                                          1.0e+00
## G Beta Gamma Signalling Through Cdc42                                                                                                1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.0e+00
## G Protein Activation                                                                                                                 1.0e+00
## G Protein Beta Gamma Signalling                                                                                                      1.0e+00
## G0 And Early G1                                                                                                                      1.0e+00
## G1 S Dna Damage Checkpoints                                                                                                          1.0e+00
## G1 S Specific Transcription                                                                                                          1.0e+00
## G2 M Checkpoints                                                                                                                     1.0e+00
## G2 M Dna Damage Checkpoint                                                                                                           1.0e+00
## G2 M Dna Replication Checkpoint                                                                                                      1.0e+00
## G2 Phase                                                                                                                             1.0e+00
## Gaba B Receptor Activation                                                                                                           1.0e+00
## Gaba Receptor Activation                                                                                                             1.0e+00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.0e+00
## Galactose Catabolism                                                                                                                 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.0e+00
## Gap Junction Assembly                                                                                                                1.0e+00
## Gap Junction Degradation                                                                                                             1.0e+00
## Gap Junction Trafficking And Regulation                                                                                              1.0e+00
## Gdp Fucose Biosynthesis                                                                                                              1.0e+00
## Gene Silencing By Rna                                                                                                                1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.0e+00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.0e+00
## Glucagon Type Ligand Receptors                                                                                                       1.0e+00
## Glucocorticoid Biosynthesis                                                                                                          1.0e+00
## Gluconeogenesis                                                                                                                      1.0e+00
## Glucose Metabolism                                                                                                                   1.0e+00
## Glucuronidation                                                                                                                      1.0e+00
## Glutamate And Glutamine Metabolism                                                                                                   1.0e+00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.0e+00
## Glutathione Conjugation                                                                                                              1.0e+00
## Glutathione Synthesis And Recycling                                                                                                  1.0e+00
## Glycerophospholipid Biosynthesis                                                                                                     1.0e+00
## Glycerophospholipid Catabolism                                                                                                       1.0e+00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.0e+00
## Glycogen Metabolism                                                                                                                  1.0e+00
## Glycogen Storage Diseases                                                                                                            1.0e+00
## Glycogen Synthesis                                                                                                                   1.0e+00
## Glycolysis                                                                                                                           1.0e+00
## Glycosaminoglycan Metabolism                                                                                                         1.0e+00
## Glycosphingolipid Metabolism                                                                                                         1.0e+00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.0e+00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.0e+00
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  1.0e+00
## Golgi To Er Retrograde Transport                                                                                                     1.0e+00
## Gp1b Ix V Activation Signalling                                                                                                      1.0e+00
## Gpvi Mediated Activation Cascade                                                                                                     1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.0e+00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Growth Hormone Receptor Signaling                                                                                                    1.0e+00
## Hats Acetylate Histones                                                                                                              1.0e+00
## Hcmv Late Events                                                                                                                     1.0e+00
## Hdacs Deacetylate Histones                                                                                                           1.0e+00
## Hdl Assembly                                                                                                                         1.0e+00
## Hdl Clearance                                                                                                                        1.0e+00
## Hdl Remodeling                                                                                                                       1.0e+00
## Hdms Demethylate Histones                                                                                                            1.0e+00
## Hdr Through Homologous Recombination Hrr                                                                                             1.0e+00
## Hdr Through Mmej Alt Nhej                                                                                                            1.0e+00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.0e+00
## Hedgehog Ligand Biogenesis                                                                                                           1.0e+00
## Hedgehog Off State                                                                                                                   1.0e+00
## Hedgehog On State                                                                                                                    1.0e+00
## Heme Biosynthesis                                                                                                                    1.0e+00
## Heme Degradation                                                                                                                     1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.0e+00
## Histidine Catabolism                                                                                                                 1.0e+00
## Hiv Elongation Arrest And Recovery                                                                                                   1.0e+00
## Hiv Infection                                                                                                                        1.0e+00
## Hiv Life Cycle                                                                                                                       1.0e+00
## Hiv Transcription Elongation                                                                                                         1.0e+00
## Hiv Transcription Initiation                                                                                                         1.0e+00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.0e+00
## Homology Directed Repair                                                                                                             1.0e+00
## Hormone Ligand Binding Receptors                                                                                                     1.0e+00
## Host Interactions Of Hiv Factors                                                                                                     1.0e+00
## Hs Gag Biosynthesis                                                                                                                  1.0e+00
## Hs Gag Degradation                                                                                                                   1.0e+00
## Hsf1 Activation                                                                                                                      1.0e+00
## Hsf1 Dependent Transactivation                                                                                                       1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.0e+00
## Hyaluronan Biosynthesis And Export                                                                                                   1.0e+00
## Hyaluronan Metabolism                                                                                                                1.0e+00
## Hyaluronan Uptake And Degradation                                                                                                    1.0e+00
## Hydrolysis Of Lpc                                                                                                                    1.0e+00
## Ikba Variant Leads To Eda Id                                                                                                         1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.0e+00
## Inactivation Of Cdc42 And Rac1                                                                                                       1.0e+00
## Inactivation Of Csf3 G Csf Signaling                                                                                                 1.0e+00
## Incretin Synthesis Secretion And Inactivation                                                                                        1.0e+00
## Infection With Mycobacterium Tuberculosis                                                                                            1.0e+00
## Influenza Infection                                                                                                                  1.0e+00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.0e+00
## Initial Triggering Of Complement                                                                                                     1.0e+00
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.0e+00
## Inositol Phosphate Metabolism                                                                                                        1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.0e+00
## Insulin Processing                                                                                                                   1.0e+00
## Insulin Receptor Recycling                                                                                                           1.0e+00
## Insulin Receptor Signalling Cascade                                                                                                  1.0e+00
## Integration Of Energy Metabolism                                                                                                     1.0e+00
## Integration Of Provirus                                                                                                              1.0e+00
## Integrin Cell Surface Interactions                                                                                                   1.0e+00
## Integrin Signaling                                                                                                                   1.0e+00
## Interaction Between L1 And Ankyrins                                                                                                  1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.0e+00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.0e+00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.0e+00
## Interferon Alpha Beta Signaling                                                                                                      1.0e+00
## Interleukin 15 Signaling                                                                                                             1.0e+00
## Interleukin 2 Family Signaling                                                                                                       1.0e+00
## Interleukin 2 Signaling                                                                                                              1.0e+00
## Interleukin 20 Family Signaling                                                                                                      1.0e+00
## Interleukin 21 Signaling                                                                                                             1.0e+00
## Interleukin 23 Signaling                                                                                                             1.0e+00
## Interleukin 27 Signaling                                                                                                             1.0e+00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.0e+00
## Interleukin 35 Signalling                                                                                                            1.0e+00
## Interleukin 36 Pathway                                                                                                               1.0e+00
## Interleukin 37 Signaling                                                                                                             1.0e+00
## Interleukin 7 Signaling                                                                                                              1.0e+00
## Interleukin 9 Signaling                                                                                                              1.0e+00
## Interleukin Receptor Shc Signaling                                                                                                   1.0e+00
## Intestinal Absorption                                                                                                                1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.0e+00
## Intra Golgi Traffic                                                                                                                  1.0e+00
## Intraflagellar Transport                                                                                                             1.0e+00
## Intrinsic Pathway For Apoptosis                                                                                                      1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Inwardly Rectifying K Channels                                                                                                       1.0e+00
## Ion Homeostasis                                                                                                                      1.0e+00
## Ion Transport By P Type Atpases                                                                                                      1.0e+00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.0e+00
## Irak1 Recruits Ikk Complex                                                                                                           1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.0e+00
## Irak4 Deficiency Tlr2 4                                                                                                              1.0e+00
## Ire1alpha Activates Chaperones                                                                                                       1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.0e+00
## Iron Uptake And Transport                                                                                                            1.0e+00
## Irs Activation                                                                                                                       1.0e+00
## Irs Mediated Signalling                                                                                                              1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.0e+00
## Josephin Domain Dubs                                                                                                                 1.0e+00
## Keratan Sulfate Biosynthesis                                                                                                         1.0e+00
## Keratan Sulfate Degradation                                                                                                          1.0e+00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.0e+00
## Keratinization                                                                                                                       1.0e+00
## Ketone Body Metabolism                                                                                                               1.0e+00
## Kinesins                                                                                                                             1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.0e+00
## Lagging Strand Synthesis                                                                                                             1.0e+00
## Laminin Interactions                                                                                                                 1.0e+00
## Late Endosomal Microautophagy                                                                                                        1.0e+00
## Lectin Pathway Of Complement Activation                                                                                              1.0e+00
## Leukotriene Receptors                                                                                                                1.0e+00
## Lgi Adam Interactions                                                                                                                1.0e+00
## Ligand Receptor Interactions                                                                                                         1.0e+00
## Linoleic Acid La Metabolism                                                                                                          1.0e+00
## Lipid Particle Organization                                                                                                          1.0e+00
## Lipophagy                                                                                                                            1.0e+00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.0e+00
## Long Term Potentiation                                                                                                               1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.0e+00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.0e+00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.0e+00
## Lysine Catabolism                                                                                                                    1.0e+00
## Lysosome Vesicle Biogenesis                                                                                                          1.0e+00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.0e+00
## M Phase                                                                                                                              1.0e+00
## Map2k And Mapk Activation                                                                                                            1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.0e+00
## Mapk6 Mapk4 Signaling                                                                                                                1.0e+00
## Mastl Facilitates Mitotic Progression                                                                                                1.0e+00
## Maturation Of Nucleoprotein                                                                                                          1.0e+00
## Maturation Of Protein 3a                                                                                                             1.0e+00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.0e+00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.0e+00
## Meiosis                                                                                                                              1.0e+00
## Meiotic Recombination                                                                                                                1.0e+00
## Meiotic Synapsis                                                                                                                     1.0e+00
## Melanin Biosynthesis                                                                                                                 1.0e+00
## Met Activates Pi3k Akt Signaling                                                                                                     1.0e+00
## Met Activates Ptk2 Signaling                                                                                                         1.0e+00
## Met Activates Ptpn11                                                                                                                 1.0e+00
## Met Activates Rap1 And Rac1                                                                                                          1.0e+00
## Met Activates Ras Signaling                                                                                                          1.0e+00
## Met Interacts With Tns Proteins                                                                                                      1.0e+00
## Met Promotes Cell Motility                                                                                                           1.0e+00
## Met Receptor Activation                                                                                                              1.0e+00
## Met Receptor Recycling                                                                                                               1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.0e+00
## Metabolism Of Amine Derived Hormones                                                                                                 1.0e+00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.0e+00
## Metabolism Of Carbohydrates                                                                                                          1.0e+00
## Metabolism Of Cofactors                                                                                                              1.0e+00
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.0e+00
## Metabolism Of Folate And Pterines                                                                                                    1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.0e+00
## Metabolism Of Lipids                                                                                                                 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            1.0e+00
## Metabolism Of Nucleotides                                                                                                            1.0e+00
## Metabolism Of Polyamines                                                                                                             1.0e+00
## Metabolism Of Porphyrins                                                                                                             1.0e+00
## Metabolism Of Rna                                                                                                                    1.0e+00
## Metabolism Of Steroid Hormones                                                                                                       1.0e+00
## Metabolism Of Steroids                                                                                                               1.0e+00
## Metabolism Of Vitamins And Cofactors                                                                                                 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.0e+00
## Metal Ion Slc Transporters                                                                                                           1.0e+00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.0e+00
## Metalloprotease Dubs                                                                                                                 1.0e+00
## Metallothioneins Bind Metals                                                                                                         1.0e+00
## Methionine Salvage Pathway                                                                                                           1.0e+00
## Methylation                                                                                                                          1.0e+00
## Microrna Mirna Biogenesis                                                                                                            1.0e+00
## Mineralocorticoid Biosynthesis                                                                                                       1.0e+00
## Miro Gtpase Cycle                                                                                                                    1.0e+00
## Miscellaneous Substrates                                                                                                             1.0e+00
## Miscellaneous Transport And Binding Events                                                                                           1.0e+00
## Mismatch Repair                                                                                                                      1.0e+00
## Mitochondrial Calcium Ion Transport                                                                                                  1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.0e+00
## Mitochondrial Protein Import                                                                                                         1.0e+00
## Mitochondrial Translation                                                                                                            1.0e+00
## Mitochondrial Trna Aminoacylation                                                                                                    1.0e+00
## Mitochondrial Uncoupling                                                                                                             1.0e+00
## Mitophagy                                                                                                                            1.0e+00
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.0e+00
## Mitotic G2 G2 M Phases                                                                                                               1.0e+00
## Mitotic Metaphase And Anaphase                                                                                                       1.0e+00
## Mitotic Prometaphase                                                                                                                 1.0e+00
## Mitotic Prophase                                                                                                                     1.0e+00
## Mitotic Spindle Checkpoint                                                                                                           1.0e+00
## Mitotic Telophase Cytokinesis                                                                                                        1.0e+00
## Modulation By Mtb Of Host Immune System                                                                                              1.0e+00
## Molecules Associated With Elastic Fibres                                                                                             1.0e+00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.0e+00
## Mrna Capping                                                                                                                         1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.0e+00
## Mrna Editing                                                                                                                         1.0e+00
## Mrna Editing C To U Conversion                                                                                                       1.0e+00
## Mrna Splicing                                                                                                                        1.0e+00
## Mrna Splicing Minor Pathway                                                                                                          1.0e+00
## Mtor Signalling                                                                                                                      1.0e+00
## Mtorc1 Mediated Signalling                                                                                                           1.0e+00
## Mucopolysaccharidoses                                                                                                                1.0e+00
## Multifunctional Anion Exchangers                                                                                                     1.0e+00
## Muscarinic Acetylcholine Receptors                                                                                                   1.0e+00
## Muscle Contraction                                                                                                                   1.0e+00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.0e+00
## Myogenesis                                                                                                                           1.0e+00
## N Glycan Antennae Elongation                                                                                                         1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.0e+00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.0e+00
## Nade Modulates Death Signalling                                                                                                      1.0e+00
## Ncam1 Interactions                                                                                                                   1.0e+00
## Nectin Necl Trans Heterodimerization                                                                                                 1.0e+00
## Neddylation                                                                                                                          1.0e+00
## Nef And Signal Transduction                                                                                                          1.0e+00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.0e+00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.0e+00
## Negative Regulation Of Flt3                                                                                                          1.0e+00
## Negative Regulation Of Mapk Pathway                                                                                                  1.0e+00
## Negative Regulation Of Met Activity                                                                                                  1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.0e+00
## Negative Regulation Of Notch4 Signaling                                                                                              1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.0e+00
## Nephrin Family Interactions                                                                                                          1.0e+00
## Netrin 1 Signaling                                                                                                                   1.0e+00
## Netrin Mediated Repulsion Signals                                                                                                    1.0e+00
## Neurexins And Neuroligins                                                                                                            1.0e+00
## Neurofascin Interactions                                                                                                             1.0e+00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.0e+00
## Neurotransmitter Clearance                                                                                                           1.0e+00
## Neurotransmitter Release Cycle                                                                                                       1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.0e+00
## Nf Kb Is Activated And Signals Survival                                                                                              1.0e+00
## Ngf Independant Trka Activation                                                                                                      1.0e+00
## Nicotinamide Salvaging                                                                                                               1.0e+00
## Nicotinate Metabolism                                                                                                                1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.0e+00
## Non Integrin Membrane Ecm Interactions                                                                                               1.0e+00
## Noncanonical Activation Of Notch3                                                                                                    1.0e+00
## Nonhomologous End Joining Nhej                                                                                                       1.0e+00
## Nonsense Mediated Decay Nmd                                                                                                          1.0e+00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.0e+00
## Nostrin Mediated Enos Trafficking                                                                                                    1.0e+00
## Notch Hlh Transcription Pathway                                                                                                      1.0e+00
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.0e+00
## Nrage Signals Death Through Jnk                                                                                                      1.0e+00
## Nrcam Interactions                                                                                                                   1.0e+00
## Nrif Signals Cell Death From The Nucleus                                                                                             1.0e+00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.0e+00
## Ntrk2 Activates Rac1                                                                                                                 1.0e+00
## Nuclear Envelope Breakdown                                                                                                           1.0e+00
## Nuclear Envelope Ne Reassembly                                                                                                       1.0e+00
## Nuclear Import Of Rev Protein                                                                                                        1.0e+00
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.0e+00
## Nuclear Receptor Transcription Pathway                                                                                               1.0e+00
## Nuclear Signaling By Erbb4                                                                                                           1.0e+00
## Nucleobase Biosynthesis                                                                                                              1.0e+00
## Nucleobase Catabolism                                                                                                                1.0e+00
## Nucleotide Excision Repair                                                                                                           1.0e+00
## Nucleotide Like Purinergic Receptors                                                                                                 1.0e+00
## Nucleotide Salvage                                                                                                                   1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.0e+00
## Oas Antiviral Response                                                                                                               1.0e+00
## Olfactory Signaling Pathway                                                                                                          1.0e+00
## Oncogene Induced Senescence                                                                                                          1.0e+00
## Oncogenic Mapk Signaling                                                                                                             1.0e+00
## Opsins                                                                                                                               1.0e+00
## Orc1 Removal From Chromatin                                                                                                          1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.0e+00
## Organic Anion Transport                                                                                                              1.0e+00
## Organic Anion Transporters                                                                                                           1.0e+00
## Organic Cation Anion Zwitterion Transport                                                                                            1.0e+00
## Organic Cation Transport                                                                                                             1.0e+00
## Other Interleukin Signaling                                                                                                          1.0e+00
## Other Semaphorin Interactions                                                                                                        1.0e+00
## Ovarian Tumor Domain Proteases                                                                                                       1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.0e+00
## P2y Receptors                                                                                                                        1.0e+00
## P38mapk Events                                                                                                                       1.0e+00
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.0e+00
## P75ntr Recruits Signalling Complexes                                                                                                 1.0e+00
## P75ntr Regulates Axonogenesis                                                                                                        1.0e+00
## P75ntr Signals Via Nf Kb                                                                                                             1.0e+00
## Parasite Infection                                                                                                                   1.0e+00
## Passive Transport By Aquaporins                                                                                                      1.0e+00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Pecam1 Interactions                                                                                                                  1.0e+00
## Pentose Phosphate Pathway                                                                                                            1.0e+00
## Peptide Hormone Biosynthesis                                                                                                         1.0e+00
## Peptide Hormone Metabolism                                                                                                           1.0e+00
## Peroxisomal Lipid Metabolism                                                                                                         1.0e+00
## Peroxisomal Protein Import                                                                                                           1.0e+00
## Pexophagy                                                                                                                            1.0e+00
## Phase 0 Rapid Depolarisation                                                                                                         1.0e+00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.0e+00
## Phase 2 Plateau Phase                                                                                                                1.0e+00
## Phase 3 Rapid Repolarisation                                                                                                         1.0e+00
## Phase 4 Resting Membrane Potential                                                                                                   1.0e+00
## Phase I Functionalization Of Compounds                                                                                               1.0e+00
## Phase Ii Conjugation Of Compounds                                                                                                    1.0e+00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.0e+00
## Phenylalanine Metabolism                                                                                                             1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.0e+00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.0e+00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.0e+00
## Phospholipid Metabolism                                                                                                              1.0e+00
## Phosphorylation Of Emi1                                                                                                              1.0e+00
## Phosphorylation Of The Apc C                                                                                                         1.0e+00
## Physiological Factors                                                                                                                1.0e+00
## Pi 3k Cascade Fgfr1                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr2                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr3                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr4                                                                                                                  1.0e+00
## Pi Metabolism                                                                                                                        1.0e+00
## Pi3k Akt Activation                                                                                                                  1.0e+00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.0e+00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.0e+00
## Pink1 Prkn Mediated Mitophagy                                                                                                        1.0e+00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.0e+00
## Pka Activation In Glucagon Signalling                                                                                                1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.0e+00
## Pkmts Methylate Histone Lysines                                                                                                      1.0e+00
## Plasma Lipoprotein Assembly                                                                                                          1.0e+00
## Plasma Lipoprotein Remodeling                                                                                                        1.0e+00
## Platelet Adhesion To Exposed Collagen                                                                                                1.0e+00
## Platelet Aggregation Plug Formation                                                                                                  1.0e+00
## Platelet Calcium Homeostasis                                                                                                         1.0e+00
## Platelet Homeostasis                                                                                                                 1.0e+00
## Platelet Sensitization By Ldl                                                                                                        1.0e+00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Polo Like Kinase Mediated Events                                                                                                     1.0e+00
## Polymerase Switching                                                                                                                 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.0e+00
## Potassium Channels                                                                                                                   1.0e+00
## Potential Therapeutics For Sars                                                                                                      1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.0e+00
## Pre Notch Expression And Processing                                                                                                  1.0e+00
## Pre Notch Processing In Golgi                                                                                                        1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.0e+00
## Pregnenolone Biosynthesis                                                                                                            1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.0e+00
## Presynaptic Function Of Kainate Receptors                                                                                            1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.0e+00
## Processing And Activation Of Sumo                                                                                                    1.0e+00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.0e+00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.0e+00
## Processing Of Dna Double Strand Break Ends                                                                                           1.0e+00
## Processing Of Intronless Pre Mrnas                                                                                                   1.0e+00
## Processing Of Smdt1                                                                                                                  1.0e+00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.0e+00
## Processive Synthesis On The Lagging Strand                                                                                           1.0e+00
## Prolactin Receptor Signaling                                                                                                         1.0e+00
## Prolonged Erk Activation Events                                                                                                      1.0e+00
## Propionyl Coa Catabolism                                                                                                             1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.0e+00
## Prostanoid Ligand Receptors                                                                                                          1.0e+00
## Protein Folding                                                                                                                      1.0e+00
## Protein Localization                                                                                                                 1.0e+00
## Protein Methylation                                                                                                                  1.0e+00
## Protein Protein Interactions At Synapses                                                                                             1.0e+00
## Protein Repair                                                                                                                       1.0e+00
## Protein Ubiquitination                                                                                                               1.0e+00
## Proton Coupled Monocarboxylate Transport                                                                                             1.0e+00
## Pten Regulation                                                                                                                      1.0e+00
## Ptk6 Expression                                                                                                                      1.0e+00
## Ptk6 Regulates Cell Cycle                                                                                                            1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.0e+00
## Purine Catabolism                                                                                                                    1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.0e+00
## Purine Salvage                                                                                                                       1.0e+00
## Pyrimidine Catabolism                                                                                                                1.0e+00
## Pyrimidine Salvage                                                                                                                   1.0e+00
## Pyruvate Metabolism                                                                                                                  1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.0e+00
## Ra Biosynthesis Pathway                                                                                                              1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.0e+00
## Rab Geranylgeranylation                                                                                                              1.0e+00
## Rab Regulation Of Trafficking                                                                                                        1.0e+00
## Rac1 Gtpase Cycle                                                                                                                    1.0e+00
## Rac2 Gtpase Cycle                                                                                                                    1.0e+00
## Rac3 Gtpase Cycle                                                                                                                    1.0e+00
## Raf Activation                                                                                                                       1.0e+00
## Rap1 Signalling                                                                                                                      1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.0e+00
## Ras Processing                                                                                                                       1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.0e+00
## Receptor Mediated Mitophagy                                                                                                          1.0e+00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.0e+00
## Recycling Of Bile Acids And Salts                                                                                                    1.0e+00
## Recycling Of Eif2 Gdp                                                                                                                1.0e+00
## Recycling Pathway Of L1                                                                                                              1.0e+00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.0e+00
## Reelin Signalling Pathway                                                                                                            1.0e+00
## Regulated Proteolysis Of P75ntr                                                                                                      1.0e+00
## Regulation By C Flip                                                                                                                 1.0e+00
## Regulation Of Bach1 Activity                                                                                                         1.0e+00
## Regulation Of Beta Cell Development                                                                                                  1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.0e+00
## Regulation Of Expression Of Slits And Robos                                                                                          1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           1.0e+00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.0e+00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.0e+00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.0e+00
## Regulation Of Ifna Signaling                                                                                                         1.0e+00
## Regulation Of Ifng Signaling                                                                                                         1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.0e+00
## Regulation Of Insulin Secretion                                                                                                      1.0e+00
## Regulation Of Kit Signaling                                                                                                          1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.0e+00
## Regulation Of Pten Gene Transcription                                                                                                1.0e+00
## Regulation Of Pten Localization                                                                                                      1.0e+00
## Regulation Of Pten Mrna Translation                                                                                                  1.0e+00
## Regulation Of Pten Stability And Activity                                                                                            1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.0e+00
## Regulation Of Ras By Gaps                                                                                                            1.0e+00
## Regulation Of Runx1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx2 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx3 Expression And Activity                                                                                          1.0e+00
## Regulation Of Signaling By Cbl                                                                                                       1.0e+00
## Regulation Of Signaling By Nodal                                                                                                     1.0e+00
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.0e+00
## Regulation Of Tp53 Activity                                                                                                          1.0e+00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.0e+00
## Regulation Of Tp53 Expression And Degradation                                                                                        1.0e+00
## Relaxin Receptors                                                                                                                    1.0e+00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.0e+00
## Release Of Hh Np From The Secreting Cell                                                                                             1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.0e+00
## Repression Of Wnt Target Genes                                                                                                       1.0e+00
## Reproduction                                                                                                                         1.0e+00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.0e+00
## Resolution Of D Loop Structures                                                                                                      1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.0e+00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.0e+00
## Respiratory Electron Transport                                                                                                       1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.0e+00
## Response Of Mtb To Phagocytosis                                                                                                      1.0e+00
## Response To Metal Ions                                                                                                               1.0e+00
## Ret Signaling                                                                                                                        1.0e+00
## Retinoid Cycle Disease Events                                                                                                        1.0e+00
## Retrograde Neurotrophin Signalling                                                                                                   1.0e+00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.0e+00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.0e+00
## Rho Gtpase Cycle                                                                                                                     1.0e+00
## Rho Gtpase Effectors                                                                                                                 1.0e+00
## Rho Gtpases Activate Cit                                                                                                             1.0e+00
## Rho Gtpases Activate Formins                                                                                                         1.0e+00
## Rho Gtpases Activate Iqgaps                                                                                                          1.0e+00
## Rho Gtpases Activate Ktn1                                                                                                            1.0e+00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.0e+00
## Rho Gtpases Activate Paks                                                                                                            1.0e+00
## Rho Gtpases Activate Pkns                                                                                                            1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.0e+00
## Rho Gtpases Activate Rocks                                                                                                           1.0e+00
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.0e+00
## Rhoa Gtpase Cycle                                                                                                                    1.0e+00
## Rhob Gtpase Cycle                                                                                                                    1.0e+00
## Rhobtb Gtpase Cycle                                                                                                                  1.0e+00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb3 Atpase Cycle                                                                                                                 1.0e+00
## Rhoc Gtpase Cycle                                                                                                                    1.0e+00
## Rhod Gtpase Cycle                                                                                                                    1.0e+00
## Rhof Gtpase Cycle                                                                                                                    1.0e+00
## Rhog Gtpase Cycle                                                                                                                    1.0e+00
## Rhoh Gtpase Cycle                                                                                                                    1.0e+00
## Rhoj Gtpase Cycle                                                                                                                    1.0e+00
## Rhoq Gtpase Cycle                                                                                                                    1.0e+00
## Rhot1 Gtpase Cycle                                                                                                                   1.0e+00
## Rhou Gtpase Cycle                                                                                                                    1.0e+00
## Rhov Gtpase Cycle                                                                                                                    1.0e+00
## Rna Polymerase I Promoter Escape                                                                                                     1.0e+00
## Rna Polymerase I Transcription                                                                                                       1.0e+00
## Rna Polymerase I Transcription Initiation                                                                                            1.0e+00
## Rna Polymerase I Transcription Termination                                                                                           1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.0e+00
## Rna Polymerase Ii Transcription Termination                                                                                          1.0e+00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.0e+00
## Rna Polymerase Iii Transcription                                                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Termination                                                                                         1.0e+00
## Rnd1 Gtpase Cycle                                                                                                                    1.0e+00
## Rnd2 Gtpase Cycle                                                                                                                    1.0e+00
## Rnd3 Gtpase Cycle                                                                                                                    1.0e+00
## Robo Receptors Bind Akap5                                                                                                            1.0e+00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.0e+00
## Role Of Phospholipids In Phagocytosis                                                                                                1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.0e+00
## Rora Activates Gene Expression                                                                                                       1.0e+00
## Ros And Rns Production In Phagocytes                                                                                                 1.0e+00
## Rrna Modification In The Mitochondrion                                                                                               1.0e+00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Rrna Processing                                                                                                                      1.0e+00
## Rrna Processing In The Mitochondrion                                                                                                 1.0e+00
## Rsk Activation                                                                                                                       1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.0e+00
## Runx2 Regulates Bone Development                                                                                                     1.0e+00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.0e+00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.0e+00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.0e+00
## Runx3 Regulates Notch Signaling                                                                                                      1.0e+00
## Runx3 Regulates P14 Arf                                                                                                              1.0e+00
## Runx3 Regulates Wnt Signaling                                                                                                        1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.0e+00
## S Phase                                                                                                                              1.0e+00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.0e+00
## Sars Cov 1 Infection                                                                                                                 1.0e+00
## Sars Cov 2 Infection                                                                                                                 1.0e+00
## Sars Cov Infections                                                                                                                  1.0e+00
## Scavenging By Class A Receptors                                                                                                      1.0e+00
## Scavenging By Class B Receptors                                                                                                      1.0e+00
## Scavenging By Class F Receptors                                                                                                      1.0e+00
## Scavenging Of Heme From Plasma                                                                                                       1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.0e+00
## Selective Autophagy                                                                                                                  1.0e+00
## Selenoamino Acid Metabolism                                                                                                          1.0e+00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.0e+00
## Sema4d In Semaphorin Signaling                                                                                                       1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.0e+00
## Semaphorin Interactions                                                                                                              1.0e+00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.0e+00
## Sensory Perception                                                                                                                   1.0e+00
## Sensory Processing Of Sound                                                                                                          1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.0e+00
## Separation Of Sister Chromatids                                                                                                      1.0e+00
## Serine Biosynthesis                                                                                                                  1.0e+00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.0e+00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.0e+00
## Serotonin Receptors                                                                                                                  1.0e+00
## Shc Mediated Cascade Fgfr1                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr3                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr4                                                                                                           1.0e+00
## Shc Related Events Triggered By Igf1r                                                                                                1.0e+00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.0e+00
## Signal Amplification                                                                                                                 1.0e+00
## Signal Attenuation                                                                                                                   1.0e+00
## Signal Regulatory Protein Family Interactions                                                                                        1.0e+00
## Signaling By Activin                                                                                                                 1.0e+00
## Signaling By Bmp                                                                                                                     1.0e+00
## Signaling By Braf And Raf Fusions                                                                                                    1.0e+00
## Signaling By Csf3 G Csf                                                                                                              1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.0e+00
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          1.0e+00
## Signaling By Erythropoietin                                                                                                          1.0e+00
## Signaling By Fgfr                                                                                                                    1.0e+00
## Signaling By Fgfr In Disease                                                                                                         1.0e+00
## Signaling By Fgfr1                                                                                                                   1.0e+00
## Signaling By Fgfr1 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr2                                                                                                                   1.0e+00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.0e+00
## Signaling By Fgfr2 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr3                                                                                                                   1.0e+00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.0e+00
## Signaling By Fgfr4                                                                                                                   1.0e+00
## Signaling By Fgfr4 In Disease                                                                                                        1.0e+00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.0e+00
## Signaling By Hedgehog                                                                                                                1.0e+00
## Signaling By Hippo                                                                                                                   1.0e+00
## Signaling By Insulin Receptor                                                                                                        1.0e+00
## Signaling By Kit In Disease                                                                                                          1.0e+00
## Signaling By Leptin                                                                                                                  1.0e+00
## Signaling By Lrp5 Mutants                                                                                                            1.0e+00
## Signaling By Mapk Mutants                                                                                                            1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.0e+00
## Signaling By Met                                                                                                                     1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.0e+00
## Signaling By Mras Complex Mutants                                                                                                    1.0e+00
## Signaling By Mst1                                                                                                                    1.0e+00
## Signaling By Nodal                                                                                                                   1.0e+00
## Signaling By Notch1                                                                                                                  1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.0e+00
## Signaling By Notch4                                                                                                                  1.0e+00
## Signaling By Ntrk2 Trkb                                                                                                              1.0e+00
## Signaling By Ntrk3 Trkc                                                                                                              1.0e+00
## Signaling By Pdgf                                                                                                                    1.0e+00
## Signaling By Pdgfr In Disease                                                                                                        1.0e+00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            1.0e+00
## Signaling By Retinoic Acid                                                                                                           1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.0e+00
## Signaling By Rnf43 Mutants                                                                                                           1.0e+00
## Signaling By Robo Receptors                                                                                                          1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.0e+00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.0e+00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.0e+00
## Signaling By Vegf                                                                                                                    1.0e+00
## Signaling By Wnt In Cancer                                                                                                           1.0e+00
## Signalling To Erks                                                                                                                   1.0e+00
## Signalling To P38 Via Rit And Rin                                                                                                    1.0e+00
## Signalling To Ras                                                                                                                    1.0e+00
## Sirt1 Negatively Regulates Rrna Expression                                                                                           1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.0e+00
## Slc Mediated Transmembrane Transport                                                                                                 1.0e+00
## Slc Transporter Disorders                                                                                                            1.0e+00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.0e+00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.0e+00
## Smooth Muscle Contraction                                                                                                            1.0e+00
## Snrnp Assembly                                                                                                                       1.0e+00
## Sodium Calcium Exchangers                                                                                                            1.0e+00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.0e+00
## Sodium Proton Exchangers                                                                                                             1.0e+00
## Sos Mediated Signalling                                                                                                              1.0e+00
## Sperm Motility And Taxes                                                                                                             1.0e+00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.0e+00
## Sphingolipid Metabolism                                                                                                              1.0e+00
## Spry Regulation Of Fgf Signaling                                                                                                     1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.0e+00
## Stabilization Of P53                                                                                                                 1.0e+00
## Stat5 Activation                                                                                                                     1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.0e+00
## Striated Muscle Contraction                                                                                                          1.0e+00
## Sulfide Oxidation To Sulfate                                                                                                         1.0e+00
## Sulfur Amino Acid Metabolism                                                                                                         1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.0e+00
## Sumo Is Proteolytically Processed                                                                                                    1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.0e+00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.0e+00
## Sumoylation Of Dna Replication Proteins                                                                                              1.0e+00
## Sumoylation Of Immune Response Proteins                                                                                              1.0e+00
## Sumoylation Of Intracellular Receptors                                                                                               1.0e+00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.0e+00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.0e+00
## Sumoylation Of Transcription Factors                                                                                                 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.0e+00
## Suppression Of Apoptosis                                                                                                             1.0e+00
## Suppression Of Phagosomal Maturation                                                                                                 1.0e+00
## Surfactant Metabolism                                                                                                                1.0e+00
## Switching Of Origins To A Post Replicative State                                                                                     1.0e+00
## Synaptic Adhesion Like Molecules                                                                                                     1.0e+00
## Syndecan Interactions                                                                                                                1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.0e+00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.0e+00
## Synthesis Of Diphthamide Eef2                                                                                                        1.0e+00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.0e+00
## Synthesis Of Gdp Mannose                                                                                                             1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.0e+00
## Synthesis Of Ketone Bodies                                                                                                           1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.0e+00
## Synthesis Of Lipoxins Lx                                                                                                             1.0e+00
## Synthesis Of Pa                                                                                                                      1.0e+00
## Synthesis Of Pc                                                                                                                      1.0e+00
## Synthesis Of Pe                                                                                                                      1.0e+00
## Synthesis Of Pg                                                                                                                      1.0e+00
## Synthesis Of Pi                                                                                                                      1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.0e+00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.0e+00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.0e+00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             1.0e+00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.0e+00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.0e+00
## Tandem Pore Domain Potassium Channels                                                                                                1.0e+00
## Tbc Rabgaps                                                                                                                          1.0e+00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.0e+00
## Telomere C Strand Synthesis Initiation                                                                                               1.0e+00
## Telomere Extension By Telomerase                                                                                                     1.0e+00
## Telomere Maintenance                                                                                                                 1.0e+00
## Terminal Pathway Of Complement                                                                                                       1.0e+00
## Termination Of Translesion Dna Synthesis                                                                                             1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.0e+00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.0e+00
## The Activation Of Arylsulfatases                                                                                                     1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.0e+00
## The Fatty Acid Cycling Model                                                                                                         1.0e+00
## The Nlrp3 Inflammasome                                                                                                               1.0e+00
## The Phototransduction Cascade                                                                                                        1.0e+00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.0e+00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.0e+00
## Thyroxine Biosynthesis                                                                                                               1.0e+00
## Tie2 Signaling                                                                                                                       1.0e+00
## Tight Junction Interactions                                                                                                          1.0e+00
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 1.0e+00
## Tnfr1 Mediated Ceramide Production                                                                                                   1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.0e+00
## Tp53 Regulates Metabolic Genes                                                                                                       1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.0e+00
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         1.0e+00
## Traf6 Mediated Irf7 Activation                                                                                                       1.0e+00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.0e+00
## Traf6 Mediated Nf Kb Activation                                                                                                      1.0e+00
## Trafficking Of Ampa Receptors                                                                                                        1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.0e+00
## Trail Signaling                                                                                                                      1.0e+00
## Trans Golgi Network Vesicle Budding                                                                                                  1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 1.0e+00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 1.0e+00
## Transcription Of The Hiv Genome                                                                                                      1.0e+00
## Transcriptional Regulation By E2f6                                                                                                   1.0e+00
## Transcriptional Regulation By Runx1                                                                                                  1.0e+00
## Transcriptional Regulation By Runx2                                                                                                  1.0e+00
## Transcriptional Regulation By Runx3                                                                                                  1.0e+00
## Transcriptional Regulation By Small Rnas                                                                                             1.0e+00
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.0e+00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.0e+00
## Transferrin Endocytosis And Recycling                                                                                                1.0e+00
## Translation                                                                                                                          1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.0e+00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.0e+00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.0e+00
## Translesion Synthesis By Polh                                                                                                        1.0e+00
## Translesion Synthesis By Polk                                                                                                        1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.0e+00
## Transport And Synthesis Of Paps                                                                                                      1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.0e+00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.0e+00
## Transport Of Fatty Acids                                                                                                             1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.0e+00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.0e+00
## Transport Of Nucleotide Sugars                                                                                                       1.0e+00
## Transport Of Organic Anions                                                                                                          1.0e+00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.0e+00
## Transport To The Golgi And Subsequent Modification                                                                                   1.0e+00
## Trif Mediated Programmed Cell Death                                                                                                  1.0e+00
## Triglyceride Biosynthesis                                                                                                            1.0e+00
## Triglyceride Catabolism                                                                                                              1.0e+00
## Triglyceride Metabolism                                                                                                              1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.0e+00
## Trna Aminoacylation                                                                                                                  1.0e+00
## Trna Modification In The Mitochondrion                                                                                               1.0e+00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Trna Processing                                                                                                                      1.0e+00
## Trna Processing In The Mitochondrion                                                                                                 1.0e+00
## Trna Processing In The Nucleus                                                                                                       1.0e+00
## Trp Channels                                                                                                                         1.0e+00
## Tryptophan Catabolism                                                                                                                1.0e+00
## Type I Hemidesmosome Assembly                                                                                                        1.0e+00
## Tyrosine Catabolism                                                                                                                  1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.0e+00
## Ubiquinol Biosynthesis                                                                                                               1.0e+00
## Uch Proteinases                                                                                                                      1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.0e+00
## Unwinding Of Dna                                                                                                                     1.0e+00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.0e+00
## Uptake And Function Of Anthrax Toxins                                                                                                1.0e+00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.0e+00
## Urea Cycle                                                                                                                           1.0e+00
## Vasopressin Like Receptors                                                                                                           1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.0e+00
## Vegf Ligand Receptor Interactions                                                                                                    1.0e+00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.0e+00
## Vegfr2 Mediated Vascular Permeability                                                                                                1.0e+00
## Viral Messenger Rna Synthesis                                                                                                        1.0e+00
## Visual Phototransduction                                                                                                             1.0e+00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.0e+00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.0e+00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.0e+00
## Vitamin C Ascorbate Metabolism                                                                                                       1.0e+00
## Vitamin D Calciferol Metabolism                                                                                                      1.0e+00
## Vitamins                                                                                                                             1.0e+00
## Vldl Assembly                                                                                                                        1.0e+00
## Vldl Clearance                                                                                                                       1.0e+00
## Voltage Gated Potassium Channels                                                                                                     1.0e+00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.0e+00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.0e+00
## Wnt Mediated Activation Of Dvl                                                                                                       1.0e+00
## Xenobiotics                                                                                                                          1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.0e+00
## Zinc Transporters                                                                                                                    1.0e+00
##                                                                                                                                          fdr
## Cytokine Signaling In Immune System                                                                                                  5.8e-13
## Interleukin 10 Signaling                                                                                                             1.9e-11
## Signaling By Interleukins                                                                                                            2.6e-08
## Chemokine Receptors Bind Chemokines                                                                                                  5.3e-07
## Interleukin 4 And Interleukin 13 Signaling                                                                                           5.5e-07
## Innate Immune System                                                                                                                 2.8e-05
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    3.3e-04
## G Alpha I Signalling Events                                                                                                          3.8e-04
## Peptide Ligand Binding Receptors                                                                                                     3.8e-04
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         7.1e-04
## Signaling By Gpcr                                                                                                                    8.6e-04
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               1.6e-03
## Extra Nuclear Estrogen Signaling                                                                                                     1.6e-03
## Tnfs Bind Their Physiological Receptors                                                                                              2.6e-03
## Gpcr Ligand Binding                                                                                                                  2.6e-03
## Leishmania Infection                                                                                                                 2.6e-03
## Class A 1 Rhodopsin Like Receptors                                                                                                   3.6e-03
## Cd163 Mediating An Anti Inflammatory Response                                                                                        1.1e-02
## Interleukin 1 Processing                                                                                                             1.1e-02
## Regulated Necrosis                                                                                                                   1.4e-02
## Toll Like Receptor Cascades                                                                                                          1.7e-02
## Costimulation By The Cd28 Family                                                                                                     2.8e-02
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     3.8e-02
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         4.0e-02
## Esr Mediated Signaling                                                                                                               5.3e-02
## Myd88 Independent Tlr4 Cascade                                                                                                       5.3e-02
## Pi3k Akt Signaling In Cancer                                                                                                         6.4e-02
## Purinergic Signaling In Leishmaniasis Infection                                                                                      6.5e-02
## Pyroptosis                                                                                                                           6.7e-02
## Negative Regulation Of The Pi3k Akt Network                                                                                          6.7e-02
## Pd 1 Signaling                                                                                                                       6.7e-02
## Senescence Associated Secretory Phenotype Sasp                                                                                       6.7e-02
## Post Translational Protein Modification                                                                                              6.8e-02
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  7.6e-02
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              7.8e-02
## Infectious Disease                                                                                                                   7.8e-02
## Interleukin 1 Family Signaling                                                                                                       1.0e-01
## Ngf Stimulated Transcription                                                                                                         1.0e-01
## Signaling By Nuclear Receptors                                                                                                       1.0e-01
## Intracellular Signaling By Second Messengers                                                                                         1.1e-01
## Adaptive Immune System                                                                                                               1.8e-01
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             2.0e-01
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             2.2e-01
## Nuclear Events Kinase And Transcription Factor Activation                                                                            2.2e-01
## Cellular Senescence                                                                                                                  2.3e-01
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         2.3e-01
## Programmed Cell Death                                                                                                                2.5e-01
## Circadian Clock                                                                                                                      2.7e-01
## Interleukin 17 Signaling                                                                                                             2.7e-01
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   2.9e-01
## Mecp2 Regulates Transcription Factors                                                                                                3.0e-01
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    3.0e-01
## Clec7a Inflammasome Pathway                                                                                                          3.3e-01
## Fibronectin Matrix Formation                                                                                                         3.3e-01
## Ptk6 Promotes Hif1a Stabilization                                                                                                    3.3e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 3.3e-01
## Creb Phosphorylation                                                                                                                 3.7e-01
## Neutrophil Degranulation                                                                                                             3.7e-01
## Fcgr3a Mediated Il10 Synthesis                                                                                                       3.8e-01
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    3.8e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         3.9e-01
## Interleukin 18 Signaling                                                                                                             3.9e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    3.9e-01
## Signaling By Receptor Tyrosine Kinases                                                                                               3.9e-01
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  4.0e-01
## Egfr Interacts With Phospholipase C Gamma                                                                                            4.0e-01
## Egfr Transactivation By Gastrin                                                                                                      4.0e-01
## Mapk1 Erk2 Activation                                                                                                                4.0e-01
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 4.0e-01
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               4.2e-01
## Akt Phosphorylates Targets In The Nucleus                                                                                            4.2e-01
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             4.2e-01
## Mapk3 Erk1 Activation                                                                                                                4.2e-01
## Extracellular Matrix Organization                                                                                                    4.3e-01
## Interleukin 6 Signaling                                                                                                              4.4e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     4.4e-01
## Cd28 Dependent Vav1 Pathway                                                                                                          4.5e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    4.5e-01
## Killing Mechanisms                                                                                                                   4.5e-01
## Notch2 Intracellular Domain Regulates Transcription                                                                                  4.5e-01
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             4.5e-01
## Vldlr Internalisation And Degradation                                                                                                4.5e-01
## Dissolution Of Fibrin Clot                                                                                                           4.5e-01
## Erbb2 Activates Ptk6 Signaling                                                                                                       4.5e-01
## Irf3 Mediated Induction Of Type I Ifn                                                                                                4.5e-01
## Trafficking And Processing Of Endosomal Tlr                                                                                          4.5e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                4.5e-01
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              4.7e-01
## Shc1 Events In Egfr Signaling                                                                                                        4.7e-01
## Signaling By Ntrks                                                                                                                   4.7e-01
## Constitutive Signaling By Egfrviii                                                                                                   4.7e-01
## Erbb2 Regulates Cell Motility                                                                                                        4.7e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             4.7e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      4.7e-01
## Wnt5a Dependent Internalization Of Fzd4                                                                                              4.7e-01
## Hcmv Early Events                                                                                                                    4.7e-01
## C Type Lectin Receptors Clrs                                                                                                         4.7e-01
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           4.7e-01
## Grb2 Events In Erbb2 Signaling                                                                                                       4.7e-01
## Pi3k Events In Erbb2 Signaling                                                                                                       4.7e-01
## Signaling By Erbb2 Ecd Mutants                                                                                                       4.7e-01
## Sting Mediated Induction Of Host Immune Responses                                                                                    4.7e-01
## Sumoylation Of Dna Methylation Proteins                                                                                              4.7e-01
## Clathrin Mediated Endocytosis                                                                                                        4.8e-01
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        4.8e-01
## Gab1 Signalosome                                                                                                                     4.8e-01
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                4.8e-01
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      5.0e-01
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     5.2e-01
## Ldl Clearance                                                                                                                        5.2e-01
## Pka Mediated Phosphorylation Of Creb                                                                                                 5.4e-01
## Hcmv Infection                                                                                                                       5.4e-01
## Ctla4 Inhibitory Signaling                                                                                                           5.4e-01
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     5.4e-01
## Inflammasomes                                                                                                                        5.4e-01
## Signal Transduction By L1                                                                                                            5.4e-01
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           5.4e-01
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    5.6e-01
## Shc1 Events In Erbb2 Signaling                                                                                                       5.6e-01
## Ikk Complex Recruitment Mediated By Rip1                                                                                             5.7e-01
## Raf Independent Mapk1 3 Activation                                                                                                   5.7e-01
## Termination Of O Glycan Biosynthesis                                                                                                 5.7e-01
## Interleukin 6 Family Signaling                                                                                                       5.9e-01
## Cellular Responses To External Stimuli                                                                                               5.9e-01
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          6.0e-01
## Signaling By Egfr In Cancer                                                                                                          6.0e-01
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        6.0e-01
## Dectin 2 Family                                                                                                                      6.0e-01
## Signaling By Erbb2 In Cancer                                                                                                         6.0e-01
## Wnt Ligand Biogenesis And Trafficking                                                                                                6.0e-01
## Sumoylation                                                                                                                          6.1e-01
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     6.1e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                6.1e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     6.3e-01
## Cell Surface Interactions At The Vascular Wall                                                                                       6.3e-01
## Downregulation Of Erbb2 Signaling                                                                                                    6.3e-01
## Ripk1 Mediated Regulated Necrosis                                                                                                    6.3e-01
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             6.5e-01
## Diseases Of Immune System                                                                                                            6.6e-01
## Egfr Downregulation                                                                                                                  6.6e-01
## Perk Regulates Gene Expression                                                                                                       6.7e-01
## Regulation Of Mecp2 Expression And Activity                                                                                          6.7e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               6.7e-01
## Activation Of Matrix Metalloproteinases                                                                                              6.7e-01
## Cd28 Co Stimulation                                                                                                                  6.7e-01
## Plasma Lipoprotein Clearance                                                                                                         6.7e-01
## Sialic Acid Metabolism                                                                                                               6.7e-01
## Signaling By Notch2                                                                                                                  6.7e-01
## G Alpha Q Signalling Events                                                                                                          6.9e-01
## Regulation Of Tnfr1 Signaling                                                                                                        7.0e-01
## Nod1 2 Signaling Pathway                                                                                                             7.1e-01
## Ub Specific Processing Proteases                                                                                                     7.1e-01
## Ca Dependent Events                                                                                                                  7.2e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   7.3e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         7.3e-01
## Generation Of Second Messenger Molecules                                                                                             7.4e-01
## Dag And Ip3 Signaling                                                                                                                7.7e-01
## Transcriptional Regulation By Ventx                                                                                                  7.7e-01
## Signaling By Scf Kit                                                                                                                 7.9e-01
## Sumoylation Of Transcription Cofactors                                                                                               7.9e-01
## Signaling By Notch                                                                                                                   8.0e-01
## Tnf Signaling                                                                                                                        8.0e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           8.0e-01
## Dap12 Interactions                                                                                                                   8.1e-01
## Interleukin 12 Signaling                                                                                                             8.4e-01
## Heme Signaling                                                                                                                       8.5e-01
## Signaling By Notch3                                                                                                                  8.6e-01
## Signaling By Egfr                                                                                                                    8.7e-01
## Signaling By Erbb2                                                                                                                   8.7e-01
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               8.8e-01
## G Protein Mediated Events                                                                                                            9.2e-01
## Signaling By Ptk6                                                                                                                    9.2e-01
## Interleukin 12 Family Signaling                                                                                                      9.5e-01
## Nervous System Development                                                                                                           9.2e-01
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               9.2e-01
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         9.9e-01
## Ca2 Pathway                                                                                                                          9.9e-01
## Deubiquitination                                                                                                                     9.9e-01
## Ncam Signaling For Neurite Out Growth                                                                                                9.9e-01
## O Linked Glycosylation Of Mucins                                                                                                     9.9e-01
## Signaling By Erbb4                                                                                                                   9.6e-01
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      9.9e-01
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     9.9e-01
## Transcriptional Regulation By Mecp2                                                                                                  9.9e-01
## Asymmetric Localization Of Pcp Proteins                                                                                              1.0e+00
## Collagen Degradation                                                                                                                 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.0e+00
## Dna Methylation                                                                                                                      1.0e+00
## Rna Polymerase Ii Transcription                                                                                                      1.0e+00
## Mapk Family Signaling Cascades                                                                                                       1.0e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.0e+00
## Prc2 Methylates Histones And Dna                                                                                                     1.0e+00
## Signaling By Tgf Beta Receptor Complex                                                                                               1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.0e+00
## Ecm Proteoglycans                                                                                                                    1.0e+00
## Hemostasis                                                                                                                           1.0e+00
## Rmts Methylate Histone Arginines                                                                                                     1.0e+00
## Fceri Mediated Mapk Activation                                                                                                       1.0e+00
## Collagen Formation                                                                                                                   1.0e+00
## Eph Ephrin Signaling                                                                                                                 1.0e+00
## Interferon Gamma Signaling                                                                                                           1.0e+00
## Opioid Signalling                                                                                                                    1.0e+00
## Pcp Ce Pathway                                                                                                                       1.0e+00
## Transcriptional Regulation Of Granulopoiesis                                                                                         1.0e+00
## Unfolded Protein Response Upr                                                                                                        1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.0e+00
## Class B 2 Secretin Family Receptors                                                                                                  1.0e+00
## Clec7a Dectin 1 Signaling                                                                                                            1.0e+00
## Mitochondrial Biogenesis                                                                                                             1.0e+00
## Diseases Of Programmed Cell Death                                                                                                    1.0e+00
## Interleukin 1 Signaling                                                                                                              1.0e+00
## Signaling By Tgfb Family Members                                                                                                     1.0e+00
## Stimuli Sensing Channels                                                                                                             1.0e+00
## Amyloid Fiber Formation                                                                                                              1.0e+00
## O Linked Glycosylation                                                                                                               1.0e+00
## L1cam Interactions                                                                                                                   1.0e+00
## Tcr Signaling                                                                                                                        1.0e+00
## Mhc Class Ii Antigen Presentation                                                                                                    1.0e+00
## Oxidative Stress Induced Senescence                                                                                                  1.0e+00
## Response To Elevated Platelet Cytosolic Ca2                                                                                          1.0e+00
## Death Receptor Signalling                                                                                                            1.0e+00
## Degradation Of The Extracellular Matrix                                                                                              1.0e+00
## Diseases Of Glycosylation                                                                                                            1.0e+00
## Beta Catenin Independent Wnt Signaling                                                                                               1.0e+00
## Epigenetic Regulation Of Gene Expression                                                                                             1.0e+00
## Estrogen Dependent Gene Expression                                                                                                   1.0e+00
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.0e+00
## Ion Channel Transport                                                                                                                1.0e+00
## Interferon Signaling                                                                                                                 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.0e+00
## Membrane Trafficking                                                                                                                 1.0e+00
## Tcf Dependent Signaling In Response To Wnt                                                                                           1.0e+00
## Developmental Biology                                                                                                                1.0e+00
## Diseases Of Metabolism                                                                                                               1.0e+00
## Platelet Activation Signaling And Aggregation                                                                                        1.0e+00
## Chromatin Modifying Enzymes                                                                                                          1.0e+00
## Transmission Across Chemical Synapses                                                                                                1.0e+00
## Transport Of Small Molecules                                                                                                         1.0e+00
## Vesicle Mediated Transport                                                                                                           1.0e+00
## Organelle Biogenesis And Maintenance                                                                                                 1.0e+00
## Asparagine N Linked Glycosylation                                                                                                    1.0e+00
## Signaling By Wnt                                                                                                                     1.0e+00
## Transcriptional Regulation By Tp53                                                                                                   1.0e+00
## Neuronal System                                                                                                                      1.0e+00
## 2 Ltr Circle Formation                                                                                                               1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.0e+00
## Abacavir Metabolism                                                                                                                  1.0e+00
## Abacavir Transmembrane Transport                                                                                                     1.0e+00
## Abacavir Transport And Metabolism                                                                                                    1.0e+00
## Abc Family Proteins Mediated Transport                                                                                               1.0e+00
## Abc Transporter Disorders                                                                                                            1.0e+00
## Abc Transporters In Lipid Homeostasis                                                                                                1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.0e+00
## Acetylcholine Binding And Downstream Events                                                                                          1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.0e+00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.0e+00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.0e+00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.0e+00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.0e+00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.0e+00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.0e+00
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          1.0e+00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.0e+00
## Activation Of Atr In Response To Replication Stress                                                                                  1.0e+00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.0e+00
## Activation Of Bh3 Only Proteins                                                                                                      1.0e+00
## Activation Of C3 And C5                                                                                                              1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.0e+00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.0e+00
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.0e+00
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            1.0e+00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.0e+00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Rac1                                                                                                                   1.0e+00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Ras In B Cells                                                                                                         1.0e+00
## Activation Of Smo                                                                                                                    1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.0e+00
## Activation Of The Phototransduction Cascade                                                                                          1.0e+00
## Activation Of The Pre Replicative Complex                                                                                            1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.0e+00
## Activation Of Trka Receptors                                                                                                         1.0e+00
## Acyl Chain Remodeling Of Cl                                                                                                          1.0e+00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.0e+00
## Acyl Chain Remodelling Of Pc                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pe                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pg                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pi                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Ps                                                                                                         1.0e+00
## Adenylate Cyclase Activating Pathway                                                                                                 1.0e+00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.0e+00
## Adherens Junctions Interactions                                                                                                      1.0e+00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.0e+00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.0e+00
## Adrenoceptors                                                                                                                        1.0e+00
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 1.0e+00
## Aflatoxin Activation And Detoxification                                                                                              1.0e+00
## Aggrephagy                                                                                                                           1.0e+00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.0e+00
## Alpha Defensins                                                                                                                      1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.0e+00
## Alpha Oxidation Of Phytanate                                                                                                         1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.0e+00
## Alternative Complement Activation                                                                                                    1.0e+00
## Amine Ligand Binding Receptors                                                                                                       1.0e+00
## Amino Acid Conjugation                                                                                                               1.0e+00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.0e+00
## Amino Acids Regulate Mtorc1                                                                                                          1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.0e+00
## Anchoring Fibril Formation                                                                                                           1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.0e+00
## Androgen Biosynthesis                                                                                                                1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.0e+00
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             1.0e+00
## Antigen Processing Cross Presentation                                                                                                1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.0e+00
## Antimicrobial Peptides                                                                                                               1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.0e+00
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.0e+00
## Apoptosis                                                                                                                            1.0e+00
## Apoptosis Induced Dna Fragmentation                                                                                                  1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.0e+00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.0e+00
## Apoptotic Execution Phase                                                                                                            1.0e+00
## Apoptotic Factor Mediated Response                                                                                                   1.0e+00
## Aquaporin Mediated Transport                                                                                                         1.0e+00
## Arachidonate Production From Dag                                                                                                     1.0e+00
## Arachidonic Acid Metabolism                                                                                                          1.0e+00
## Arms Mediated Activation                                                                                                             1.0e+00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.0e+00
## Aspartate And Asparagine Metabolism                                                                                                  1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.0e+00
## Assembly Of The Hiv Virion                                                                                                           1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.0e+00
## Assembly Of The Pre Replicative Complex                                                                                              1.0e+00
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.0e+00
## Attachment And Entry                                                                                                                 1.0e+00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.0e+00
## Attenuation Phase                                                                                                                    1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.0e+00
## Aurka Activation By Tpx2                                                                                                             1.0e+00
## Autophagy                                                                                                                            1.0e+00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.0e+00
## Base Excision Repair                                                                                                                 1.0e+00
## Base Excision Repair Ap Site Formation                                                                                               1.0e+00
## Basigin Interactions                                                                                                                 1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.0e+00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.0e+00
## Beta Defensins                                                                                                                       1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.0e+00
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         1.0e+00
## Bicarbonate Transporters                                                                                                             1.0e+00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.0e+00
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.0e+00
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   1.0e+00
## Biological Oxidations                                                                                                                1.0e+00
## Biosynthesis Of Epa Derived Spms                                                                                                     1.0e+00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.0e+00
## Biosynthesis Of Maresins                                                                                                             1.0e+00
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              1.0e+00
## Biotin Transport And Metabolism                                                                                                      1.0e+00
## Blood Group Systems Biosynthesis                                                                                                     1.0e+00
## Branched Chain Amino Acid Catabolism                                                                                                 1.0e+00
## Budding And Maturation Of Hiv Virion                                                                                                 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.0e+00
## Butyrophilin Btn Family Interactions                                                                                                 1.0e+00
## Ca2 Activated K Channels                                                                                                             1.0e+00
## Calcineurin Activates Nfat                                                                                                           1.0e+00
## Calcitonin Like Ligand Receptors                                                                                                     1.0e+00
## Calnexin Calreticulin Cycle                                                                                                          1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.0e+00
## Cardiac Conduction                                                                                                                   1.0e+00
## Cargo Concentration In The Er                                                                                                        1.0e+00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.0e+00
## Carnitine Metabolism                                                                                                                 1.0e+00
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.0e+00
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.0e+00
## Cation Coupled Chloride Cotransporters                                                                                               1.0e+00
## Cd209 Dc Sign Signaling                                                                                                              1.0e+00
## Cd22 Mediated Bcr Regulation                                                                                                         1.0e+00
## Cdc42 Gtpase Cycle                                                                                                                   1.0e+00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.0e+00
## Cell Cell Communication                                                                                                              1.0e+00
## Cell Cell Junction Organization                                                                                                      1.0e+00
## Cell Cycle                                                                                                                           1.0e+00
## Cell Cycle Checkpoints                                                                                                               1.0e+00
## Cell Cycle Mitotic                                                                                                                   1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.0e+00
## Cell Extracellular Matrix Interactions                                                                                               1.0e+00
## Cell Junction Organization                                                                                                           1.0e+00
## Cellular Hexose Transport                                                                                                            1.0e+00
## Cellular Response To Chemical Stress                                                                                                 1.0e+00
## Cellular Response To Heat Stress                                                                                                     1.0e+00
## Cellular Response To Hypoxia                                                                                                         1.0e+00
## Cellular Response To Starvation                                                                                                      1.0e+00
## Cgmp Effects                                                                                                                         1.0e+00
## Chaperone Mediated Autophagy                                                                                                         1.0e+00
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        1.0e+00
## Chl1 Interactions                                                                                                                    1.0e+00
## Cholesterol Biosynthesis                                                                                                             1.0e+00
## Choline Catabolism                                                                                                                   1.0e+00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.0e+00
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.0e+00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.0e+00
## Chromosome Maintenance                                                                                                               1.0e+00
## Chylomicron Assembly                                                                                                                 1.0e+00
## Chylomicron Clearance                                                                                                                1.0e+00
## Chylomicron Remodeling                                                                                                               1.0e+00
## Cilium Assembly                                                                                                                      1.0e+00
## Citric Acid Cycle Tca Cycle                                                                                                          1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.0e+00
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.0e+00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.0e+00
## Coenzyme A Biosynthesis                                                                                                              1.0e+00
## Cohesin Loading Onto Chromatin                                                                                                       1.0e+00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.0e+00
## Collagen Chain Trimerization                                                                                                         1.0e+00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.0e+00
## Complement Cascade                                                                                                                   1.0e+00
## Complex I Biogenesis                                                                                                                 1.0e+00
## Condensation Of Prometaphase Chromosomes                                                                                             1.0e+00
## Condensation Of Prophase Chromosomes                                                                                                 1.0e+00
## Conjugation Of Benzoate With Glycine                                                                                                 1.0e+00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.0e+00
## Copi Mediated Anterograde Transport                                                                                                  1.0e+00
## Copii Mediated Vesicle Transport                                                                                                     1.0e+00
## Creatine Metabolism                                                                                                                  1.0e+00
## Creation Of C4 And C2 Activators                                                                                                     1.0e+00
## Creb3 Factors Activate Genes                                                                                                         1.0e+00
## Cristae Formation                                                                                                                    1.0e+00
## Crmps In Sema3a Signaling                                                                                                            1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.0e+00
## Crosslinking Of Collagen Fibrils                                                                                                     1.0e+00
## Cs Ds Degradation                                                                                                                    1.0e+00
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.0e+00
## Cyclin D Associated Events In G1                                                                                                     1.0e+00
## Cyp2e1 Reactions                                                                                                                     1.0e+00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.0e+00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.0e+00
## Cytoprotection By Hmox1                                                                                                              1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.0e+00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.0e+00
## Cytosolic Trna Aminoacylation                                                                                                        1.0e+00
## Dap12 Signaling                                                                                                                      1.0e+00
## Darpp 32 Events                                                                                                                      1.0e+00
## Dcc Mediated Attractive Signaling                                                                                                    1.0e+00
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.0e+00
## Deadenylation Dependent Mrna Decay                                                                                                   1.0e+00
## Deadenylation Of Mrna                                                                                                                1.0e+00
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.0e+00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.0e+00
## Defective Chst3 Causes Sedcjd                                                                                                        1.0e+00
## Defective Chst6 Causes Mcdc1                                                                                                         1.0e+00
## Defective Chsy1 Causes Tpbs                                                                                                          1.0e+00
## Defective Csf2rb Causes Smdp5                                                                                                        1.0e+00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.0e+00
## Defective F9 Activation                                                                                                              1.0e+00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.0e+00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.0e+00
## Defective Lfng Causes Scdo3                                                                                                          1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.0e+00
## Defects In Biotin Btn Metabolism                                                                                                     1.0e+00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.0e+00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.0e+00
## Defensins                                                                                                                            1.0e+00
## Degradation Of Axin                                                                                                                  1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.0e+00
## Degradation Of Cysteine And Homocysteine                                                                                             1.0e+00
## Degradation Of Dvl                                                                                                                   1.0e+00
## Degradation Of Gli1 By The Proteasome                                                                                                1.0e+00
## Depolymerisation Of The Nuclear Lamina                                                                                               1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.0e+00
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          1.0e+00
## Dermatan Sulfate Biosynthesis                                                                                                        1.0e+00
## Detoxification Of Reactive Oxygen Species                                                                                            1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.0e+00
## Digestion                                                                                                                            1.0e+00
## Digestion And Absorption                                                                                                             1.0e+00
## Digestion Of Dietary Carbohydrate                                                                                                    1.0e+00
## Digestion Of Dietary Lipid                                                                                                           1.0e+00
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.0e+00
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        1.0e+00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With Surfactant Metabolism                                                                                       1.0e+00
## Diseases Of Base Excision Repair                                                                                                     1.0e+00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.0e+00
## Diseases Of Dna Repair                                                                                                               1.0e+00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.0e+00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.0e+00
## Disinhibition Of Snare Formation                                                                                                     1.0e+00
## Disorders Of Transmembrane Transporters                                                                                              1.0e+00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.0e+00
## Dna Damage Bypass                                                                                                                    1.0e+00
## Dna Damage Recognition In Gg Ner                                                                                                     1.0e+00
## Dna Damage Reversal                                                                                                                  1.0e+00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.0e+00
## Dna Double Strand Break Repair                                                                                                       1.0e+00
## Dna Double Strand Break Response                                                                                                     1.0e+00
## Dna Repair                                                                                                                           1.0e+00
## Dna Replication                                                                                                                      1.0e+00
## Dna Replication Initiation                                                                                                           1.0e+00
## Dna Replication Pre Initiation                                                                                                       1.0e+00
## Dna Strand Elongation                                                                                                                1.0e+00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.0e+00
## Dopamine Receptors                                                                                                                   1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.0e+00
## Downregulation Of Erbb4 Signaling                                                                                                    1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.0e+00
## Downstream Signal Transduction                                                                                                       1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.0e+00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.0e+00
## Dscam Interactions                                                                                                                   1.0e+00
## Dual Incision In Gg Ner                                                                                                              1.0e+00
## Dual Incision In Tc Ner                                                                                                              1.0e+00
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          1.0e+00
## E2f Mediated Regulation Of Dna Replication                                                                                           1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.0e+00
## Early Phase Of Hiv Life Cycle                                                                                                        1.0e+00
## Effects Of Pip2 Hydrolysis                                                                                                           1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.0e+00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.0e+00
## Eicosanoids                                                                                                                          1.0e+00
## Elastic Fibre Formation                                                                                                              1.0e+00
## Electric Transmission Across Gap Junctions                                                                                           1.0e+00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.0e+00
## Endogenous Sterols                                                                                                                   1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.0e+00
## Endosomal Vacuolar Pathway                                                                                                           1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.0e+00
## Enos Activation                                                                                                                      1.0e+00
## Epha Mediated Growth Cone Collapse                                                                                                   1.0e+00
## Ephb Mediated Forward Signaling                                                                                                      1.0e+00
## Ephrin Signaling                                                                                                                     1.0e+00
## Er Quality Control Compartment Erqc                                                                                                  1.0e+00
## Er To Golgi Anterograde Transport                                                                                                    1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.0e+00
## Erk Mapk Targets                                                                                                                     1.0e+00
## Erks Are Inactivated                                                                                                                 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.0e+00
## Erythropoietin Activates Ras                                                                                                         1.0e+00
## Erythropoietin Activates Stat5                                                                                                       1.0e+00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.0e+00
## Estrogen Biosynthesis                                                                                                                1.0e+00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.0e+00
## Ethanol Oxidation                                                                                                                    1.0e+00
## Eukaryotic Translation Elongation                                                                                                    1.0e+00
## Eukaryotic Translation Initiation                                                                                                    1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.0e+00
## Extension Of Telomeres                                                                                                               1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.0e+00
## Fanconi Anemia Pathway                                                                                                               1.0e+00
## Fasl Cd95l Signaling                                                                                                                 1.0e+00
## Fatty Acid Metabolism                                                                                                                1.0e+00
## Fatty Acids                                                                                                                          1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.0e+00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.0e+00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.0e+00
## Fceri Mediated Nf Kb Activation                                                                                                      1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.0e+00
## Fcgr Activation                                                                                                                      1.0e+00
## Fertilization                                                                                                                        1.0e+00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr1 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2 Alternative Splicing                                                                                                           1.0e+00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.0e+00
## Flt3 Signaling                                                                                                                       1.0e+00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.0e+00
## Flt3 Signaling In Disease                                                                                                            1.0e+00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.0e+00
## Folding Of Actin By Cct Tric                                                                                                         1.0e+00
## Formation Of Apoptosome                                                                                                              1.0e+00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.0e+00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.0e+00
## Formation Of Incision Complex In Gg Ner                                                                                              1.0e+00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.0e+00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.0e+00
## Formation Of The Cornified Envelope                                                                                                  1.0e+00
## Formation Of The Early Elongation Complex                                                                                            1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.0e+00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.0e+00
## Foxo Mediated Transcription                                                                                                          1.0e+00
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      1.0e+00
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.0e+00
## Free Fatty Acid Receptors                                                                                                            1.0e+00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.0e+00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.0e+00
## Fructose Catabolism                                                                                                                  1.0e+00
## Fructose Metabolism                                                                                                                  1.0e+00
## G Alpha 12 13 Signalling Events                                                                                                      1.0e+00
## G Alpha S Signalling Events                                                                                                          1.0e+00
## G Alpha Z Signalling Events                                                                                                          1.0e+00
## G Beta Gamma Signalling Through Cdc42                                                                                                1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.0e+00
## G Protein Activation                                                                                                                 1.0e+00
## G Protein Beta Gamma Signalling                                                                                                      1.0e+00
## G0 And Early G1                                                                                                                      1.0e+00
## G1 S Dna Damage Checkpoints                                                                                                          1.0e+00
## G1 S Specific Transcription                                                                                                          1.0e+00
## G2 M Checkpoints                                                                                                                     1.0e+00
## G2 M Dna Damage Checkpoint                                                                                                           1.0e+00
## G2 M Dna Replication Checkpoint                                                                                                      1.0e+00
## G2 Phase                                                                                                                             1.0e+00
## Gaba B Receptor Activation                                                                                                           1.0e+00
## Gaba Receptor Activation                                                                                                             1.0e+00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.0e+00
## Galactose Catabolism                                                                                                                 1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.0e+00
## Gap Junction Assembly                                                                                                                1.0e+00
## Gap Junction Degradation                                                                                                             1.0e+00
## Gap Junction Trafficking And Regulation                                                                                              1.0e+00
## Gdp Fucose Biosynthesis                                                                                                              1.0e+00
## Gene Silencing By Rna                                                                                                                1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.0e+00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.0e+00
## Glucagon Type Ligand Receptors                                                                                                       1.0e+00
## Glucocorticoid Biosynthesis                                                                                                          1.0e+00
## Gluconeogenesis                                                                                                                      1.0e+00
## Glucose Metabolism                                                                                                                   1.0e+00
## Glucuronidation                                                                                                                      1.0e+00
## Glutamate And Glutamine Metabolism                                                                                                   1.0e+00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.0e+00
## Glutathione Conjugation                                                                                                              1.0e+00
## Glutathione Synthesis And Recycling                                                                                                  1.0e+00
## Glycerophospholipid Biosynthesis                                                                                                     1.0e+00
## Glycerophospholipid Catabolism                                                                                                       1.0e+00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.0e+00
## Glycogen Metabolism                                                                                                                  1.0e+00
## Glycogen Storage Diseases                                                                                                            1.0e+00
## Glycogen Synthesis                                                                                                                   1.0e+00
## Glycolysis                                                                                                                           1.0e+00
## Glycosaminoglycan Metabolism                                                                                                         1.0e+00
## Glycosphingolipid Metabolism                                                                                                         1.0e+00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.0e+00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.0e+00
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  1.0e+00
## Golgi To Er Retrograde Transport                                                                                                     1.0e+00
## Gp1b Ix V Activation Signalling                                                                                                      1.0e+00
## Gpvi Mediated Activation Cascade                                                                                                     1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.0e+00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Growth Hormone Receptor Signaling                                                                                                    1.0e+00
## Hats Acetylate Histones                                                                                                              1.0e+00
## Hcmv Late Events                                                                                                                     1.0e+00
## Hdacs Deacetylate Histones                                                                                                           1.0e+00
## Hdl Assembly                                                                                                                         1.0e+00
## Hdl Clearance                                                                                                                        1.0e+00
## Hdl Remodeling                                                                                                                       1.0e+00
## Hdms Demethylate Histones                                                                                                            1.0e+00
## Hdr Through Homologous Recombination Hrr                                                                                             1.0e+00
## Hdr Through Mmej Alt Nhej                                                                                                            1.0e+00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.0e+00
## Hedgehog Ligand Biogenesis                                                                                                           1.0e+00
## Hedgehog Off State                                                                                                                   1.0e+00
## Hedgehog On State                                                                                                                    1.0e+00
## Heme Biosynthesis                                                                                                                    1.0e+00
## Heme Degradation                                                                                                                     1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.0e+00
## Histidine Catabolism                                                                                                                 1.0e+00
## Hiv Elongation Arrest And Recovery                                                                                                   1.0e+00
## Hiv Infection                                                                                                                        1.0e+00
## Hiv Life Cycle                                                                                                                       1.0e+00
## Hiv Transcription Elongation                                                                                                         1.0e+00
## Hiv Transcription Initiation                                                                                                         1.0e+00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.0e+00
## Homology Directed Repair                                                                                                             1.0e+00
## Hormone Ligand Binding Receptors                                                                                                     1.0e+00
## Host Interactions Of Hiv Factors                                                                                                     1.0e+00
## Hs Gag Biosynthesis                                                                                                                  1.0e+00
## Hs Gag Degradation                                                                                                                   1.0e+00
## Hsf1 Activation                                                                                                                      1.0e+00
## Hsf1 Dependent Transactivation                                                                                                       1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.0e+00
## Hyaluronan Biosynthesis And Export                                                                                                   1.0e+00
## Hyaluronan Metabolism                                                                                                                1.0e+00
## Hyaluronan Uptake And Degradation                                                                                                    1.0e+00
## Hydrolysis Of Lpc                                                                                                                    1.0e+00
## Ikba Variant Leads To Eda Id                                                                                                         1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.0e+00
## Inactivation Of Cdc42 And Rac1                                                                                                       1.0e+00
## Inactivation Of Csf3 G Csf Signaling                                                                                                 1.0e+00
## Incretin Synthesis Secretion And Inactivation                                                                                        1.0e+00
## Infection With Mycobacterium Tuberculosis                                                                                            1.0e+00
## Influenza Infection                                                                                                                  1.0e+00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.0e+00
## Initial Triggering Of Complement                                                                                                     1.0e+00
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.0e+00
## Inositol Phosphate Metabolism                                                                                                        1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.0e+00
## Insulin Processing                                                                                                                   1.0e+00
## Insulin Receptor Recycling                                                                                                           1.0e+00
## Insulin Receptor Signalling Cascade                                                                                                  1.0e+00
## Integration Of Energy Metabolism                                                                                                     1.0e+00
## Integration Of Provirus                                                                                                              1.0e+00
## Integrin Cell Surface Interactions                                                                                                   1.0e+00
## Integrin Signaling                                                                                                                   1.0e+00
## Interaction Between L1 And Ankyrins                                                                                                  1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.0e+00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.0e+00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.0e+00
## Interferon Alpha Beta Signaling                                                                                                      1.0e+00
## Interleukin 15 Signaling                                                                                                             1.0e+00
## Interleukin 2 Family Signaling                                                                                                       1.0e+00
## Interleukin 2 Signaling                                                                                                              1.0e+00
## Interleukin 20 Family Signaling                                                                                                      1.0e+00
## Interleukin 21 Signaling                                                                                                             1.0e+00
## Interleukin 23 Signaling                                                                                                             1.0e+00
## Interleukin 27 Signaling                                                                                                             1.0e+00
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.0e+00
## Interleukin 35 Signalling                                                                                                            1.0e+00
## Interleukin 36 Pathway                                                                                                               1.0e+00
## Interleukin 37 Signaling                                                                                                             1.0e+00
## Interleukin 7 Signaling                                                                                                              1.0e+00
## Interleukin 9 Signaling                                                                                                              1.0e+00
## Interleukin Receptor Shc Signaling                                                                                                   1.0e+00
## Intestinal Absorption                                                                                                                1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.0e+00
## Intra Golgi Traffic                                                                                                                  1.0e+00
## Intraflagellar Transport                                                                                                             1.0e+00
## Intrinsic Pathway For Apoptosis                                                                                                      1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Inwardly Rectifying K Channels                                                                                                       1.0e+00
## Ion Homeostasis                                                                                                                      1.0e+00
## Ion Transport By P Type Atpases                                                                                                      1.0e+00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.0e+00
## Irak1 Recruits Ikk Complex                                                                                                           1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.0e+00
## Irak4 Deficiency Tlr2 4                                                                                                              1.0e+00
## Ire1alpha Activates Chaperones                                                                                                       1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.0e+00
## Iron Uptake And Transport                                                                                                            1.0e+00
## Irs Activation                                                                                                                       1.0e+00
## Irs Mediated Signalling                                                                                                              1.0e+00
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.0e+00
## Josephin Domain Dubs                                                                                                                 1.0e+00
## Keratan Sulfate Biosynthesis                                                                                                         1.0e+00
## Keratan Sulfate Degradation                                                                                                          1.0e+00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.0e+00
## Keratinization                                                                                                                       1.0e+00
## Ketone Body Metabolism                                                                                                               1.0e+00
## Kinesins                                                                                                                             1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.0e+00
## Lagging Strand Synthesis                                                                                                             1.0e+00
## Laminin Interactions                                                                                                                 1.0e+00
## Late Endosomal Microautophagy                                                                                                        1.0e+00
## Lectin Pathway Of Complement Activation                                                                                              1.0e+00
## Leukotriene Receptors                                                                                                                1.0e+00
## Lgi Adam Interactions                                                                                                                1.0e+00
## Ligand Receptor Interactions                                                                                                         1.0e+00
## Linoleic Acid La Metabolism                                                                                                          1.0e+00
## Lipid Particle Organization                                                                                                          1.0e+00
## Lipophagy                                                                                                                            1.0e+00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.0e+00
## Long Term Potentiation                                                                                                               1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.0e+00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.0e+00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.0e+00
## Lysine Catabolism                                                                                                                    1.0e+00
## Lysosome Vesicle Biogenesis                                                                                                          1.0e+00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.0e+00
## M Phase                                                                                                                              1.0e+00
## Map2k And Mapk Activation                                                                                                            1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.0e+00
## Mapk6 Mapk4 Signaling                                                                                                                1.0e+00
## Mastl Facilitates Mitotic Progression                                                                                                1.0e+00
## Maturation Of Nucleoprotein                                                                                                          1.0e+00
## Maturation Of Protein 3a                                                                                                             1.0e+00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.0e+00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.0e+00
## Meiosis                                                                                                                              1.0e+00
## Meiotic Recombination                                                                                                                1.0e+00
## Meiotic Synapsis                                                                                                                     1.0e+00
## Melanin Biosynthesis                                                                                                                 1.0e+00
## Met Activates Pi3k Akt Signaling                                                                                                     1.0e+00
## Met Activates Ptk2 Signaling                                                                                                         1.0e+00
## Met Activates Ptpn11                                                                                                                 1.0e+00
## Met Activates Rap1 And Rac1                                                                                                          1.0e+00
## Met Activates Ras Signaling                                                                                                          1.0e+00
## Met Interacts With Tns Proteins                                                                                                      1.0e+00
## Met Promotes Cell Motility                                                                                                           1.0e+00
## Met Receptor Activation                                                                                                              1.0e+00
## Met Receptor Recycling                                                                                                               1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.0e+00
## Metabolism Of Amine Derived Hormones                                                                                                 1.0e+00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.0e+00
## Metabolism Of Carbohydrates                                                                                                          1.0e+00
## Metabolism Of Cofactors                                                                                                              1.0e+00
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.0e+00
## Metabolism Of Folate And Pterines                                                                                                    1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.0e+00
## Metabolism Of Lipids                                                                                                                 1.0e+00
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            1.0e+00
## Metabolism Of Nucleotides                                                                                                            1.0e+00
## Metabolism Of Polyamines                                                                                                             1.0e+00
## Metabolism Of Porphyrins                                                                                                             1.0e+00
## Metabolism Of Rna                                                                                                                    1.0e+00
## Metabolism Of Steroid Hormones                                                                                                       1.0e+00
## Metabolism Of Steroids                                                                                                               1.0e+00
## Metabolism Of Vitamins And Cofactors                                                                                                 1.0e+00
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   1.0e+00
## Metal Ion Slc Transporters                                                                                                           1.0e+00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.0e+00
## Metalloprotease Dubs                                                                                                                 1.0e+00
## Metallothioneins Bind Metals                                                                                                         1.0e+00
## Methionine Salvage Pathway                                                                                                           1.0e+00
## Methylation                                                                                                                          1.0e+00
## Microrna Mirna Biogenesis                                                                                                            1.0e+00
## Mineralocorticoid Biosynthesis                                                                                                       1.0e+00
## Miro Gtpase Cycle                                                                                                                    1.0e+00
## Miscellaneous Substrates                                                                                                             1.0e+00
## Miscellaneous Transport And Binding Events                                                                                           1.0e+00
## Mismatch Repair                                                                                                                      1.0e+00
## Mitochondrial Calcium Ion Transport                                                                                                  1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.0e+00
## Mitochondrial Protein Import                                                                                                         1.0e+00
## Mitochondrial Translation                                                                                                            1.0e+00
## Mitochondrial Trna Aminoacylation                                                                                                    1.0e+00
## Mitochondrial Uncoupling                                                                                                             1.0e+00
## Mitophagy                                                                                                                            1.0e+00
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.0e+00
## Mitotic G2 G2 M Phases                                                                                                               1.0e+00
## Mitotic Metaphase And Anaphase                                                                                                       1.0e+00
## Mitotic Prometaphase                                                                                                                 1.0e+00
## Mitotic Prophase                                                                                                                     1.0e+00
## Mitotic Spindle Checkpoint                                                                                                           1.0e+00
## Mitotic Telophase Cytokinesis                                                                                                        1.0e+00
## Modulation By Mtb Of Host Immune System                                                                                              1.0e+00
## Molecules Associated With Elastic Fibres                                                                                             1.0e+00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.0e+00
## Mrna Capping                                                                                                                         1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.0e+00
## Mrna Editing                                                                                                                         1.0e+00
## Mrna Editing C To U Conversion                                                                                                       1.0e+00
## Mrna Splicing                                                                                                                        1.0e+00
## Mrna Splicing Minor Pathway                                                                                                          1.0e+00
## Mtor Signalling                                                                                                                      1.0e+00
## Mtorc1 Mediated Signalling                                                                                                           1.0e+00
## Mucopolysaccharidoses                                                                                                                1.0e+00
## Multifunctional Anion Exchangers                                                                                                     1.0e+00
## Muscarinic Acetylcholine Receptors                                                                                                   1.0e+00
## Muscle Contraction                                                                                                                   1.0e+00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.0e+00
## Myogenesis                                                                                                                           1.0e+00
## N Glycan Antennae Elongation                                                                                                         1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.0e+00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.0e+00
## Nade Modulates Death Signalling                                                                                                      1.0e+00
## Ncam1 Interactions                                                                                                                   1.0e+00
## Nectin Necl Trans Heterodimerization                                                                                                 1.0e+00
## Neddylation                                                                                                                          1.0e+00
## Nef And Signal Transduction                                                                                                          1.0e+00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.0e+00
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.0e+00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.0e+00
## Negative Regulation Of Flt3                                                                                                          1.0e+00
## Negative Regulation Of Mapk Pathway                                                                                                  1.0e+00
## Negative Regulation Of Met Activity                                                                                                  1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.0e+00
## Negative Regulation Of Notch4 Signaling                                                                                              1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.0e+00
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.0e+00
## Nephrin Family Interactions                                                                                                          1.0e+00
## Netrin 1 Signaling                                                                                                                   1.0e+00
## Netrin Mediated Repulsion Signals                                                                                                    1.0e+00
## Neurexins And Neuroligins                                                                                                            1.0e+00
## Neurofascin Interactions                                                                                                             1.0e+00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.0e+00
## Neurotransmitter Clearance                                                                                                           1.0e+00
## Neurotransmitter Release Cycle                                                                                                       1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.0e+00
## Nf Kb Is Activated And Signals Survival                                                                                              1.0e+00
## Ngf Independant Trka Activation                                                                                                      1.0e+00
## Nicotinamide Salvaging                                                                                                               1.0e+00
## Nicotinate Metabolism                                                                                                                1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.0e+00
## Non Integrin Membrane Ecm Interactions                                                                                               1.0e+00
## Noncanonical Activation Of Notch3                                                                                                    1.0e+00
## Nonhomologous End Joining Nhej                                                                                                       1.0e+00
## Nonsense Mediated Decay Nmd                                                                                                          1.0e+00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.0e+00
## Nostrin Mediated Enos Trafficking                                                                                                    1.0e+00
## Notch Hlh Transcription Pathway                                                                                                      1.0e+00
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.0e+00
## Nrage Signals Death Through Jnk                                                                                                      1.0e+00
## Nrcam Interactions                                                                                                                   1.0e+00
## Nrif Signals Cell Death From The Nucleus                                                                                             1.0e+00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.0e+00
## Ntrk2 Activates Rac1                                                                                                                 1.0e+00
## Nuclear Envelope Breakdown                                                                                                           1.0e+00
## Nuclear Envelope Ne Reassembly                                                                                                       1.0e+00
## Nuclear Import Of Rev Protein                                                                                                        1.0e+00
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.0e+00
## Nuclear Receptor Transcription Pathway                                                                                               1.0e+00
## Nuclear Signaling By Erbb4                                                                                                           1.0e+00
## Nucleobase Biosynthesis                                                                                                              1.0e+00
## Nucleobase Catabolism                                                                                                                1.0e+00
## Nucleotide Excision Repair                                                                                                           1.0e+00
## Nucleotide Like Purinergic Receptors                                                                                                 1.0e+00
## Nucleotide Salvage                                                                                                                   1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.0e+00
## Oas Antiviral Response                                                                                                               1.0e+00
## Olfactory Signaling Pathway                                                                                                          1.0e+00
## Oncogene Induced Senescence                                                                                                          1.0e+00
## Oncogenic Mapk Signaling                                                                                                             1.0e+00
## Opsins                                                                                                                               1.0e+00
## Orc1 Removal From Chromatin                                                                                                          1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.0e+00
## Organic Anion Transport                                                                                                              1.0e+00
## Organic Anion Transporters                                                                                                           1.0e+00
## Organic Cation Anion Zwitterion Transport                                                                                            1.0e+00
## Organic Cation Transport                                                                                                             1.0e+00
## Other Interleukin Signaling                                                                                                          1.0e+00
## Other Semaphorin Interactions                                                                                                        1.0e+00
## Ovarian Tumor Domain Proteases                                                                                                       1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.0e+00
## P2y Receptors                                                                                                                        1.0e+00
## P38mapk Events                                                                                                                       1.0e+00
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.0e+00
## P75ntr Recruits Signalling Complexes                                                                                                 1.0e+00
## P75ntr Regulates Axonogenesis                                                                                                        1.0e+00
## P75ntr Signals Via Nf Kb                                                                                                             1.0e+00
## Parasite Infection                                                                                                                   1.0e+00
## Passive Transport By Aquaporins                                                                                                      1.0e+00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Pecam1 Interactions                                                                                                                  1.0e+00
## Pentose Phosphate Pathway                                                                                                            1.0e+00
## Peptide Hormone Biosynthesis                                                                                                         1.0e+00
## Peptide Hormone Metabolism                                                                                                           1.0e+00
## Peroxisomal Lipid Metabolism                                                                                                         1.0e+00
## Peroxisomal Protein Import                                                                                                           1.0e+00
## Pexophagy                                                                                                                            1.0e+00
## Phase 0 Rapid Depolarisation                                                                                                         1.0e+00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.0e+00
## Phase 2 Plateau Phase                                                                                                                1.0e+00
## Phase 3 Rapid Repolarisation                                                                                                         1.0e+00
## Phase 4 Resting Membrane Potential                                                                                                   1.0e+00
## Phase I Functionalization Of Compounds                                                                                               1.0e+00
## Phase Ii Conjugation Of Compounds                                                                                                    1.0e+00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.0e+00
## Phenylalanine Metabolism                                                                                                             1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.0e+00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.0e+00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.0e+00
## Phospholipid Metabolism                                                                                                              1.0e+00
## Phosphorylation Of Emi1                                                                                                              1.0e+00
## Phosphorylation Of The Apc C                                                                                                         1.0e+00
## Physiological Factors                                                                                                                1.0e+00
## Pi 3k Cascade Fgfr1                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr2                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr3                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr4                                                                                                                  1.0e+00
## Pi Metabolism                                                                                                                        1.0e+00
## Pi3k Akt Activation                                                                                                                  1.0e+00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.0e+00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.0e+00
## Pink1 Prkn Mediated Mitophagy                                                                                                        1.0e+00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.0e+00
## Pka Activation In Glucagon Signalling                                                                                                1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.0e+00
## Pkmts Methylate Histone Lysines                                                                                                      1.0e+00
## Plasma Lipoprotein Assembly                                                                                                          1.0e+00
## Plasma Lipoprotein Remodeling                                                                                                        1.0e+00
## Platelet Adhesion To Exposed Collagen                                                                                                1.0e+00
## Platelet Aggregation Plug Formation                                                                                                  1.0e+00
## Platelet Calcium Homeostasis                                                                                                         1.0e+00
## Platelet Homeostasis                                                                                                                 1.0e+00
## Platelet Sensitization By Ldl                                                                                                        1.0e+00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Polo Like Kinase Mediated Events                                                                                                     1.0e+00
## Polymerase Switching                                                                                                                 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.0e+00
## Potassium Channels                                                                                                                   1.0e+00
## Potential Therapeutics For Sars                                                                                                      1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.0e+00
## Pre Notch Expression And Processing                                                                                                  1.0e+00
## Pre Notch Processing In Golgi                                                                                                        1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.0e+00
## Pregnenolone Biosynthesis                                                                                                            1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.0e+00
## Presynaptic Function Of Kainate Receptors                                                                                            1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.0e+00
## Processing And Activation Of Sumo                                                                                                    1.0e+00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.0e+00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.0e+00
## Processing Of Dna Double Strand Break Ends                                                                                           1.0e+00
## Processing Of Intronless Pre Mrnas                                                                                                   1.0e+00
## Processing Of Smdt1                                                                                                                  1.0e+00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.0e+00
## Processive Synthesis On The Lagging Strand                                                                                           1.0e+00
## Prolactin Receptor Signaling                                                                                                         1.0e+00
## Prolonged Erk Activation Events                                                                                                      1.0e+00
## Propionyl Coa Catabolism                                                                                                             1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.0e+00
## Prostanoid Ligand Receptors                                                                                                          1.0e+00
## Protein Folding                                                                                                                      1.0e+00
## Protein Localization                                                                                                                 1.0e+00
## Protein Methylation                                                                                                                  1.0e+00
## Protein Protein Interactions At Synapses                                                                                             1.0e+00
## Protein Repair                                                                                                                       1.0e+00
## Protein Ubiquitination                                                                                                               1.0e+00
## Proton Coupled Monocarboxylate Transport                                                                                             1.0e+00
## Pten Regulation                                                                                                                      1.0e+00
## Ptk6 Expression                                                                                                                      1.0e+00
## Ptk6 Regulates Cell Cycle                                                                                                            1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.0e+00
## Purine Catabolism                                                                                                                    1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.0e+00
## Purine Salvage                                                                                                                       1.0e+00
## Pyrimidine Catabolism                                                                                                                1.0e+00
## Pyrimidine Salvage                                                                                                                   1.0e+00
## Pyruvate Metabolism                                                                                                                  1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.0e+00
## Ra Biosynthesis Pathway                                                                                                              1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.0e+00
## Rab Geranylgeranylation                                                                                                              1.0e+00
## Rab Regulation Of Trafficking                                                                                                        1.0e+00
## Rac1 Gtpase Cycle                                                                                                                    1.0e+00
## Rac2 Gtpase Cycle                                                                                                                    1.0e+00
## Rac3 Gtpase Cycle                                                                                                                    1.0e+00
## Raf Activation                                                                                                                       1.0e+00
## Rap1 Signalling                                                                                                                      1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.0e+00
## Ras Processing                                                                                                                       1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.0e+00
## Receptor Mediated Mitophagy                                                                                                          1.0e+00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.0e+00
## Recycling Of Bile Acids And Salts                                                                                                    1.0e+00
## Recycling Of Eif2 Gdp                                                                                                                1.0e+00
## Recycling Pathway Of L1                                                                                                              1.0e+00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.0e+00
## Reelin Signalling Pathway                                                                                                            1.0e+00
## Regulated Proteolysis Of P75ntr                                                                                                      1.0e+00
## Regulation By C Flip                                                                                                                 1.0e+00
## Regulation Of Bach1 Activity                                                                                                         1.0e+00
## Regulation Of Beta Cell Development                                                                                                  1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.0e+00
## Regulation Of Expression Of Slits And Robos                                                                                          1.0e+00
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           1.0e+00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.0e+00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.0e+00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.0e+00
## Regulation Of Ifna Signaling                                                                                                         1.0e+00
## Regulation Of Ifng Signaling                                                                                                         1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.0e+00
## Regulation Of Insulin Secretion                                                                                                      1.0e+00
## Regulation Of Kit Signaling                                                                                                          1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.0e+00
## Regulation Of Pten Gene Transcription                                                                                                1.0e+00
## Regulation Of Pten Localization                                                                                                      1.0e+00
## Regulation Of Pten Mrna Translation                                                                                                  1.0e+00
## Regulation Of Pten Stability And Activity                                                                                            1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.0e+00
## Regulation Of Ras By Gaps                                                                                                            1.0e+00
## Regulation Of Runx1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx2 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx3 Expression And Activity                                                                                          1.0e+00
## Regulation Of Signaling By Cbl                                                                                                       1.0e+00
## Regulation Of Signaling By Nodal                                                                                                     1.0e+00
## Regulation Of Tlr By Endogenous Ligand                                                                                               1.0e+00
## Regulation Of Tp53 Activity                                                                                                          1.0e+00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.0e+00
## Regulation Of Tp53 Expression And Degradation                                                                                        1.0e+00
## Relaxin Receptors                                                                                                                    1.0e+00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.0e+00
## Release Of Hh Np From The Secreting Cell                                                                                             1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.0e+00
## Repression Of Wnt Target Genes                                                                                                       1.0e+00
## Reproduction                                                                                                                         1.0e+00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.0e+00
## Resolution Of D Loop Structures                                                                                                      1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.0e+00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.0e+00
## Respiratory Electron Transport                                                                                                       1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.0e+00
## Response Of Mtb To Phagocytosis                                                                                                      1.0e+00
## Response To Metal Ions                                                                                                               1.0e+00
## Ret Signaling                                                                                                                        1.0e+00
## Retinoid Cycle Disease Events                                                                                                        1.0e+00
## Retrograde Neurotrophin Signalling                                                                                                   1.0e+00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.0e+00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.0e+00
## Rho Gtpase Cycle                                                                                                                     1.0e+00
## Rho Gtpase Effectors                                                                                                                 1.0e+00
## Rho Gtpases Activate Cit                                                                                                             1.0e+00
## Rho Gtpases Activate Formins                                                                                                         1.0e+00
## Rho Gtpases Activate Iqgaps                                                                                                          1.0e+00
## Rho Gtpases Activate Ktn1                                                                                                            1.0e+00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.0e+00
## Rho Gtpases Activate Paks                                                                                                            1.0e+00
## Rho Gtpases Activate Pkns                                                                                                            1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.0e+00
## Rho Gtpases Activate Rocks                                                                                                           1.0e+00
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.0e+00
## Rhoa Gtpase Cycle                                                                                                                    1.0e+00
## Rhob Gtpase Cycle                                                                                                                    1.0e+00
## Rhobtb Gtpase Cycle                                                                                                                  1.0e+00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb3 Atpase Cycle                                                                                                                 1.0e+00
## Rhoc Gtpase Cycle                                                                                                                    1.0e+00
## Rhod Gtpase Cycle                                                                                                                    1.0e+00
## Rhof Gtpase Cycle                                                                                                                    1.0e+00
## Rhog Gtpase Cycle                                                                                                                    1.0e+00
## Rhoh Gtpase Cycle                                                                                                                    1.0e+00
## Rhoj Gtpase Cycle                                                                                                                    1.0e+00
## Rhoq Gtpase Cycle                                                                                                                    1.0e+00
## Rhot1 Gtpase Cycle                                                                                                                   1.0e+00
## Rhou Gtpase Cycle                                                                                                                    1.0e+00
## Rhov Gtpase Cycle                                                                                                                    1.0e+00
## Rna Polymerase I Promoter Escape                                                                                                     1.0e+00
## Rna Polymerase I Transcription                                                                                                       1.0e+00
## Rna Polymerase I Transcription Initiation                                                                                            1.0e+00
## Rna Polymerase I Transcription Termination                                                                                           1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.0e+00
## Rna Polymerase Ii Transcription Termination                                                                                          1.0e+00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.0e+00
## Rna Polymerase Iii Transcription                                                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Termination                                                                                         1.0e+00
## Rnd1 Gtpase Cycle                                                                                                                    1.0e+00
## Rnd2 Gtpase Cycle                                                                                                                    1.0e+00
## Rnd3 Gtpase Cycle                                                                                                                    1.0e+00
## Robo Receptors Bind Akap5                                                                                                            1.0e+00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.0e+00
## Role Of Phospholipids In Phagocytosis                                                                                                1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.0e+00
## Rora Activates Gene Expression                                                                                                       1.0e+00
## Ros And Rns Production In Phagocytes                                                                                                 1.0e+00
## Rrna Modification In The Mitochondrion                                                                                               1.0e+00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Rrna Processing                                                                                                                      1.0e+00
## Rrna Processing In The Mitochondrion                                                                                                 1.0e+00
## Rsk Activation                                                                                                                       1.0e+00
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.0e+00
## Runx2 Regulates Bone Development                                                                                                     1.0e+00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.0e+00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.0e+00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.0e+00
## Runx3 Regulates Notch Signaling                                                                                                      1.0e+00
## Runx3 Regulates P14 Arf                                                                                                              1.0e+00
## Runx3 Regulates Wnt Signaling                                                                                                        1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.0e+00
## S Phase                                                                                                                              1.0e+00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.0e+00
## Sars Cov 1 Infection                                                                                                                 1.0e+00
## Sars Cov 2 Infection                                                                                                                 1.0e+00
## Sars Cov Infections                                                                                                                  1.0e+00
## Scavenging By Class A Receptors                                                                                                      1.0e+00
## Scavenging By Class B Receptors                                                                                                      1.0e+00
## Scavenging By Class F Receptors                                                                                                      1.0e+00
## Scavenging Of Heme From Plasma                                                                                                       1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.0e+00
## Selective Autophagy                                                                                                                  1.0e+00
## Selenoamino Acid Metabolism                                                                                                          1.0e+00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.0e+00
## Sema4d In Semaphorin Signaling                                                                                                       1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.0e+00
## Semaphorin Interactions                                                                                                              1.0e+00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.0e+00
## Sensory Perception                                                                                                                   1.0e+00
## Sensory Processing Of Sound                                                                                                          1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.0e+00
## Separation Of Sister Chromatids                                                                                                      1.0e+00
## Serine Biosynthesis                                                                                                                  1.0e+00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.0e+00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.0e+00
## Serotonin Receptors                                                                                                                  1.0e+00
## Shc Mediated Cascade Fgfr1                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr3                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr4                                                                                                           1.0e+00
## Shc Related Events Triggered By Igf1r                                                                                                1.0e+00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.0e+00
## Signal Amplification                                                                                                                 1.0e+00
## Signal Attenuation                                                                                                                   1.0e+00
## Signal Regulatory Protein Family Interactions                                                                                        1.0e+00
## Signaling By Activin                                                                                                                 1.0e+00
## Signaling By Bmp                                                                                                                     1.0e+00
## Signaling By Braf And Raf Fusions                                                                                                    1.0e+00
## Signaling By Csf3 G Csf                                                                                                              1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.0e+00
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          1.0e+00
## Signaling By Erythropoietin                                                                                                          1.0e+00
## Signaling By Fgfr                                                                                                                    1.0e+00
## Signaling By Fgfr In Disease                                                                                                         1.0e+00
## Signaling By Fgfr1                                                                                                                   1.0e+00
## Signaling By Fgfr1 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr2                                                                                                                   1.0e+00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.0e+00
## Signaling By Fgfr2 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr3                                                                                                                   1.0e+00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.0e+00
## Signaling By Fgfr4                                                                                                                   1.0e+00
## Signaling By Fgfr4 In Disease                                                                                                        1.0e+00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.0e+00
## Signaling By Hedgehog                                                                                                                1.0e+00
## Signaling By Hippo                                                                                                                   1.0e+00
## Signaling By Insulin Receptor                                                                                                        1.0e+00
## Signaling By Kit In Disease                                                                                                          1.0e+00
## Signaling By Leptin                                                                                                                  1.0e+00
## Signaling By Lrp5 Mutants                                                                                                            1.0e+00
## Signaling By Mapk Mutants                                                                                                            1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.0e+00
## Signaling By Met                                                                                                                     1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.0e+00
## Signaling By Mras Complex Mutants                                                                                                    1.0e+00
## Signaling By Mst1                                                                                                                    1.0e+00
## Signaling By Nodal                                                                                                                   1.0e+00
## Signaling By Notch1                                                                                                                  1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.0e+00
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.0e+00
## Signaling By Notch4                                                                                                                  1.0e+00
## Signaling By Ntrk2 Trkb                                                                                                              1.0e+00
## Signaling By Ntrk3 Trkc                                                                                                              1.0e+00
## Signaling By Pdgf                                                                                                                    1.0e+00
## Signaling By Pdgfr In Disease                                                                                                        1.0e+00
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            1.0e+00
## Signaling By Retinoic Acid                                                                                                           1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.0e+00
## Signaling By Rnf43 Mutants                                                                                                           1.0e+00
## Signaling By Robo Receptors                                                                                                          1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.0e+00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.0e+00
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.0e+00
## Signaling By Vegf                                                                                                                    1.0e+00
## Signaling By Wnt In Cancer                                                                                                           1.0e+00
## Signalling To Erks                                                                                                                   1.0e+00
## Signalling To P38 Via Rit And Rin                                                                                                    1.0e+00
## Signalling To Ras                                                                                                                    1.0e+00
## Sirt1 Negatively Regulates Rrna Expression                                                                                           1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.0e+00
## Slc Mediated Transmembrane Transport                                                                                                 1.0e+00
## Slc Transporter Disorders                                                                                                            1.0e+00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.0e+00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.0e+00
## Smooth Muscle Contraction                                                                                                            1.0e+00
## Snrnp Assembly                                                                                                                       1.0e+00
## Sodium Calcium Exchangers                                                                                                            1.0e+00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.0e+00
## Sodium Proton Exchangers                                                                                                             1.0e+00
## Sos Mediated Signalling                                                                                                              1.0e+00
## Sperm Motility And Taxes                                                                                                             1.0e+00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.0e+00
## Sphingolipid Metabolism                                                                                                              1.0e+00
## Spry Regulation Of Fgf Signaling                                                                                                     1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.0e+00
## Stabilization Of P53                                                                                                                 1.0e+00
## Stat5 Activation                                                                                                                     1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.0e+00
## Striated Muscle Contraction                                                                                                          1.0e+00
## Sulfide Oxidation To Sulfate                                                                                                         1.0e+00
## Sulfur Amino Acid Metabolism                                                                                                         1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.0e+00
## Sumo Is Proteolytically Processed                                                                                                    1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.0e+00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.0e+00
## Sumoylation Of Dna Replication Proteins                                                                                              1.0e+00
## Sumoylation Of Immune Response Proteins                                                                                              1.0e+00
## Sumoylation Of Intracellular Receptors                                                                                               1.0e+00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.0e+00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.0e+00
## Sumoylation Of Transcription Factors                                                                                                 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.0e+00
## Suppression Of Apoptosis                                                                                                             1.0e+00
## Suppression Of Phagosomal Maturation                                                                                                 1.0e+00
## Surfactant Metabolism                                                                                                                1.0e+00
## Switching Of Origins To A Post Replicative State                                                                                     1.0e+00
## Synaptic Adhesion Like Molecules                                                                                                     1.0e+00
## Syndecan Interactions                                                                                                                1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.0e+00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.0e+00
## Synthesis Of Diphthamide Eef2                                                                                                        1.0e+00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.0e+00
## Synthesis Of Gdp Mannose                                                                                                             1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.0e+00
## Synthesis Of Ketone Bodies                                                                                                           1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.0e+00
## Synthesis Of Lipoxins Lx                                                                                                             1.0e+00
## Synthesis Of Pa                                                                                                                      1.0e+00
## Synthesis Of Pc                                                                                                                      1.0e+00
## Synthesis Of Pe                                                                                                                      1.0e+00
## Synthesis Of Pg                                                                                                                      1.0e+00
## Synthesis Of Pi                                                                                                                      1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.0e+00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.0e+00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.0e+00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.0e+00
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.0e+00
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                1.0e+00
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             1.0e+00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.0e+00
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.0e+00
## Tandem Pore Domain Potassium Channels                                                                                                1.0e+00
## Tbc Rabgaps                                                                                                                          1.0e+00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.0e+00
## Telomere C Strand Synthesis Initiation                                                                                               1.0e+00
## Telomere Extension By Telomerase                                                                                                     1.0e+00
## Telomere Maintenance                                                                                                                 1.0e+00
## Terminal Pathway Of Complement                                                                                                       1.0e+00
## Termination Of Translesion Dna Synthesis                                                                                             1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.0e+00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.0e+00
## The Activation Of Arylsulfatases                                                                                                     1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.0e+00
## The Fatty Acid Cycling Model                                                                                                         1.0e+00
## The Nlrp3 Inflammasome                                                                                                               1.0e+00
## The Phototransduction Cascade                                                                                                        1.0e+00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.0e+00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.0e+00
## Thyroxine Biosynthesis                                                                                                               1.0e+00
## Tie2 Signaling                                                                                                                       1.0e+00
## Tight Junction Interactions                                                                                                          1.0e+00
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 1.0e+00
## Tnfr1 Mediated Ceramide Production                                                                                                   1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.0e+00
## Tp53 Regulates Metabolic Genes                                                                                                       1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.0e+00
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.0e+00
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         1.0e+00
## Traf6 Mediated Irf7 Activation                                                                                                       1.0e+00
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.0e+00
## Traf6 Mediated Nf Kb Activation                                                                                                      1.0e+00
## Trafficking Of Ampa Receptors                                                                                                        1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.0e+00
## Trail Signaling                                                                                                                      1.0e+00
## Trans Golgi Network Vesicle Budding                                                                                                  1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.0e+00
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 1.0e+00
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 1.0e+00
## Transcription Of The Hiv Genome                                                                                                      1.0e+00
## Transcriptional Regulation By E2f6                                                                                                   1.0e+00
## Transcriptional Regulation By Runx1                                                                                                  1.0e+00
## Transcriptional Regulation By Runx2                                                                                                  1.0e+00
## Transcriptional Regulation By Runx3                                                                                                  1.0e+00
## Transcriptional Regulation By Small Rnas                                                                                             1.0e+00
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.0e+00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.0e+00
## Transferrin Endocytosis And Recycling                                                                                                1.0e+00
## Translation                                                                                                                          1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.0e+00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.0e+00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.0e+00
## Translesion Synthesis By Polh                                                                                                        1.0e+00
## Translesion Synthesis By Polk                                                                                                        1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.0e+00
## Transport And Synthesis Of Paps                                                                                                      1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.0e+00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.0e+00
## Transport Of Fatty Acids                                                                                                             1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.0e+00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.0e+00
## Transport Of Nucleotide Sugars                                                                                                       1.0e+00
## Transport Of Organic Anions                                                                                                          1.0e+00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.0e+00
## Transport To The Golgi And Subsequent Modification                                                                                   1.0e+00
## Trif Mediated Programmed Cell Death                                                                                                  1.0e+00
## Triglyceride Biosynthesis                                                                                                            1.0e+00
## Triglyceride Catabolism                                                                                                              1.0e+00
## Triglyceride Metabolism                                                                                                              1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.0e+00
## Trna Aminoacylation                                                                                                                  1.0e+00
## Trna Modification In The Mitochondrion                                                                                               1.0e+00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Trna Processing                                                                                                                      1.0e+00
## Trna Processing In The Mitochondrion                                                                                                 1.0e+00
## Trna Processing In The Nucleus                                                                                                       1.0e+00
## Trp Channels                                                                                                                         1.0e+00
## Tryptophan Catabolism                                                                                                                1.0e+00
## Type I Hemidesmosome Assembly                                                                                                        1.0e+00
## Tyrosine Catabolism                                                                                                                  1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.0e+00
## Ubiquinol Biosynthesis                                                                                                               1.0e+00
## Uch Proteinases                                                                                                                      1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.0e+00
## Unwinding Of Dna                                                                                                                     1.0e+00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.0e+00
## Uptake And Function Of Anthrax Toxins                                                                                                1.0e+00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.0e+00
## Urea Cycle                                                                                                                           1.0e+00
## Vasopressin Like Receptors                                                                                                           1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.0e+00
## Vegf Ligand Receptor Interactions                                                                                                    1.0e+00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.0e+00
## Vegfr2 Mediated Vascular Permeability                                                                                                1.0e+00
## Viral Messenger Rna Synthesis                                                                                                        1.0e+00
## Visual Phototransduction                                                                                                             1.0e+00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.0e+00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.0e+00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.0e+00
## Vitamin C Ascorbate Metabolism                                                                                                       1.0e+00
## Vitamin D Calciferol Metabolism                                                                                                      1.0e+00
## Vitamins                                                                                                                             1.0e+00
## Vldl Assembly                                                                                                                        1.0e+00
## Vldl Clearance                                                                                                                       1.0e+00
## Voltage Gated Potassium Channels                                                                                                     1.0e+00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.0e+00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.0e+00
## Wnt Mediated Activation Of Dvl                                                                                                       1.0e+00
## Xenobiotics                                                                                                                          1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.0e+00
## Zinc Transporters                                                                                                                    1.0e+00
##                                                                                                                                      signature
## Cytokine Signaling In Immune System                                                                                                         45
## Interleukin 10 Signaling                                                                                                                    45
## Signaling By Interleukins                                                                                                                   45
## Chemokine Receptors Bind Chemokines                                                                                                         45
## Interleukin 4 And Interleukin 13 Signaling                                                                                                  45
## Innate Immune System                                                                                                                        45
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                           45
## G Alpha I Signalling Events                                                                                                                 45
## Peptide Ligand Binding Receptors                                                                                                            45
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                45
## Signaling By Gpcr                                                                                                                           45
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                      45
## Extra Nuclear Estrogen Signaling                                                                                                            45
## Tnfs Bind Their Physiological Receptors                                                                                                     45
## Gpcr Ligand Binding                                                                                                                         45
## Leishmania Infection                                                                                                                        45
## Class A 1 Rhodopsin Like Receptors                                                                                                          45
## Cd163 Mediating An Anti Inflammatory Response                                                                                               45
## Interleukin 1 Processing                                                                                                                    45
## Regulated Necrosis                                                                                                                          45
## Toll Like Receptor Cascades                                                                                                                 45
## Costimulation By The Cd28 Family                                                                                                            45
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                            45
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                45
## Esr Mediated Signaling                                                                                                                      45
## Myd88 Independent Tlr4 Cascade                                                                                                              45
## Pi3k Akt Signaling In Cancer                                                                                                                45
## Purinergic Signaling In Leishmaniasis Infection                                                                                             45
## Pyroptosis                                                                                                                                  45
## Negative Regulation Of The Pi3k Akt Network                                                                                                 45
## Pd 1 Signaling                                                                                                                              45
## Senescence Associated Secretory Phenotype Sasp                                                                                              45
## Post Translational Protein Modification                                                                                                     45
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                         45
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                     45
## Infectious Disease                                                                                                                          45
## Interleukin 1 Family Signaling                                                                                                              45
## Ngf Stimulated Transcription                                                                                                                45
## Signaling By Nuclear Receptors                                                                                                              45
## Intracellular Signaling By Second Messengers                                                                                                45
## Adaptive Immune System                                                                                                                      45
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                    45
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                    45
## Nuclear Events Kinase And Transcription Factor Activation                                                                                   45
## Cellular Senescence                                                                                                                         45
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                45
## Programmed Cell Death                                                                                                                       45
## Circadian Clock                                                                                                                             45
## Interleukin 17 Signaling                                                                                                                    45
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                          45
## Mecp2 Regulates Transcription Factors                                                                                                       45
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                           45
## Clec7a Inflammasome Pathway                                                                                                                 45
## Fibronectin Matrix Formation                                                                                                                45
## Ptk6 Promotes Hif1a Stabilization                                                                                                           45
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                        45
## Creb Phosphorylation                                                                                                                        45
## Neutrophil Degranulation                                                                                                                    45
## Fcgr3a Mediated Il10 Synthesis                                                                                                              45
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                           45
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                45
## Interleukin 18 Signaling                                                                                                                    45
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                           45
## Signaling By Receptor Tyrosine Kinases                                                                                                      45
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                         45
## Egfr Interacts With Phospholipase C Gamma                                                                                                   45
## Egfr Transactivation By Gastrin                                                                                                             45
## Mapk1 Erk2 Activation                                                                                                                       45
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                        45
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                      45
## Akt Phosphorylates Targets In The Nucleus                                                                                                   45
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                    45
## Mapk3 Erk1 Activation                                                                                                                       45
## Extracellular Matrix Organization                                                                                                           45
## Interleukin 6 Signaling                                                                                                                     45
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                            45
## Cd28 Dependent Vav1 Pathway                                                                                                                 45
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                           45
## Killing Mechanisms                                                                                                                          45
## Notch2 Intracellular Domain Regulates Transcription                                                                                         45
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                    45
## Vldlr Internalisation And Degradation                                                                                                       45
## Dissolution Of Fibrin Clot                                                                                                                  45
## Erbb2 Activates Ptk6 Signaling                                                                                                              45
## Irf3 Mediated Induction Of Type I Ifn                                                                                                       45
## Trafficking And Processing Of Endosomal Tlr                                                                                                 45
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                       45
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                     45
## Shc1 Events In Egfr Signaling                                                                                                               45
## Signaling By Ntrks                                                                                                                          45
## Constitutive Signaling By Egfrviii                                                                                                          45
## Erbb2 Regulates Cell Motility                                                                                                               45
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                    45
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                             45
## Wnt5a Dependent Internalization Of Fzd4                                                                                                     45
## Hcmv Early Events                                                                                                                           45
## C Type Lectin Receptors Clrs                                                                                                                45
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                  45
## Grb2 Events In Erbb2 Signaling                                                                                                              45
## Pi3k Events In Erbb2 Signaling                                                                                                              45
## Signaling By Erbb2 Ecd Mutants                                                                                                              45
## Sting Mediated Induction Of Host Immune Responses                                                                                           45
## Sumoylation Of Dna Methylation Proteins                                                                                                     45
## Clathrin Mediated Endocytosis                                                                                                               45
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                               45
## Gab1 Signalosome                                                                                                                            45
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                       45
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                             45
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                            45
## Ldl Clearance                                                                                                                               45
## Pka Mediated Phosphorylation Of Creb                                                                                                        45
## Hcmv Infection                                                                                                                              45
## Ctla4 Inhibitory Signaling                                                                                                                  45
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                            45
## Inflammasomes                                                                                                                               45
## Signal Transduction By L1                                                                                                                   45
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                  45
## Cd28 Dependent Pi3k Akt Signaling                                                                                                           45
## Shc1 Events In Erbb2 Signaling                                                                                                              45
## Ikk Complex Recruitment Mediated By Rip1                                                                                                    45
## Raf Independent Mapk1 3 Activation                                                                                                          45
## Termination Of O Glycan Biosynthesis                                                                                                        45
## Interleukin 6 Family Signaling                                                                                                              45
## Cellular Responses To External Stimuli                                                                                                      45
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Signaling By Egfr In Cancer                                                                                                                 45
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                               45
## Dectin 2 Family                                                                                                                             45
## Signaling By Erbb2 In Cancer                                                                                                                45
## Wnt Ligand Biogenesis And Trafficking                                                                                                       45
## Sumoylation                                                                                                                                 45
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                            45
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                       45
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                            45
## Cell Surface Interactions At The Vascular Wall                                                                                              45
## Downregulation Of Erbb2 Signaling                                                                                                           45
## Ripk1 Mediated Regulated Necrosis                                                                                                           45
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                    45
## Diseases Of Immune System                                                                                                                   45
## Egfr Downregulation                                                                                                                         45
## Perk Regulates Gene Expression                                                                                                              45
## Regulation Of Mecp2 Expression And Activity                                                                                                 45
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                      45
## Activation Of Matrix Metalloproteinases                                                                                                     45
## Cd28 Co Stimulation                                                                                                                         45
## Plasma Lipoprotein Clearance                                                                                                                45
## Sialic Acid Metabolism                                                                                                                      45
## Signaling By Notch2                                                                                                                         45
## G Alpha Q Signalling Events                                                                                                                 45
## Regulation Of Tnfr1 Signaling                                                                                                               45
## Nod1 2 Signaling Pathway                                                                                                                    45
## Ub Specific Processing Proteases                                                                                                            45
## Ca Dependent Events                                                                                                                         45
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                          45
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                45
## Generation Of Second Messenger Molecules                                                                                                    45
## Dag And Ip3 Signaling                                                                                                                       45
## Transcriptional Regulation By Ventx                                                                                                         45
## Signaling By Scf Kit                                                                                                                        45
## Sumoylation Of Transcription Cofactors                                                                                                      45
## Signaling By Notch                                                                                                                          45
## Tnf Signaling                                                                                                                               45
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                  45
## Dap12 Interactions                                                                                                                          45
## Interleukin 12 Signaling                                                                                                                    45
## Heme Signaling                                                                                                                              45
## Signaling By Notch3                                                                                                                         45
## Signaling By Egfr                                                                                                                           45
## Signaling By Erbb2                                                                                                                          45
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                      45
## G Protein Mediated Events                                                                                                                   45
## Signaling By Ptk6                                                                                                                           45
## Interleukin 12 Family Signaling                                                                                                             45
## Nervous System Development                                                                                                                  45
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                      45
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                45
## Ca2 Pathway                                                                                                                                 45
## Deubiquitination                                                                                                                            45
## Ncam Signaling For Neurite Out Growth                                                                                                       45
## O Linked Glycosylation Of Mucins                                                                                                            45
## Signaling By Erbb4                                                                                                                          45
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                             45
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                            45
## Transcriptional Regulation By Mecp2                                                                                                         45
## Asymmetric Localization Of Pcp Proteins                                                                                                     45
## Collagen Degradation                                                                                                                        45
## Diseases Associated With O Glycosylation Of Proteins                                                                                        45
## Dna Methylation                                                                                                                             45
## Rna Polymerase Ii Transcription                                                                                                             45
## Mapk Family Signaling Cascades                                                                                                              45
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                        45
## Prc2 Methylates Histones And Dna                                                                                                            45
## Signaling By Tgf Beta Receptor Complex                                                                                                      45
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                          45
## Ecm Proteoglycans                                                                                                                           45
## Hemostasis                                                                                                                                  45
## Rmts Methylate Histone Arginines                                                                                                            45
## Fceri Mediated Mapk Activation                                                                                                              45
## Collagen Formation                                                                                                                          45
## Eph Ephrin Signaling                                                                                                                        45
## Interferon Gamma Signaling                                                                                                                  45
## Opioid Signalling                                                                                                                           45
## Pcp Ce Pathway                                                                                                                              45
## Transcriptional Regulation Of Granulopoiesis                                                                                                45
## Unfolded Protein Response Upr                                                                                                               45
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                        45
## Class B 2 Secretin Family Receptors                                                                                                         45
## Clec7a Dectin 1 Signaling                                                                                                                   45
## Mitochondrial Biogenesis                                                                                                                    45
## Diseases Of Programmed Cell Death                                                                                                           45
## Interleukin 1 Signaling                                                                                                                     45
## Signaling By Tgfb Family Members                                                                                                            45
## Stimuli Sensing Channels                                                                                                                    45
## Amyloid Fiber Formation                                                                                                                     45
## O Linked Glycosylation                                                                                                                      45
## L1cam Interactions                                                                                                                          45
## Tcr Signaling                                                                                                                               45
## Mhc Class Ii Antigen Presentation                                                                                                           45
## Oxidative Stress Induced Senescence                                                                                                         45
## Response To Elevated Platelet Cytosolic Ca2                                                                                                 45
## Death Receptor Signalling                                                                                                                   45
## Degradation Of The Extracellular Matrix                                                                                                     45
## Diseases Of Glycosylation                                                                                                                   45
## Beta Catenin Independent Wnt Signaling                                                                                                      45
## Epigenetic Regulation Of Gene Expression                                                                                                    45
## Estrogen Dependent Gene Expression                                                                                                          45
## Fc Epsilon Receptor Fceri Signaling                                                                                                         45
## Ion Channel Transport                                                                                                                       45
## Interferon Signaling                                                                                                                        45
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                             45
## Membrane Trafficking                                                                                                                        45
## Tcf Dependent Signaling In Response To Wnt                                                                                                  45
## Developmental Biology                                                                                                                       45
## Diseases Of Metabolism                                                                                                                      45
## Platelet Activation Signaling And Aggregation                                                                                               45
## Chromatin Modifying Enzymes                                                                                                                 45
## Transmission Across Chemical Synapses                                                                                                       45
## Transport Of Small Molecules                                                                                                                45
## Vesicle Mediated Transport                                                                                                                  45
## Organelle Biogenesis And Maintenance                                                                                                        45
## Asparagine N Linked Glycosylation                                                                                                           45
## Signaling By Wnt                                                                                                                            45
## Transcriptional Regulation By Tp53                                                                                                          45
## Neuronal System                                                                                                                             45
## 2 Ltr Circle Formation                                                                                                                      45
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                             45
## Abacavir Metabolism                                                                                                                         45
## Abacavir Transmembrane Transport                                                                                                            45
## Abacavir Transport And Metabolism                                                                                                           45
## Abc Family Proteins Mediated Transport                                                                                                      45
## Abc Transporter Disorders                                                                                                                   45
## Abc Transporters In Lipid Homeostasis                                                                                                       45
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                            45
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                 45
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                               45
## Acetylcholine Binding And Downstream Events                                                                                                 45
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                      45
## Acetylcholine Neurotransmitter Release Cycle                                                                                                45
## Acetylcholine Regulates Insulin Secretion                                                                                                   45
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                         45
## Activated Notch1 Transmits Signal To The Nucleus                                                                                            45
## Activated Ntrk2 Signals Through Cdk5                                                                                                        45
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                               45
## Activated Ntrk2 Signals Through Fyn                                                                                                         45
## Activated Ntrk2 Signals Through Pi3k                                                                                                        45
## Activated Ntrk2 Signals Through Ras                                                                                                         45
## Activated Ntrk3 Signals Through Pi3k                                                                                                        45
## Activated Ntrk3 Signals Through Ras                                                                                                         45
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                               45
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                 45
## Activation Of Ampk Downstream Of Nmdars                                                                                                     45
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                        45
## Activation Of Atr In Response To Replication Stress                                                                                         45
## Activation Of Bad And Translocation To Mitochondria                                                                                         45
## Activation Of Bh3 Only Proteins                                                                                                             45
## Activation Of C3 And C5                                                                                                                     45
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                 45
## Activation Of Gene Expression By Srebf Srebp                                                                                                45
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                        45
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                      45
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                   45
## Activation Of Noxa And Translocation To Mitochondria                                                                                        45
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                        45
## Activation Of Puma And Translocation To Mitochondria                                                                                        45
## Activation Of Rac1                                                                                                                          45
## Activation Of Rac1 Downstream Of Nmdars                                                                                                     45
## Activation Of Ras In B Cells                                                                                                                45
## Activation Of Smo                                                                                                                           45
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                       45
## Activation Of The Phototransduction Cascade                                                                                                 45
## Activation Of The Pre Replicative Complex                                                                                                   45
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                45
## Activation Of Trka Receptors                                                                                                                45
## Acyl Chain Remodeling Of Cl                                                                                                                 45
## Acyl Chain Remodeling Of Dag And Tag                                                                                                        45
## Acyl Chain Remodelling Of Pc                                                                                                                45
## Acyl Chain Remodelling Of Pe                                                                                                                45
## Acyl Chain Remodelling Of Pg                                                                                                                45
## Acyl Chain Remodelling Of Pi                                                                                                                45
## Acyl Chain Remodelling Of Ps                                                                                                                45
## Adenylate Cyclase Activating Pathway                                                                                                        45
## Adenylate Cyclase Inhibitory Pathway                                                                                                        45
## Adherens Junctions Interactions                                                                                                             45
## Adp Signalling Through P2y Purinoceptor 1                                                                                                   45
## Adp Signalling Through P2y Purinoceptor 12                                                                                                  45
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                         45
## Adrenoceptors                                                                                                                               45
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                        45
## Aflatoxin Activation And Detoxification                                                                                                     45
## Aggrephagy                                                                                                                                  45
## Akt Phosphorylates Targets In The Cytosol                                                                                                   45
## Alpha Defensins                                                                                                                             45
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                  45
## Alpha Oxidation Of Phytanate                                                                                                                45
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                    45
## Alternative Complement Activation                                                                                                           45
## Amine Ligand Binding Receptors                                                                                                              45
## Amino Acid Conjugation                                                                                                                      45
## Amino Acid Transport Across The Plasma Membrane                                                                                             45
## Amino Acids Regulate Mtorc1                                                                                                                 45
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                    45
## Anchoring Fibril Formation                                                                                                                  45
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                          45
## Androgen Biosynthesis                                                                                                                       45
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                            45
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                    45
## Antigen Processing Cross Presentation                                                                                                       45
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                    45
## Antimicrobial Peptides                                                                                                                      45
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                 45
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                45
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                    45
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                           45
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                     45
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                      45
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                             45
## Apoptosis                                                                                                                                   45
## Apoptosis Induced Dna Fragmentation                                                                                                         45
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                45
## Apoptotic Cleavage Of Cellular Proteins                                                                                                     45
## Apoptotic Execution Phase                                                                                                                   45
## Apoptotic Factor Mediated Response                                                                                                          45
## Aquaporin Mediated Transport                                                                                                                45
## Arachidonate Production From Dag                                                                                                            45
## Arachidonic Acid Metabolism                                                                                                                 45
## Arms Mediated Activation                                                                                                                    45
## Aryl Hydrocarbon Receptor Signalling                                                                                                        45
## Aspartate And Asparagine Metabolism                                                                                                         45
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                    45
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                            45
## Assembly Of The Hiv Virion                                                                                                                  45
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                    45
## Assembly Of The Pre Replicative Complex                                                                                                     45
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                            45
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                   45
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                        45
## Attachment And Entry                                                                                                                        45
## Attachment Of Gpi Anchor To Upar                                                                                                            45
## Attenuation Phase                                                                                                                           45
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                   45
## Aurka Activation By Tpx2                                                                                                                    45
## Autophagy                                                                                                                                   45
## B Wich Complex Positively Regulates Rrna Expression                                                                                         45
## Base Excision Repair                                                                                                                        45
## Base Excision Repair Ap Site Formation                                                                                                      45
## Basigin Interactions                                                                                                                        45
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                   45
## Beta Catenin Phosphorylation Cascade                                                                                                        45
## Beta Defensins                                                                                                                              45
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                45
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                          45
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                              45
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                           45
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                              45
## Beta Oxidation Of Pristanoyl Coa                                                                                                            45
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                               45
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                45
## Bicarbonate Transporters                                                                                                                    45
## Bile Acid And Bile Salt Metabolism                                                                                                          45
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                        45
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                          45
## Biological Oxidations                                                                                                                       45
## Biosynthesis Of Epa Derived Spms                                                                                                            45
## Biosynthesis Of Maresin Like Spms                                                                                                           45
## Biosynthesis Of Maresins                                                                                                                    45
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                     45
## Biotin Transport And Metabolism                                                                                                             45
## Blood Group Systems Biosynthesis                                                                                                            45
## Branched Chain Amino Acid Catabolism                                                                                                        45
## Budding And Maturation Of Hiv Virion                                                                                                        45
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                 45
## Butyrophilin Btn Family Interactions                                                                                                        45
## Ca2 Activated K Channels                                                                                                                    45
## Calcineurin Activates Nfat                                                                                                                  45
## Calcitonin Like Ligand Receptors                                                                                                            45
## Calnexin Calreticulin Cycle                                                                                                                 45
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                 45
## Cardiac Conduction                                                                                                                          45
## Cargo Concentration In The Er                                                                                                               45
## Cargo Trafficking To The Periciliary Membrane                                                                                               45
## Carnitine Metabolism                                                                                                                        45
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                            45
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                        45
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                               45
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                          45
## Cation Coupled Chloride Cotransporters                                                                                                      45
## Cd209 Dc Sign Signaling                                                                                                                     45
## Cd22 Mediated Bcr Regulation                                                                                                                45
## Cdc42 Gtpase Cycle                                                                                                                          45
## Cdc6 Association With The Orc Origin Complex                                                                                                45
## Cell Cell Communication                                                                                                                     45
## Cell Cell Junction Organization                                                                                                             45
## Cell Cycle                                                                                                                                  45
## Cell Cycle Checkpoints                                                                                                                      45
## Cell Cycle Mitotic                                                                                                                          45
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                               45
## Cell Extracellular Matrix Interactions                                                                                                      45
## Cell Junction Organization                                                                                                                  45
## Cellular Hexose Transport                                                                                                                   45
## Cellular Response To Chemical Stress                                                                                                        45
## Cellular Response To Heat Stress                                                                                                            45
## Cellular Response To Hypoxia                                                                                                                45
## Cellular Response To Starvation                                                                                                             45
## Cgmp Effects                                                                                                                                45
## Chaperone Mediated Autophagy                                                                                                                45
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                               45
## Chl1 Interactions                                                                                                                           45
## Cholesterol Biosynthesis                                                                                                                    45
## Choline Catabolism                                                                                                                          45
## Chondroitin Sulfate Biosynthesis                                                                                                            45
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                             45
## Chrebp Activates Metabolic Gene Expression                                                                                                  45
## Chromosome Maintenance                                                                                                                      45
## Chylomicron Assembly                                                                                                                        45
## Chylomicron Clearance                                                                                                                       45
## Chylomicron Remodeling                                                                                                                      45
## Cilium Assembly                                                                                                                             45
## Citric Acid Cycle Tca Cycle                                                                                                                 45
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                        45
## Class I Mhc Mediated Antigen Processing Presentation                                                                                        45
## Class I Peroxisomal Membrane Protein Import                                                                                                 45
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                     45
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                          45
## Coenzyme A Biosynthesis                                                                                                                     45
## Cohesin Loading Onto Chromatin                                                                                                              45
## Collagen Biosynthesis And Modifying Enzymes                                                                                                 45
## Collagen Chain Trimerization                                                                                                                45
## Common Pathway Of Fibrin Clot Formation                                                                                                     45
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                  45
## Complement Cascade                                                                                                                          45
## Complex I Biogenesis                                                                                                                        45
## Condensation Of Prometaphase Chromosomes                                                                                                    45
## Condensation Of Prophase Chromosomes                                                                                                        45
## Conjugation Of Benzoate With Glycine                                                                                                        45
## Constitutive Signaling By Overexpressed Erbb2                                                                                               45
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                  45
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                            45
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                          45
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                               45
## Copi Independent Golgi To Er Retrograde Traffic                                                                                             45
## Copi Mediated Anterograde Transport                                                                                                         45
## Copii Mediated Vesicle Transport                                                                                                            45
## Creatine Metabolism                                                                                                                         45
## Creation Of C4 And C2 Activators                                                                                                            45
## Creb3 Factors Activate Genes                                                                                                                45
## Cristae Formation                                                                                                                           45
## Crmps In Sema3a Signaling                                                                                                                   45
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                             45
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                  45
## Crosslinking Of Collagen Fibrils                                                                                                            45
## Cs Ds Degradation                                                                                                                           45
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                     45
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                            45
## Cyclin D Associated Events In G1                                                                                                            45
## Cyp2e1 Reactions                                                                                                                            45
## Cytochrome C Mediated Apoptotic Response                                                                                                    45
## Cytochrome P450 Arranged By Substrate Type                                                                                                  45
## Cytoprotection By Hmox1                                                                                                                     45
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                      45
## Cytosolic Sulfonation Of Small Molecules                                                                                                    45
## Cytosolic Trna Aminoacylation                                                                                                               45
## Dap12 Signaling                                                                                                                             45
## Darpp 32 Events                                                                                                                             45
## Dcc Mediated Attractive Signaling                                                                                                           45
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                     45
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                    45
## Deadenylation Dependent Mrna Decay                                                                                                          45
## Deadenylation Of Mrna                                                                                                                       45
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                              45
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                 45
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                 45
## Defective Cftr Causes Cystic Fibrosis                                                                                                       45
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                        45
## Defective Chst3 Causes Sedcjd                                                                                                               45
## Defective Chst6 Causes Mcdc1                                                                                                                45
## Defective Chsy1 Causes Tpbs                                                                                                                 45
## Defective Csf2rb Causes Smdp5                                                                                                               45
## Defective Ext2 Causes Exostoses 2                                                                                                           45
## Defective F9 Activation                                                                                                                     45
## Defective Factor Ix Causes Hemophilia B                                                                                                     45
## Defective Factor Viii Causes Hemophilia A                                                                                                   45
## Defective Lfng Causes Scdo3                                                                                                                 45
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                 45
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                   45
## Defects In Biotin Btn Metabolism                                                                                                            45
## Defects In Cobalamin B12 Metabolism                                                                                                         45
## Defects In Vitamin And Cofactor Metabolism                                                                                                  45
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                    45
## Defensins                                                                                                                                   45
## Degradation Of Axin                                                                                                                         45
## Degradation Of Beta Catenin By The Destruction Complex                                                                                      45
## Degradation Of Cysteine And Homocysteine                                                                                                    45
## Degradation Of Dvl                                                                                                                          45
## Degradation Of Gli1 By The Proteasome                                                                                                       45
## Depolymerisation Of The Nuclear Lamina                                                                                                      45
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                            45
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                 45
## Dermatan Sulfate Biosynthesis                                                                                                               45
## Detoxification Of Reactive Oxygen Species                                                                                                   45
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                               45
## Digestion                                                                                                                                   45
## Digestion And Absorption                                                                                                                    45
## Digestion Of Dietary Carbohydrate                                                                                                           45
## Digestion Of Dietary Lipid                                                                                                                  45
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                              45
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                       45
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                               45
## Diseases Associated With N Glycosylation Of Proteins                                                                                        45
## Diseases Associated With Surfactant Metabolism                                                                                              45
## Diseases Of Base Excision Repair                                                                                                            45
## Diseases Of Carbohydrate Metabolism                                                                                                         45
## Diseases Of Dna Repair                                                                                                                      45
## Diseases Of Mismatch Repair Mmr                                                                                                             45
## Diseases Of Mitotic Cell Cycle                                                                                                              45
## Disinhibition Of Snare Formation                                                                                                            45
## Disorders Of Transmembrane Transporters                                                                                                     45
## Displacement Of Dna Glycosylase By Apex1                                                                                                    45
## Dna Damage Bypass                                                                                                                           45
## Dna Damage Recognition In Gg Ner                                                                                                            45
## Dna Damage Reversal                                                                                                                         45
## Dna Damage Telomere Stress Induced Senescence                                                                                               45
## Dna Double Strand Break Repair                                                                                                              45
## Dna Double Strand Break Response                                                                                                            45
## Dna Repair                                                                                                                                  45
## Dna Replication                                                                                                                             45
## Dna Replication Initiation                                                                                                                  45
## Dna Replication Pre Initiation                                                                                                              45
## Dna Strand Elongation                                                                                                                       45
## Dopamine Neurotransmitter Release Cycle                                                                                                     45
## Dopamine Receptors                                                                                                                          45
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                     45
## Downregulation Of Erbb4 Signaling                                                                                                           45
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                    45
## Downregulation Of Tgf Beta Receptor Signaling                                                                                               45
## Downstream Signal Transduction                                                                                                              45
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                          45
## Downstream Signaling Of Activated Fgfr1                                                                                                     45
## Downstream Signaling Of Activated Fgfr2                                                                                                     45
## Downstream Signaling Of Activated Fgfr3                                                                                                     45
## Downstream Signaling Of Activated Fgfr4                                                                                                     45
## Dscam Interactions                                                                                                                          45
## Dual Incision In Gg Ner                                                                                                                     45
## Dual Incision In Tc Ner                                                                                                                     45
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                 45
## E2f Mediated Regulation Of Dna Replication                                                                                                  45
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                           45
## Early Phase Of Hiv Life Cycle                                                                                                               45
## Effects Of Pip2 Hydrolysis                                                                                                                  45
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                              45
## Eicosanoid Ligand Binding Receptors                                                                                                         45
## Eicosanoids                                                                                                                                 45
## Elastic Fibre Formation                                                                                                                     45
## Electric Transmission Across Gap Junctions                                                                                                  45
## Elevation Of Cytosolic Ca2 Levels                                                                                                           45
## Endogenous Sterols                                                                                                                          45
## Endosomal Sorting Complex Required For Transport Escrt                                                                                      45
## Endosomal Vacuolar Pathway                                                                                                                  45
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                            45
## Enos Activation                                                                                                                             45
## Epha Mediated Growth Cone Collapse                                                                                                          45
## Ephb Mediated Forward Signaling                                                                                                             45
## Ephrin Signaling                                                                                                                            45
## Er Quality Control Compartment Erqc                                                                                                         45
## Er To Golgi Anterograde Transport                                                                                                           45
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                 45
## Erk Mapk Targets                                                                                                                            45
## Erks Are Inactivated                                                                                                                        45
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                      45
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                      45
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                     45
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                         45
## Erythropoietin Activates Ras                                                                                                                45
## Erythropoietin Activates Stat5                                                                                                              45
## Establishment Of Sister Chromatid Cohesion                                                                                                  45
## Estrogen Biosynthesis                                                                                                                       45
## Estrogen Stimulated Signaling Through Prkcz                                                                                                 45
## Ethanol Oxidation                                                                                                                           45
## Eukaryotic Translation Elongation                                                                                                           45
## Eukaryotic Translation Initiation                                                                                                           45
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                             45
## Extension Of Telomeres                                                                                                                      45
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                  45
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                       45
## Fanconi Anemia Pathway                                                                                                                      45
## Fasl Cd95l Signaling                                                                                                                        45
## Fatty Acid Metabolism                                                                                                                       45
## Fatty Acids                                                                                                                                 45
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                 45
## Fatty Acyl Coa Biosynthesis                                                                                                                 45
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                          45
## Fceri Mediated Ca 2 Mobilization                                                                                                            45
## Fceri Mediated Nf Kb Activation                                                                                                             45
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                45
## Fcgr Activation                                                                                                                             45
## Fertilization                                                                                                                               45
## Fgfr1 Ligand Binding And Activation                                                                                                         45
## Fgfr1 Mutant Receptor Activation                                                                                                            45
## Fgfr1b Ligand Binding And Activation                                                                                                        45
## Fgfr1c Ligand Binding And Activation                                                                                                        45
## Fgfr2 Alternative Splicing                                                                                                                  45
## Fgfr2 Ligand Binding And Activation                                                                                                         45
## Fgfr2 Mutant Receptor Activation                                                                                                            45
## Fgfr2b Ligand Binding And Activation                                                                                                        45
## Fgfr2c Ligand Binding And Activation                                                                                                        45
## Fgfr3 Ligand Binding And Activation                                                                                                         45
## Fgfr3b Ligand Binding And Activation                                                                                                        45
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                        45
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                              45
## Flt3 Signaling                                                                                                                              45
## Flt3 Signaling By Cbl Mutants                                                                                                               45
## Flt3 Signaling In Disease                                                                                                                   45
## Flt3 Signaling Through Src Family Kinases                                                                                                   45
## Folding Of Actin By Cct Tric                                                                                                                45
## Formation Of Apoptosome                                                                                                                     45
## Formation Of Atp By Chemiosmotic Coupling                                                                                                   45
## Formation Of Fibrin Clot Clotting Cascade                                                                                                   45
## Formation Of Incision Complex In Gg Ner                                                                                                     45
## Formation Of Rna Pol Ii Elongation Complex                                                                                                  45
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                45
## Formation Of Tc Ner Pre Incision Complex                                                                                                    45
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                   45
## Formation Of The Cornified Envelope                                                                                                         45
## Formation Of The Early Elongation Complex                                                                                                   45
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                      45
## Formation Of Xylulose 5 Phosphate                                                                                                           45
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                        45
## Foxo Mediated Transcription                                                                                                                 45
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                             45
## Foxo Mediated Transcription Of Cell Death Genes                                                                                             45
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                45
## Free Fatty Acid Receptors                                                                                                                   45
## Free Fatty Acids Regulate Insulin Secretion                                                                                                 45
## Frs Mediated Fgfr1 Signaling                                                                                                                45
## Frs Mediated Fgfr2 Signaling                                                                                                                45
## Frs Mediated Fgfr3 Signaling                                                                                                                45
## Frs Mediated Fgfr4 Signaling                                                                                                                45
## Fructose Catabolism                                                                                                                         45
## Fructose Metabolism                                                                                                                         45
## G Alpha 12 13 Signalling Events                                                                                                             45
## G Alpha S Signalling Events                                                                                                                 45
## G Alpha Z Signalling Events                                                                                                                 45
## G Beta Gamma Signalling Through Cdc42                                                                                                       45
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                   45
## G Protein Activation                                                                                                                        45
## G Protein Beta Gamma Signalling                                                                                                             45
## G0 And Early G1                                                                                                                             45
## G1 S Dna Damage Checkpoints                                                                                                                 45
## G1 S Specific Transcription                                                                                                                 45
## G2 M Checkpoints                                                                                                                            45
## G2 M Dna Damage Checkpoint                                                                                                                  45
## G2 M Dna Replication Checkpoint                                                                                                             45
## G2 Phase                                                                                                                                    45
## Gaba B Receptor Activation                                                                                                                  45
## Gaba Receptor Activation                                                                                                                    45
## Gaba Synthesis Release Reuptake And Degradation                                                                                             45
## Galactose Catabolism                                                                                                                        45
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                         45
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                       45
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                     45
## Gap Junction Assembly                                                                                                                       45
## Gap Junction Degradation                                                                                                                    45
## Gap Junction Trafficking And Regulation                                                                                                     45
## Gdp Fucose Biosynthesis                                                                                                                     45
## Gene Silencing By Rna                                                                                                                       45
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                 45
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                             45
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                    45
## Glucagon Signaling In Metabolic Regulation                                                                                                  45
## Glucagon Type Ligand Receptors                                                                                                              45
## Glucocorticoid Biosynthesis                                                                                                                 45
## Gluconeogenesis                                                                                                                             45
## Glucose Metabolism                                                                                                                          45
## Glucuronidation                                                                                                                             45
## Glutamate And Glutamine Metabolism                                                                                                          45
## Glutamate Neurotransmitter Release Cycle                                                                                                    45
## Glutathione Conjugation                                                                                                                     45
## Glutathione Synthesis And Recycling                                                                                                         45
## Glycerophospholipid Biosynthesis                                                                                                            45
## Glycerophospholipid Catabolism                                                                                                              45
## Glycogen Breakdown Glycogenolysis                                                                                                           45
## Glycogen Metabolism                                                                                                                         45
## Glycogen Storage Diseases                                                                                                                   45
## Glycogen Synthesis                                                                                                                          45
## Glycolysis                                                                                                                                  45
## Glycosaminoglycan Metabolism                                                                                                                45
## Glycosphingolipid Metabolism                                                                                                                45
## Glyoxylate Metabolism And Glycine Degradation                                                                                               45
## Golgi Associated Vesicle Biogenesis                                                                                                         45
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                         45
## Golgi To Er Retrograde Transport                                                                                                            45
## Gp1b Ix V Activation Signalling                                                                                                             45
## Gpvi Mediated Activation Cascade                                                                                                            45
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                   45
## Grb7 Events In Erbb2 Signaling                                                                                                              45
## Growth Hormone Receptor Signaling                                                                                                           45
## Hats Acetylate Histones                                                                                                                     45
## Hcmv Late Events                                                                                                                            45
## Hdacs Deacetylate Histones                                                                                                                  45
## Hdl Assembly                                                                                                                                45
## Hdl Clearance                                                                                                                               45
## Hdl Remodeling                                                                                                                              45
## Hdms Demethylate Histones                                                                                                                   45
## Hdr Through Homologous Recombination Hrr                                                                                                    45
## Hdr Through Mmej Alt Nhej                                                                                                                   45
## Hdr Through Single Strand Annealing Ssa                                                                                                     45
## Hedgehog Ligand Biogenesis                                                                                                                  45
## Hedgehog Off State                                                                                                                          45
## Hedgehog On State                                                                                                                           45
## Heme Biosynthesis                                                                                                                           45
## Heme Degradation                                                                                                                            45
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                   45
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                  45
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                     45
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                      45
## Histidine Catabolism                                                                                                                        45
## Hiv Elongation Arrest And Recovery                                                                                                          45
## Hiv Infection                                                                                                                               45
## Hiv Life Cycle                                                                                                                              45
## Hiv Transcription Elongation                                                                                                                45
## Hiv Transcription Initiation                                                                                                                45
## Homologous Dna Pairing And Strand Exchange                                                                                                  45
## Homology Directed Repair                                                                                                                    45
## Hormone Ligand Binding Receptors                                                                                                            45
## Host Interactions Of Hiv Factors                                                                                                            45
## Hs Gag Biosynthesis                                                                                                                         45
## Hs Gag Degradation                                                                                                                          45
## Hsf1 Activation                                                                                                                             45
## Hsf1 Dependent Transactivation                                                                                                              45
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                     45
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                        45
## Hyaluronan Biosynthesis And Export                                                                                                          45
## Hyaluronan Metabolism                                                                                                                       45
## Hyaluronan Uptake And Degradation                                                                                                           45
## Hydrolysis Of Lpc                                                                                                                           45
## Ikba Variant Leads To Eda Id                                                                                                                45
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                             45
## Inactivation Of Cdc42 And Rac1                                                                                                              45
## Inactivation Of Csf3 G Csf Signaling                                                                                                        45
## Incretin Synthesis Secretion And Inactivation                                                                                               45
## Infection With Mycobacterium Tuberculosis                                                                                                   45
## Influenza Infection                                                                                                                         45
## Inhibition Of Dna Recombination At Telomere                                                                                                 45
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                             45
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                 45
## Initial Triggering Of Complement                                                                                                            45
## Initiation Of Nuclear Envelope Ne Reformation                                                                                               45
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                               45
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                45
## Inositol Phosphate Metabolism                                                                                                               45
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                 45
## Insulin Processing                                                                                                                          45
## Insulin Receptor Recycling                                                                                                                  45
## Insulin Receptor Signalling Cascade                                                                                                         45
## Integration Of Energy Metabolism                                                                                                            45
## Integration Of Provirus                                                                                                                     45
## Integrin Cell Surface Interactions                                                                                                          45
## Integrin Signaling                                                                                                                          45
## Interaction Between L1 And Ankyrins                                                                                                         45
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                       45
## Interactions Of Rev With Host Cellular Proteins                                                                                             45
## Interactions Of Vpr With Host Cellular Proteins                                                                                             45
## Interconversion Of Nucleotide Di And Triphosphates                                                                                          45
## Interferon Alpha Beta Signaling                                                                                                             45
## Interleukin 15 Signaling                                                                                                                    45
## Interleukin 2 Family Signaling                                                                                                              45
## Interleukin 2 Signaling                                                                                                                     45
## Interleukin 20 Family Signaling                                                                                                             45
## Interleukin 21 Signaling                                                                                                                    45
## Interleukin 23 Signaling                                                                                                                    45
## Interleukin 27 Signaling                                                                                                                    45
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                            45
## Interleukin 35 Signalling                                                                                                                   45
## Interleukin 36 Pathway                                                                                                                      45
## Interleukin 37 Signaling                                                                                                                    45
## Interleukin 7 Signaling                                                                                                                     45
## Interleukin 9 Signaling                                                                                                                     45
## Interleukin Receptor Shc Signaling                                                                                                          45
## Intestinal Absorption                                                                                                                       45
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                              45
## Intra Golgi Traffic                                                                                                                         45
## Intraflagellar Transport                                                                                                                    45
## Intrinsic Pathway For Apoptosis                                                                                                             45
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                  45
## Inwardly Rectifying K Channels                                                                                                              45
## Ion Homeostasis                                                                                                                             45
## Ion Transport By P Type Atpases                                                                                                             45
## Ionotropic Activity Of Kainate Receptors                                                                                                    45
## Irak1 Recruits Ikk Complex                                                                                                                  45
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                   45
## Irak4 Deficiency Tlr2 4                                                                                                                     45
## Ire1alpha Activates Chaperones                                                                                                              45
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                      45
## Iron Uptake And Transport                                                                                                                   45
## Irs Activation                                                                                                                              45
## Irs Mediated Signalling                                                                                                                     45
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                           45
## Josephin Domain Dubs                                                                                                                        45
## Keratan Sulfate Biosynthesis                                                                                                                45
## Keratan Sulfate Degradation                                                                                                                 45
## Keratan Sulfate Keratin Metabolism                                                                                                          45
## Keratinization                                                                                                                              45
## Ketone Body Metabolism                                                                                                                      45
## Kinesins                                                                                                                                    45
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                      45
## Lagging Strand Synthesis                                                                                                                    45
## Laminin Interactions                                                                                                                        45
## Late Endosomal Microautophagy                                                                                                               45
## Lectin Pathway Of Complement Activation                                                                                                     45
## Leukotriene Receptors                                                                                                                       45
## Lgi Adam Interactions                                                                                                                       45
## Ligand Receptor Interactions                                                                                                                45
## Linoleic Acid La Metabolism                                                                                                                 45
## Lipid Particle Organization                                                                                                                 45
## Lipophagy                                                                                                                                   45
## Listeria Monocytogenes Entry Into Host Cells                                                                                                45
## Long Term Potentiation                                                                                                                      45
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                  45
## Loss Of Function Of Smad2 3 In Cancer                                                                                                       45
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                      45
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                      45
## Ltc4 Cysltr Mediated Il4 Production                                                                                                         45
## Lysine Catabolism                                                                                                                           45
## Lysosome Vesicle Biogenesis                                                                                                                 45
## Lysosphingolipid And Lpa Receptors                                                                                                          45
## M Phase                                                                                                                                     45
## Map2k And Mapk Activation                                                                                                                   45
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                    45
## Mapk6 Mapk4 Signaling                                                                                                                       45
## Mastl Facilitates Mitotic Progression                                                                                                       45
## Maturation Of Nucleoprotein                                                                                                                 45
## Maturation Of Protein 3a                                                                                                                    45
## Maturation Of Sars Cov 1 Spike Protein                                                                                                      45
## Maturation Of Sars Cov 2 Spike Protein                                                                                                      45
## Meiosis                                                                                                                                     45
## Meiotic Recombination                                                                                                                       45
## Meiotic Synapsis                                                                                                                            45
## Melanin Biosynthesis                                                                                                                        45
## Met Activates Pi3k Akt Signaling                                                                                                            45
## Met Activates Ptk2 Signaling                                                                                                                45
## Met Activates Ptpn11                                                                                                                        45
## Met Activates Rap1 And Rac1                                                                                                                 45
## Met Activates Ras Signaling                                                                                                                 45
## Met Interacts With Tns Proteins                                                                                                             45
## Met Promotes Cell Motility                                                                                                                  45
## Met Receptor Activation                                                                                                                     45
## Met Receptor Recycling                                                                                                                      45
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                         45
## Metabolism Of Amine Derived Hormones                                                                                                        45
## Metabolism Of Amino Acids And Derivatives                                                                                                   45
## Metabolism Of Angiotensinogen To Angiotensins                                                                                               45
## Metabolism Of Carbohydrates                                                                                                                 45
## Metabolism Of Cofactors                                                                                                                     45
## Metabolism Of Fat Soluble Vitamins                                                                                                          45
## Metabolism Of Folate And Pterines                                                                                                           45
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                            45
## Metabolism Of Lipids                                                                                                                        45
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                   45
## Metabolism Of Nucleotides                                                                                                                   45
## Metabolism Of Polyamines                                                                                                                    45
## Metabolism Of Porphyrins                                                                                                                    45
## Metabolism Of Rna                                                                                                                           45
## Metabolism Of Steroid Hormones                                                                                                              45
## Metabolism Of Steroids                                                                                                                      45
## Metabolism Of Vitamins And Cofactors                                                                                                        45
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                          45
## Metal Ion Slc Transporters                                                                                                                  45
## Metal Sequestration By Antimicrobial Proteins                                                                                               45
## Metalloprotease Dubs                                                                                                                        45
## Metallothioneins Bind Metals                                                                                                                45
## Methionine Salvage Pathway                                                                                                                  45
## Methylation                                                                                                                                 45
## Microrna Mirna Biogenesis                                                                                                                   45
## Mineralocorticoid Biosynthesis                                                                                                              45
## Miro Gtpase Cycle                                                                                                                           45
## Miscellaneous Substrates                                                                                                                    45
## Miscellaneous Transport And Binding Events                                                                                                  45
## Mismatch Repair                                                                                                                             45
## Mitochondrial Calcium Ion Transport                                                                                                         45
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                     45
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                            45
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                          45
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                45
## Mitochondrial Protein Import                                                                                                                45
## Mitochondrial Translation                                                                                                                   45
## Mitochondrial Trna Aminoacylation                                                                                                           45
## Mitochondrial Uncoupling                                                                                                                    45
## Mitophagy                                                                                                                                   45
## Mitotic G1 Phase And G1 S Transition                                                                                                        45
## Mitotic G2 G2 M Phases                                                                                                                      45
## Mitotic Metaphase And Anaphase                                                                                                              45
## Mitotic Prometaphase                                                                                                                        45
## Mitotic Prophase                                                                                                                            45
## Mitotic Spindle Checkpoint                                                                                                                  45
## Mitotic Telophase Cytokinesis                                                                                                               45
## Modulation By Mtb Of Host Immune System                                                                                                     45
## Molecules Associated With Elastic Fibres                                                                                                    45
## Molybdenum Cofactor Biosynthesis                                                                                                            45
## Mrna Capping                                                                                                                                45
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                        45
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                        45
## Mrna Editing                                                                                                                                45
## Mrna Editing C To U Conversion                                                                                                              45
## Mrna Splicing                                                                                                                               45
## Mrna Splicing Minor Pathway                                                                                                                 45
## Mtor Signalling                                                                                                                             45
## Mtorc1 Mediated Signalling                                                                                                                  45
## Mucopolysaccharidoses                                                                                                                       45
## Multifunctional Anion Exchangers                                                                                                            45
## Muscarinic Acetylcholine Receptors                                                                                                          45
## Muscle Contraction                                                                                                                          45
## Myoclonic Epilepsy Of Lafora                                                                                                                45
## Myogenesis                                                                                                                                  45
## N Glycan Antennae Elongation                                                                                                                45
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                      45
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                           45
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                 45
## Na Cl Dependent Neurotransmitter Transporters                                                                                               45
## Nade Modulates Death Signalling                                                                                                             45
## Ncam1 Interactions                                                                                                                          45
## Nectin Necl Trans Heterodimerization                                                                                                        45
## Neddylation                                                                                                                                 45
## Nef And Signal Transduction                                                                                                                 45
## Nef Mediated Cd4 Down Regulation                                                                                                            45
## Nef Mediated Cd8 Down Regulation                                                                                                            45
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                  45
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                              45
## Negative Epigenetic Regulation Of Rrna Expression                                                                                           45
## Negative Feedback Regulation Of Mapk Pathway                                                                                                45
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                  45
## Negative Regulation Of Fgfr1 Signaling                                                                                                      45
## Negative Regulation Of Fgfr2 Signaling                                                                                                      45
## Negative Regulation Of Fgfr3 Signaling                                                                                                      45
## Negative Regulation Of Fgfr4 Signaling                                                                                                      45
## Negative Regulation Of Flt3                                                                                                                 45
## Negative Regulation Of Mapk Pathway                                                                                                         45
## Negative Regulation Of Met Activity                                                                                                         45
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                         45
## Negative Regulation Of Notch4 Signaling                                                                                                     45
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                  45
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                45
## Nephrin Family Interactions                                                                                                                 45
## Netrin 1 Signaling                                                                                                                          45
## Netrin Mediated Repulsion Signals                                                                                                           45
## Neurexins And Neuroligins                                                                                                                   45
## Neurofascin Interactions                                                                                                                    45
## Neurotoxicity Of Clostridium Toxins                                                                                                         45
## Neurotransmitter Clearance                                                                                                                  45
## Neurotransmitter Release Cycle                                                                                                              45
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                    45
## Nf Kb Is Activated And Signals Survival                                                                                                     45
## Ngf Independant Trka Activation                                                                                                             45
## Nicotinamide Salvaging                                                                                                                      45
## Nicotinate Metabolism                                                                                                                       45
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                   45
## Non Integrin Membrane Ecm Interactions                                                                                                      45
## Noncanonical Activation Of Notch3                                                                                                           45
## Nonhomologous End Joining Nhej                                                                                                              45
## Nonsense Mediated Decay Nmd                                                                                                                 45
## Norepinephrine Neurotransmitter Release Cycle                                                                                               45
## Nostrin Mediated Enos Trafficking                                                                                                           45
## Notch Hlh Transcription Pathway                                                                                                             45
## Notch1 Intracellular Domain Regulates Transcription                                                                                         45
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Notch3 Intracellular Domain Regulates Transcription                                                                                         45
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                 45
## Notch4 Intracellular Domain Regulates Transcription                                                                                         45
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                          45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                              45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                  45
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                            45
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                       45
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                            45
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                             45
## Nrage Signals Death Through Jnk                                                                                                             45
## Nrcam Interactions                                                                                                                          45
## Nrif Signals Cell Death From The Nucleus                                                                                                    45
## Ns1 Mediated Effects On Host Pathways                                                                                                       45
## Ntrk2 Activates Rac1                                                                                                                        45
## Nuclear Envelope Breakdown                                                                                                                  45
## Nuclear Envelope Ne Reassembly                                                                                                              45
## Nuclear Import Of Rev Protein                                                                                                               45
## Nuclear Pore Complex Npc Disassembly                                                                                                        45
## Nuclear Receptor Transcription Pathway                                                                                                      45
## Nuclear Signaling By Erbb4                                                                                                                  45
## Nucleobase Biosynthesis                                                                                                                     45
## Nucleobase Catabolism                                                                                                                       45
## Nucleotide Excision Repair                                                                                                                  45
## Nucleotide Like Purinergic Receptors                                                                                                        45
## Nucleotide Salvage                                                                                                                          45
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                           45
## Oas Antiviral Response                                                                                                                      45
## Olfactory Signaling Pathway                                                                                                                 45
## Oncogene Induced Senescence                                                                                                                 45
## Oncogenic Mapk Signaling                                                                                                                    45
## Opsins                                                                                                                                      45
## Orc1 Removal From Chromatin                                                                                                                 45
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                     45
## Organic Anion Transport                                                                                                                     45
## Organic Anion Transporters                                                                                                                  45
## Organic Cation Anion Zwitterion Transport                                                                                                   45
## Organic Cation Transport                                                                                                                    45
## Other Interleukin Signaling                                                                                                                 45
## Other Semaphorin Interactions                                                                                                               45
## Ovarian Tumor Domain Proteases                                                                                                              45
## P130cas Linkage To Mapk Signaling For Integrins                                                                                             45
## P2y Receptors                                                                                                                               45
## P38mapk Events                                                                                                                              45
## P75 Ntr Receptor Mediated Signalling                                                                                                        45
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                              45
## P75ntr Recruits Signalling Complexes                                                                                                        45
## P75ntr Regulates Axonogenesis                                                                                                               45
## P75ntr Signals Via Nf Kb                                                                                                                    45
## Parasite Infection                                                                                                                          45
## Passive Transport By Aquaporins                                                                                                             45
## Pcna Dependent Long Patch Base Excision Repair                                                                                              45
## Pecam1 Interactions                                                                                                                         45
## Pentose Phosphate Pathway                                                                                                                   45
## Peptide Hormone Biosynthesis                                                                                                                45
## Peptide Hormone Metabolism                                                                                                                  45
## Peroxisomal Lipid Metabolism                                                                                                                45
## Peroxisomal Protein Import                                                                                                                  45
## Pexophagy                                                                                                                                   45
## Phase 0 Rapid Depolarisation                                                                                                                45
## Phase 1 Inactivation Of Fast Na Channels                                                                                                    45
## Phase 2 Plateau Phase                                                                                                                       45
## Phase 3 Rapid Repolarisation                                                                                                                45
## Phase 4 Resting Membrane Potential                                                                                                          45
## Phase I Functionalization Of Compounds                                                                                                      45
## Phase Ii Conjugation Of Compounds                                                                                                           45
## Phenylalanine And Tyrosine Metabolism                                                                                                       45
## Phenylalanine Metabolism                                                                                                                    45
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                               45
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                  45
## Phospholipase C Mediated Cascade Fgfr2                                                                                                      45
## Phospholipase C Mediated Cascade Fgfr4                                                                                                      45
## Phospholipid Metabolism                                                                                                                     45
## Phosphorylation Of Emi1                                                                                                                     45
## Phosphorylation Of The Apc C                                                                                                                45
## Physiological Factors                                                                                                                       45
## Pi 3k Cascade Fgfr1                                                                                                                         45
## Pi 3k Cascade Fgfr2                                                                                                                         45
## Pi 3k Cascade Fgfr3                                                                                                                         45
## Pi 3k Cascade Fgfr4                                                                                                                         45
## Pi Metabolism                                                                                                                               45
## Pi3k Akt Activation                                                                                                                         45
## Pi3k Events In Erbb4 Signaling                                                                                                              45
## Pi5p Regulates Tp53 Acetylation                                                                                                             45
## Pink1 Prkn Mediated Mitophagy                                                                                                               45
## Piwi Interacting Rna Pirna Biogenesis                                                                                                       45
## Pka Activation In Glucagon Signalling                                                                                                       45
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                       45
## Pkmts Methylate Histone Lysines                                                                                                             45
## Plasma Lipoprotein Assembly                                                                                                                 45
## Plasma Lipoprotein Remodeling                                                                                                               45
## Platelet Adhesion To Exposed Collagen                                                                                                       45
## Platelet Aggregation Plug Formation                                                                                                         45
## Platelet Calcium Homeostasis                                                                                                                45
## Platelet Homeostasis                                                                                                                        45
## Platelet Sensitization By Ldl                                                                                                               45
## Polb Dependent Long Patch Base Excision Repair                                                                                              45
## Polo Like Kinase Mediated Events                                                                                                            45
## Polymerase Switching                                                                                                                        45
## Polymerase Switching On The C Strand Of The Telomere                                                                                        45
## Positive Epigenetic Regulation Of Rrna Expression                                                                                           45
## Post Chaperonin Tubulin Folding Pathway                                                                                                     45
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                          45
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                            45
## Potassium Channels                                                                                                                          45
## Potential Therapeutics For Sars                                                                                                             45
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                              45
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                             45
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                    45
## Pre Notch Expression And Processing                                                                                                         45
## Pre Notch Processing In Golgi                                                                                                               45
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                           45
## Pregnenolone Biosynthesis                                                                                                                   45
## Presynaptic Depolarization And Calcium Channel Opening                                                                                      45
## Presynaptic Function Of Kainate Receptors                                                                                                   45
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                   45
## Processing And Activation Of Sumo                                                                                                           45
## Processing Of Capped Intron Containing Pre Mrna                                                                                             45
## Processing Of Capped Intronless Pre Mrna                                                                                                    45
## Processing Of Dna Double Strand Break Ends                                                                                                  45
## Processing Of Intronless Pre Mrnas                                                                                                          45
## Processing Of Smdt1                                                                                                                         45
## Processive Synthesis On The C Strand Of The Telomere                                                                                        45
## Processive Synthesis On The Lagging Strand                                                                                                  45
## Prolactin Receptor Signaling                                                                                                                45
## Prolonged Erk Activation Events                                                                                                             45
## Propionyl Coa Catabolism                                                                                                                    45
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                       45
## Prostanoid Ligand Receptors                                                                                                                 45
## Protein Folding                                                                                                                             45
## Protein Localization                                                                                                                        45
## Protein Methylation                                                                                                                         45
## Protein Protein Interactions At Synapses                                                                                                    45
## Protein Repair                                                                                                                              45
## Protein Ubiquitination                                                                                                                      45
## Proton Coupled Monocarboxylate Transport                                                                                                    45
## Pten Regulation                                                                                                                             45
## Ptk6 Expression                                                                                                                             45
## Ptk6 Regulates Cell Cycle                                                                                                                   45
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                          45
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                       45
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                       45
## Purine Catabolism                                                                                                                           45
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                            45
## Purine Salvage                                                                                                                              45
## Pyrimidine Catabolism                                                                                                                       45
## Pyrimidine Salvage                                                                                                                          45
## Pyruvate Metabolism                                                                                                                         45
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                               45
## Ra Biosynthesis Pathway                                                                                                                     45
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                       45
## Rab Geranylgeranylation                                                                                                                     45
## Rab Regulation Of Trafficking                                                                                                               45
## Rac1 Gtpase Cycle                                                                                                                           45
## Rac2 Gtpase Cycle                                                                                                                           45
## Rac3 Gtpase Cycle                                                                                                                           45
## Raf Activation                                                                                                                              45
## Rap1 Signalling                                                                                                                             45
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                        45
## Ras Processing                                                                                                                              45
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                   45
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                45
## Receptor Mediated Mitophagy                                                                                                                 45
## Receptor Type Tyrosine Protein Phosphatases                                                                                                 45
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                      45
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                            45
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                    45
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                  45
## Recycling Of Bile Acids And Salts                                                                                                           45
## Recycling Of Eif2 Gdp                                                                                                                       45
## Recycling Pathway Of L1                                                                                                                     45
## Reduction Of Cytosolic Ca Levels                                                                                                            45
## Reelin Signalling Pathway                                                                                                                   45
## Regulated Proteolysis Of P75ntr                                                                                                             45
## Regulation By C Flip                                                                                                                        45
## Regulation Of Bach1 Activity                                                                                                                45
## Regulation Of Beta Cell Development                                                                                                         45
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                       45
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                 45
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                          45
## Regulation Of Expression Of Slits And Robos                                                                                                 45
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                  45
## Regulation Of Fzd By Ubiquitination                                                                                                         45
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                   45
## Regulation Of Gene Expression In Beta Cells                                                                                                 45
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                           45
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                               45
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                          45
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                 45
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                            45
## Regulation Of Hmox1 Expression And Activity                                                                                                 45
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                             45
## Regulation Of Ifna Signaling                                                                                                                45
## Regulation Of Ifng Signaling                                                                                                                45
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                      45
## Regulation Of Insulin Secretion                                                                                                             45
## Regulation Of Kit Signaling                                                                                                                 45
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                 45
## Regulation Of Localization Of Foxo Transcription Factors                                                                                    45
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                         45
## Regulation Of Plk1 Activity At G2 M Transition                                                                                              45
## Regulation Of Pten Gene Transcription                                                                                                       45
## Regulation Of Pten Localization                                                                                                             45
## Regulation Of Pten Mrna Translation                                                                                                         45
## Regulation Of Pten Stability And Activity                                                                                                   45
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                            45
## Regulation Of Ras By Gaps                                                                                                                   45
## Regulation Of Runx1 Expression And Activity                                                                                                 45
## Regulation Of Runx2 Expression And Activity                                                                                                 45
## Regulation Of Runx3 Expression And Activity                                                                                                 45
## Regulation Of Signaling By Cbl                                                                                                              45
## Regulation Of Signaling By Nodal                                                                                                            45
## Regulation Of Tlr By Endogenous Ligand                                                                                                      45
## Regulation Of Tp53 Activity                                                                                                                 45
## Regulation Of Tp53 Activity Through Acetylation                                                                                             45
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                             45
## Regulation Of Tp53 Activity Through Methylation                                                                                             45
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                         45
## Regulation Of Tp53 Expression And Degradation                                                                                               45
## Relaxin Receptors                                                                                                                           45
## Release Of Apoptotic Factors From The Mitochondria                                                                                          45
## Release Of Hh Np From The Secreting Cell                                                                                                    45
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                       45
## Repression Of Wnt Target Genes                                                                                                              45
## Reproduction                                                                                                                                45
## Resolution Of Abasic Sites Ap Sites                                                                                                         45
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                45
## Resolution Of D Loop Structures                                                                                                             45
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                           45
## Resolution Of Sister Chromatid Cohesion                                                                                                     45
## Respiratory Electron Transport                                                                                                              45
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                            45
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                  45
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                           45
## Response Of Mtb To Phagocytosis                                                                                                             45
## Response To Metal Ions                                                                                                                      45
## Ret Signaling                                                                                                                               45
## Retinoid Cycle Disease Events                                                                                                               45
## Retrograde Neurotrophin Signalling                                                                                                          45
## Retrograde Transport At The Trans Golgi Network                                                                                             45
## Reversible Hydration Of Carbon Dioxide                                                                                                      45
## Rho Gtpase Cycle                                                                                                                            45
## Rho Gtpase Effectors                                                                                                                        45
## Rho Gtpases Activate Cit                                                                                                                    45
## Rho Gtpases Activate Formins                                                                                                                45
## Rho Gtpases Activate Iqgaps                                                                                                                 45
## Rho Gtpases Activate Ktn1                                                                                                                   45
## Rho Gtpases Activate Nadph Oxidases                                                                                                         45
## Rho Gtpases Activate Paks                                                                                                                   45
## Rho Gtpases Activate Pkns                                                                                                                   45
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                45
## Rho Gtpases Activate Rocks                                                                                                                  45
## Rho Gtpases Activate Wasps And Waves                                                                                                        45
## Rhoa Gtpase Cycle                                                                                                                           45
## Rhob Gtpase Cycle                                                                                                                           45
## Rhobtb Gtpase Cycle                                                                                                                         45
## Rhobtb1 Gtpase Cycle                                                                                                                        45
## Rhobtb2 Gtpase Cycle                                                                                                                        45
## Rhobtb3 Atpase Cycle                                                                                                                        45
## Rhoc Gtpase Cycle                                                                                                                           45
## Rhod Gtpase Cycle                                                                                                                           45
## Rhof Gtpase Cycle                                                                                                                           45
## Rhog Gtpase Cycle                                                                                                                           45
## Rhoh Gtpase Cycle                                                                                                                           45
## Rhoj Gtpase Cycle                                                                                                                           45
## Rhoq Gtpase Cycle                                                                                                                           45
## Rhot1 Gtpase Cycle                                                                                                                          45
## Rhou Gtpase Cycle                                                                                                                           45
## Rhov Gtpase Cycle                                                                                                                           45
## Rna Polymerase I Promoter Escape                                                                                                            45
## Rna Polymerase I Transcription                                                                                                              45
## Rna Polymerase I Transcription Initiation                                                                                                   45
## Rna Polymerase I Transcription Termination                                                                                                  45
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                   45
## Rna Polymerase Ii Transcription Termination                                                                                                 45
## Rna Polymerase Iii Chain Elongation                                                                                                         45
## Rna Polymerase Iii Transcription                                                                                                            45
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                            45
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                            45
## Rna Polymerase Iii Transcription Termination                                                                                                45
## Rnd1 Gtpase Cycle                                                                                                                           45
## Rnd2 Gtpase Cycle                                                                                                                           45
## Rnd3 Gtpase Cycle                                                                                                                           45
## Robo Receptors Bind Akap5                                                                                                                   45
## Role Of Abl In Robo Slit Signaling                                                                                                          45
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                               45
## Role Of Phospholipids In Phagocytosis                                                                                                       45
## Role Of Second Messengers In Netrin 1 Signaling                                                                                             45
## Rora Activates Gene Expression                                                                                                              45
## Ros And Rns Production In Phagocytes                                                                                                        45
## Rrna Modification In The Mitochondrion                                                                                                      45
## Rrna Modification In The Nucleus And Cytosol                                                                                                45
## Rrna Processing                                                                                                                             45
## Rrna Processing In The Mitochondrion                                                                                                        45
## Rsk Activation                                                                                                                              45
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                   45
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                          45
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                    45
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                 45
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                       45
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                            45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                  45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                         45
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                         45
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                    45
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                            45
## Runx2 Regulates Bone Development                                                                                                            45
## Runx2 Regulates Chondrocyte Maturation                                                                                                      45
## Runx2 Regulates Genes Involved In Cell Migration                                                                                            45
## Runx2 Regulates Osteoblast Differentiation                                                                                                  45
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                   45
## Runx3 Regulates Cdkn1a Transcription                                                                                                        45
## Runx3 Regulates Immune Response And Cell Migration                                                                                          45
## Runx3 Regulates Notch Signaling                                                                                                             45
## Runx3 Regulates P14 Arf                                                                                                                     45
## Runx3 Regulates Wnt Signaling                                                                                                               45
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                 45
## S Phase                                                                                                                                     45
## Sars Cov 1 Genome Replication And Transcription                                                                                             45
## Sars Cov 1 Infection                                                                                                                        45
## Sars Cov 2 Infection                                                                                                                        45
## Sars Cov Infections                                                                                                                         45
## Scavenging By Class A Receptors                                                                                                             45
## Scavenging By Class B Receptors                                                                                                             45
## Scavenging By Class F Receptors                                                                                                             45
## Scavenging Of Heme From Plasma                                                                                                              45
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                    45
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                             45
## Selective Autophagy                                                                                                                         45
## Selenoamino Acid Metabolism                                                                                                                 45
## Sema3a Pak Dependent Axon Repulsion                                                                                                         45
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                           45
## Sema4d In Semaphorin Signaling                                                                                                              45
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                      45
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                 45
## Semaphorin Interactions                                                                                                                     45
## Sensing Of Dna Double Strand Breaks                                                                                                         45
## Sensory Perception                                                                                                                          45
## Sensory Processing Of Sound                                                                                                                 45
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                              45
## Separation Of Sister Chromatids                                                                                                             45
## Serine Biosynthesis                                                                                                                         45
## Serotonin And Melatonin Biosynthesis                                                                                                        45
## Serotonin Neurotransmitter Release Cycle                                                                                                    45
## Serotonin Receptors                                                                                                                         45
## Shc Mediated Cascade Fgfr1                                                                                                                  45
## Shc Mediated Cascade Fgfr3                                                                                                                  45
## Shc Mediated Cascade Fgfr4                                                                                                                  45
## Shc Related Events Triggered By Igf1r                                                                                                       45
## Shc1 Events In Erbb4 Signaling                                                                                                              45
## Signal Amplification                                                                                                                        45
## Signal Attenuation                                                                                                                          45
## Signal Regulatory Protein Family Interactions                                                                                               45
## Signaling By Activin                                                                                                                        45
## Signaling By Bmp                                                                                                                            45
## Signaling By Braf And Raf Fusions                                                                                                           45
## Signaling By Csf3 G Csf                                                                                                                     45
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                    45
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                 45
## Signaling By Erythropoietin                                                                                                                 45
## Signaling By Fgfr                                                                                                                           45
## Signaling By Fgfr In Disease                                                                                                                45
## Signaling By Fgfr1                                                                                                                          45
## Signaling By Fgfr1 In Disease                                                                                                               45
## Signaling By Fgfr2                                                                                                                          45
## Signaling By Fgfr2 Iiia Tm                                                                                                                  45
## Signaling By Fgfr2 In Disease                                                                                                               45
## Signaling By Fgfr3                                                                                                                          45
## Signaling By Fgfr3 Fusions In Cancer                                                                                                        45
## Signaling By Fgfr4                                                                                                                          45
## Signaling By Fgfr4 In Disease                                                                                                               45
## Signaling By Flt3 Fusion Proteins                                                                                                           45
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                       45
## Signaling By Hedgehog                                                                                                                       45
## Signaling By Hippo                                                                                                                          45
## Signaling By Insulin Receptor                                                                                                               45
## Signaling By Kit In Disease                                                                                                                 45
## Signaling By Leptin                                                                                                                         45
## Signaling By Lrp5 Mutants                                                                                                                   45
## Signaling By Mapk Mutants                                                                                                                   45
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                  45
## Signaling By Met                                                                                                                            45
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                          45
## Signaling By Mras Complex Mutants                                                                                                           45
## Signaling By Mst1                                                                                                                           45
## Signaling By Nodal                                                                                                                          45
## Signaling By Notch1                                                                                                                         45
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                             45
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                           45
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                           45
## Signaling By Notch4                                                                                                                         45
## Signaling By Ntrk2 Trkb                                                                                                                     45
## Signaling By Ntrk3 Trkc                                                                                                                     45
## Signaling By Pdgf                                                                                                                           45
## Signaling By Pdgfr In Disease                                                                                                               45
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                   45
## Signaling By Retinoic Acid                                                                                                                  45
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                           45
## Signaling By Rnf43 Mutants                                                                                                                  45
## Signaling By Robo Receptors                                                                                                                 45
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                            45
## Signaling By The B Cell Receptor Bcr                                                                                                        45
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                             45
## Signaling By Vegf                                                                                                                           45
## Signaling By Wnt In Cancer                                                                                                                  45
## Signalling To Erks                                                                                                                          45
## Signalling To P38 Via Rit And Rin                                                                                                           45
## Signalling To Ras                                                                                                                           45
## Sirt1 Negatively Regulates Rrna Expression                                                                                                  45
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                        45
## Slc Mediated Transmembrane Transport                                                                                                        45
## Slc Transporter Disorders                                                                                                                   45
## Smac Xiap Regulated Apoptotic Response                                                                                                      45
## Small Interfering Rna Sirna Biogenesis                                                                                                      45
## Smooth Muscle Contraction                                                                                                                   45
## Snrnp Assembly                                                                                                                              45
## Sodium Calcium Exchangers                                                                                                                   45
## Sodium Coupled Phosphate Cotransporters                                                                                                     45
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                 45
## Sodium Proton Exchangers                                                                                                                    45
## Sos Mediated Signalling                                                                                                                     45
## Sperm Motility And Taxes                                                                                                                    45
## Sphingolipid De Novo Biosynthesis                                                                                                           45
## Sphingolipid Metabolism                                                                                                                     45
## Spry Regulation Of Fgf Signaling                                                                                                            45
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                 45
## Stabilization Of P53                                                                                                                        45
## Stat5 Activation                                                                                                                            45
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                             45
## Striated Muscle Contraction                                                                                                                 45
## Sulfide Oxidation To Sulfate                                                                                                                45
## Sulfur Amino Acid Metabolism                                                                                                                45
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                          45
## Sumo Is Proteolytically Processed                                                                                                           45
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                45
## Sumoylation Of Chromatin Organization Proteins                                                                                              45
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                      45
## Sumoylation Of Dna Replication Proteins                                                                                                     45
## Sumoylation Of Immune Response Proteins                                                                                                     45
## Sumoylation Of Intracellular Receptors                                                                                                      45
## Sumoylation Of Rna Binding Proteins                                                                                                         45
## Sumoylation Of Sumoylation Proteins                                                                                                         45
## Sumoylation Of Transcription Factors                                                                                                        45
## Sumoylation Of Ubiquitinylation Proteins                                                                                                    45
## Suppression Of Apoptosis                                                                                                                    45
## Suppression Of Phagosomal Maturation                                                                                                        45
## Surfactant Metabolism                                                                                                                       45
## Switching Of Origins To A Post Replicative State                                                                                            45
## Synaptic Adhesion Like Molecules                                                                                                            45
## Syndecan Interactions                                                                                                                       45
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                           45
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                           45
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                       45
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                       45
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                    45
## Synthesis Of Bile Acids And Bile Salts                                                                                                      45
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                            45
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                            45
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                        45
## Synthesis Of Diphthamide Eef2                                                                                                               45
## Synthesis Of Dolichyl Phosphate                                                                                                             45
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                               45
## Synthesis Of Gdp Mannose                                                                                                                    45
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                               45
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                  45
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                     45
## Synthesis Of Ketone Bodies                                                                                                                  45
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                  45
## Synthesis Of Lipoxins Lx                                                                                                                    45
## Synthesis Of Pa                                                                                                                             45
## Synthesis Of Pc                                                                                                                             45
## Synthesis Of Pe                                                                                                                             45
## Synthesis Of Pg                                                                                                                             45
## Synthesis Of Pi                                                                                                                             45
## Synthesis Of Pips At The Early Endosome Membrane                                                                                            45
## Synthesis Of Pips At The Er Membrane                                                                                                        45
## Synthesis Of Pips At The Golgi Membrane                                                                                                     45
## Synthesis Of Pips At The Late Endosome Membrane                                                                                             45
## Synthesis Of Pips At The Plasma Membrane                                                                                                    45
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                          45
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                  45
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                       45
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                45
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                  45
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                              45
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                       45
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                    45
## Tachykinin Receptors Bind Tachykinins                                                                                                       45
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                       45
## Tandem Pore Domain Potassium Channels                                                                                                       45
## Tbc Rabgaps                                                                                                                                 45
## Telomere C Strand Lagging Strand Synthesis                                                                                                  45
## Telomere C Strand Synthesis Initiation                                                                                                      45
## Telomere Extension By Telomerase                                                                                                            45
## Telomere Maintenance                                                                                                                        45
## Terminal Pathway Of Complement                                                                                                              45
## Termination Of Translesion Dna Synthesis                                                                                                    45
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                          45
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                             45
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                45
## Tgf Beta Receptor Signaling Activates Smads                                                                                                 45
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                     45
## The Activation Of Arylsulfatases                                                                                                            45
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                        45
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                45
## The Fatty Acid Cycling Model                                                                                                                45
## The Nlrp3 Inflammasome                                                                                                                      45
## The Phototransduction Cascade                                                                                                               45
## The Retinoid Cycle In Cones Daylight Vision                                                                                                 45
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                   45
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                               45
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                             45
## Thromboxane Signalling Through Tp Receptor                                                                                                  45
## Thyroxine Biosynthesis                                                                                                                      45
## Tie2 Signaling                                                                                                                              45
## Tight Junction Interactions                                                                                                                 45
## Tnfr1 Induced Proapoptotic Signaling                                                                                                        45
## Tnfr1 Mediated Ceramide Production                                                                                                          45
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                     45
## Tp53 Regulates Metabolic Genes                                                                                                              45
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                            45
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                             45
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                            45
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                            45
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                 45
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                      45
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                      45
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                      45
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain        45
## Traf3 Dependent Irf Activation Pathway                                                                                                      45
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                45
## Traf6 Mediated Irf7 Activation                                                                                                              45
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                     45
## Traf6 Mediated Nf Kb Activation                                                                                                             45
## Trafficking Of Ampa Receptors                                                                                                               45
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                              45
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                         45
## Trail Signaling                                                                                                                             45
## Trans Golgi Network Vesicle Budding                                                                                                         45
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                     45
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                        45
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                        45
## Transcription Of The Hiv Genome                                                                                                             45
## Transcriptional Regulation By E2f6                                                                                                          45
## Transcriptional Regulation By Runx1                                                                                                         45
## Transcriptional Regulation By Runx2                                                                                                         45
## Transcriptional Regulation By Runx3                                                                                                         45
## Transcriptional Regulation By Small Rnas                                                                                                    45
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                        45
## Transcriptional Regulation Of Testis Differentiation                                                                                        45
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                               45
## Transferrin Endocytosis And Recycling                                                                                                       45
## Translation                                                                                                                                 45
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                              45
## Translation Of Sars Cov 1 Structural Proteins                                                                                               45
## Translation Of Sars Cov 2 Structural Proteins                                                                                               45
## Translesion Synthesis By Polh                                                                                                               45
## Translesion Synthesis By Polk                                                                                                               45
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                          45
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                        45
## Transport And Synthesis Of Paps                                                                                                             45
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                    45
## Transport Of Connexons To The Plasma Membrane                                                                                               45
## Transport Of Fatty Acids                                                                                                                    45
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                         45
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                               45
## Transport Of Mature Transcript To Cytoplasm                                                                                                 45
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                    45
## Transport Of Nucleotide Sugars                                                                                                              45
## Transport Of Organic Anions                                                                                                                 45
## Transport Of The Slbp Dependant Mature Mrna                                                                                                 45
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                     45
## Transport To The Golgi And Subsequent Modification                                                                                          45
## Trif Mediated Programmed Cell Death                                                                                                         45
## Triglyceride Biosynthesis                                                                                                                   45
## Triglyceride Catabolism                                                                                                                     45
## Triglyceride Metabolism                                                                                                                     45
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                       45
## Trna Aminoacylation                                                                                                                         45
## Trna Modification In The Mitochondrion                                                                                                      45
## Trna Modification In The Nucleus And Cytosol                                                                                                45
## Trna Processing                                                                                                                             45
## Trna Processing In The Mitochondrion                                                                                                        45
## Trna Processing In The Nucleus                                                                                                              45
## Trp Channels                                                                                                                                45
## Tryptophan Catabolism                                                                                                                       45
## Type I Hemidesmosome Assembly                                                                                                               45
## Tyrosine Catabolism                                                                                                                         45
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                         45
## Ubiquinol Biosynthesis                                                                                                                      45
## Uch Proteinases                                                                                                                             45
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                               45
## Unwinding Of Dna                                                                                                                            45
## Uptake And Actions Of Bacterial Toxins                                                                                                      45
## Uptake And Function Of Anthrax Toxins                                                                                                       45
## Uptake And Function Of Diphtheria Toxin                                                                                                     45
## Urea Cycle                                                                                                                                  45
## Vasopressin Like Receptors                                                                                                                  45
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                45
## Vegf Ligand Receptor Interactions                                                                                                           45
## Vegfr2 Mediated Cell Proliferation                                                                                                          45
## Vegfr2 Mediated Vascular Permeability                                                                                                       45
## Viral Messenger Rna Synthesis                                                                                                               45
## Visual Phototransduction                                                                                                                    45
## Vitamin B1 Thiamin Metabolism                                                                                                               45
## Vitamin B2 Riboflavin Metabolism                                                                                                            45
## Vitamin B5 Pantothenate Metabolism                                                                                                          45
## Vitamin C Ascorbate Metabolism                                                                                                              45
## Vitamin D Calciferol Metabolism                                                                                                             45
## Vitamins                                                                                                                                    45
## Vldl Assembly                                                                                                                               45
## Vldl Clearance                                                                                                                              45
## Voltage Gated Potassium Channels                                                                                                            45
## Vxpx Cargo Targeting To Cilium                                                                                                              45
## Wax And Plasmalogen Biosynthesis                                                                                                            45
## Wnt Mediated Activation Of Dvl                                                                                                              45
## Xenobiotics                                                                                                                                 45
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                               45
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                    45
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                             45
## Zinc Transporters                                                                                                                           45
##                                                                                                                                      geneset
## Cytokine Signaling In Immune System                                                                                                      719
## Interleukin 10 Signaling                                                                                                                  46
## Signaling By Interleukins                                                                                                                463
## Chemokine Receptors Bind Chemokines                                                                                                       58
## Interleukin 4 And Interleukin 13 Signaling                                                                                               111
## Innate Immune System                                                                                                                    1117
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                        101
## G Alpha I Signalling Events                                                                                                              314
## Peptide Ligand Binding Receptors                                                                                                         198
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              17
## Signaling By Gpcr                                                                                                                        698
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    24
## Extra Nuclear Estrogen Signaling                                                                                                          75
## Tnfs Bind Their Physiological Receptors                                                                                                   29
## Gpcr Ligand Binding                                                                                                                      463
## Leishmania Infection                                                                                                                     308
## Class A 1 Rhodopsin Like Receptors                                                                                                       331
## Cd163 Mediating An Anti Inflammatory Response                                                                                              9
## Interleukin 1 Processing                                                                                                                   9
## Regulated Necrosis                                                                                                                        56
## Toll Like Receptor Cascades                                                                                                              155
## Costimulation By The Cd28 Family                                                                                                          74
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          18
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              19
## Esr Mediated Signaling                                                                                                                   221
## Myd88 Independent Tlr4 Cascade                                                                                                            97
## Pi3k Akt Signaling In Cancer                                                                                                             105
## Purinergic Signaling In Leishmaniasis Infection                                                                                           26
## Pyroptosis                                                                                                                                27
## Negative Regulation Of The Pi3k Akt Network                                                                                              113
## Pd 1 Signaling                                                                                                                            28
## Senescence Associated Secretory Phenotype Sasp                                                                                           112
## Post Translational Protein Modification                                                                                                 1435
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       31
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                  124
## Infectious Disease                                                                                                                       924
## Interleukin 1 Family Signaling                                                                                                           140
## Ngf Stimulated Transcription                                                                                                              39
## Signaling By Nuclear Receptors                                                                                                           297
## Intracellular Signaling By Second Messengers                                                                                             307
## Adaptive Immune System                                                                                                                   825
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  56
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                 191
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 61
## Cellular Senescence                                                                                                                      198
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              63
## Programmed Cell Death                                                                                                                    208
## Circadian Clock                                                                                                                           70
## Interleukin 17 Signaling                                                                                                                  71
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                       223
## Mecp2 Regulates Transcription Factors                                                                                                      5
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         78
## Clec7a Inflammasome Pathway                                                                                                                6
## Fibronectin Matrix Formation                                                                                                               6
## Ptk6 Promotes Hif1a Stabilization                                                                                                          6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       6
## Creb Phosphorylation                                                                                                                       7
## Neutrophil Degranulation                                                                                                                 479
## Fcgr3a Mediated Il10 Synthesis                                                                                                            95
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         94
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               8
## Interleukin 18 Signaling                                                                                                                   8
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          8
## Signaling By Receptor Tyrosine Kinases                                                                                                   504
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                      105
## Egfr Interacts With Phospholipase C Gamma                                                                                                  9
## Egfr Transactivation By Gastrin                                                                                                            9
## Mapk1 Erk2 Activation                                                                                                                      9
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                     103
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    10
## Akt Phosphorylates Targets In The Nucleus                                                                                                 10
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  10
## Mapk3 Erk1 Activation                                                                                                                     10
## Extracellular Matrix Organization                                                                                                        301
## Interleukin 6 Signaling                                                                                                                   11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          11
## Cd28 Dependent Vav1 Pathway                                                                                                               12
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         12
## Killing Mechanisms                                                                                                                        12
## Notch2 Intracellular Domain Regulates Transcription                                                                                       12
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  12
## Vldlr Internalisation And Degradation                                                                                                     12
## Dissolution Of Fibrin Clot                                                                                                                13
## Erbb2 Activates Ptk6 Signaling                                                                                                            13
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     13
## Trafficking And Processing Of Endosomal Tlr                                                                                               13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     13
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                  133
## Shc1 Events In Egfr Signaling                                                                                                             14
## Signaling By Ntrks                                                                                                                       134
## Constitutive Signaling By Egfrviii                                                                                                        15
## Erbb2 Regulates Cell Motility                                                                                                             15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  15
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           15
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   15
## Hcmv Early Events                                                                                                                        138
## C Type Lectin Receptors Clrs                                                                                                             140
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                16
## Grb2 Events In Erbb2 Signaling                                                                                                            16
## Pi3k Events In Erbb2 Signaling                                                                                                            16
## Signaling By Erbb2 Ecd Mutants                                                                                                            16
## Sting Mediated Induction Of Host Immune Responses                                                                                         16
## Sumoylation Of Dna Methylation Proteins                                                                                                   16
## Clathrin Mediated Endocytosis                                                                                                            145
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             17
## Gab1 Signalosome                                                                                                                          17
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     17
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           18
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          19
## Ldl Clearance                                                                                                                             19
## Pka Mediated Phosphorylation Of Creb                                                                                                      20
## Hcmv Infection                                                                                                                           162
## Ctla4 Inhibitory Signaling                                                                                                                21
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                         394
## Inflammasomes                                                                                                                             21
## Signal Transduction By L1                                                                                                                 21
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                21
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         22
## Shc1 Events In Erbb2 Signaling                                                                                                            22
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23
## Raf Independent Mapk1 3 Activation                                                                                                        23
## Termination Of O Glycan Biosynthesis                                                                                                      23
## Interleukin 6 Family Signaling                                                                                                            24
## Cellular Responses To External Stimuli                                                                                                   706
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               25
## Signaling By Egfr In Cancer                                                                                                               25
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             26
## Dectin 2 Family                                                                                                                           26
## Signaling By Erbb2 In Cancer                                                                                                              26
## Wnt Ligand Biogenesis And Trafficking                                                                                                     26
## Sumoylation                                                                                                                              187
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          27
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          28
## Cell Surface Interactions At The Vascular Wall                                                                                           194
## Downregulation Of Erbb2 Signaling                                                                                                         29
## Ripk1 Mediated Regulated Necrosis                                                                                                         29
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  30
## Diseases Of Immune System                                                                                                                 31
## Egfr Downregulation                                                                                                                       31
## Perk Regulates Gene Expression                                                                                                            32
## Regulation Of Mecp2 Expression And Activity                                                                                               32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    32
## Activation Of Matrix Metalloproteinases                                                                                                   33
## Cd28 Co Stimulation                                                                                                                       33
## Plasma Lipoprotein Clearance                                                                                                              33
## Sialic Acid Metabolism                                                                                                                    33
## Signaling By Notch2                                                                                                                       33
## G Alpha Q Signalling Events                                                                                                              216
## Regulation Of Tnfr1 Signaling                                                                                                             35
## Nod1 2 Signaling Pathway                                                                                                                  36
## Ub Specific Processing Proteases                                                                                                         221
## Ca Dependent Events                                                                                                                       37
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        38
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              38
## Generation Of Second Messenger Molecules                                                                                                  39
## Dag And Ip3 Signaling                                                                                                                     41
## Transcriptional Regulation By Ventx                                                                                                       41
## Signaling By Scf Kit                                                                                                                      43
## Sumoylation Of Transcription Cofactors                                                                                                    43
## Signaling By Notch                                                                                                                       247
## Tnf Signaling                                                                                                                             44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                44
## Dap12 Interactions                                                                                                                        45
## Interleukin 12 Signaling                                                                                                                  47
## Heme Signaling                                                                                                                            48
## Signaling By Notch3                                                                                                                       49
## Signaling By Egfr                                                                                                                         50
## Signaling By Erbb2                                                                                                                        50
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    51
## G Protein Mediated Events                                                                                                                 54
## Signaling By Ptk6                                                                                                                         54
## Interleukin 12 Family Signaling                                                                                                           57
## Nervous System Development                                                                                                               580
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    55
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              61
## Ca2 Pathway                                                                                                                               62
## Deubiquitination                                                                                                                         298
## Ncam Signaling For Neurite Out Growth                                                                                                     63
## O Linked Glycosylation Of Mucins                                                                                                          62
## Signaling By Erbb4                                                                                                                        58
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           63
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          62
## Transcriptional Regulation By Mecp2                                                                                                       63
## Asymmetric Localization Of Pcp Proteins                                                                                                   64
## Collagen Degradation                                                                                                                      64
## Diseases Associated With O Glycosylation Of Proteins                                                                                      68
## Dna Methylation                                                                                                                           65
## Rna Polymerase Ii Transcription                                                                                                         1374
## Mapk Family Signaling Cascades                                                                                                           327
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      71
## Prc2 Methylates Histones And Dna                                                                                                          73
## Signaling By Tgf Beta Receptor Complex                                                                                                    73
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        78
## Ecm Proteoglycans                                                                                                                         76
## Hemostasis                                                                                                                               678
## Rmts Methylate Histone Arginines                                                                                                          79
## Fceri Mediated Mapk Activation                                                                                                            87
## Collagen Formation                                                                                                                        90
## Eph Ephrin Signaling                                                                                                                      92
## Interferon Gamma Signaling                                                                                                                93
## Opioid Signalling                                                                                                                         90
## Pcp Ce Pathway                                                                                                                            92
## Transcriptional Regulation Of Granulopoiesis                                                                                              90
## Unfolded Protein Response Upr                                                                                                             92
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      94
## Class B 2 Secretin Family Receptors                                                                                                       94
## Clec7a Dectin 1 Signaling                                                                                                                100
## Mitochondrial Biogenesis                                                                                                                  94
## Diseases Of Programmed Cell Death                                                                                                        102
## Interleukin 1 Signaling                                                                                                                  102
## Signaling By Tgfb Family Members                                                                                                         102
## Stimuli Sensing Channels                                                                                                                 106
## Amyloid Fiber Formation                                                                                                                  110
## O Linked Glycosylation                                                                                                                   111
## L1cam Interactions                                                                                                                       121
## Tcr Signaling                                                                                                                            124
## Mhc Class Ii Antigen Presentation                                                                                                        126
## Oxidative Stress Induced Senescence                                                                                                      126
## Response To Elevated Platelet Cytosolic Ca2                                                                                              132
## Death Receptor Signalling                                                                                                                141
## Degradation Of The Extracellular Matrix                                                                                                  140
## Diseases Of Glycosylation                                                                                                                143
## Beta Catenin Independent Wnt Signaling                                                                                                   146
## Epigenetic Regulation Of Gene Expression                                                                                                 148
## Estrogen Dependent Gene Expression                                                                                                       150
## Fc Epsilon Receptor Fceri Signaling                                                                                                      186
## Ion Channel Transport                                                                                                                    183
## Interferon Signaling                                                                                                                     203
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                          205
## Membrane Trafficking                                                                                                                     629
## Tcf Dependent Signaling In Response To Wnt                                                                                               234
## Developmental Biology                                                                                                                   1143
## Diseases Of Metabolism                                                                                                                   246
## Platelet Activation Signaling And Aggregation                                                                                            261
## Chromatin Modifying Enzymes                                                                                                              274
## Transmission Across Chemical Synapses                                                                                                    269
## Transport Of Small Molecules                                                                                                             728
## Vesicle Mediated Transport                                                                                                               724
## Organelle Biogenesis And Maintenance                                                                                                     296
## Asparagine N Linked Glycosylation                                                                                                        305
## Signaling By Wnt                                                                                                                         331
## Transcriptional Regulation By Tp53                                                                                                       363
## Neuronal System                                                                                                                          410
## 2 Ltr Circle Formation                                                                                                                     7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           26
## Abacavir Metabolism                                                                                                                        5
## Abacavir Transmembrane Transport                                                                                                           5
## Abacavir Transport And Metabolism                                                                                                         10
## Abc Family Proteins Mediated Transport                                                                                                   103
## Abc Transporter Disorders                                                                                                                 77
## Abc Transporters In Lipid Homeostasis                                                                                                     18
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23
## Acetylcholine Binding And Downstream Events                                                                                               14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     5
## Acetylcholine Neurotransmitter Release Cycle                                                                                              17
## Acetylcholine Regulates Insulin Secretion                                                                                                 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        6
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          31
## Activated Ntrk2 Signals Through Cdk5                                                                                                       6
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             11
## Activated Ntrk2 Signals Through Fyn                                                                                                        7
## Activated Ntrk2 Signals Through Pi3k                                                                                                       7
## Activated Ntrk2 Signals Through Ras                                                                                                        9
## Activated Ntrk3 Signals Through Pi3k                                                                                                       6
## Activated Ntrk3 Signals Through Ras                                                                                                        8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             67
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23
## Activation Of Ampk Downstream Of Nmdars                                                                                                   29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                     122
## Activation Of Atr In Response To Replication Stress                                                                                       37
## Activation Of Bad And Translocation To Mitochondria                                                                                       15
## Activation Of Bh3 Only Proteins                                                                                                           30
## Activation Of C3 And C5                                                                                                                    8
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                6
## Activation Of Gene Expression By Srebf Srebp                                                                                              42
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      17
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    30
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  7
## Activation Of Noxa And Translocation To Mitochondria                                                                                       5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      10
## Activation Of Puma And Translocation To Mitochondria                                                                                       9
## Activation Of Rac1                                                                                                                        13
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    7
## Activation Of Ras In B Cells                                                                                                               5
## Activation Of Smo                                                                                                                         18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     60
## Activation Of The Phototransduction Cascade                                                                                               11
## Activation Of The Pre Replicative Complex                                                                                                 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              12
## Activation Of Trka Receptors                                                                                                               6
## Acyl Chain Remodeling Of Cl                                                                                                                6
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       7
## Acyl Chain Remodelling Of Pc                                                                                                              27
## Acyl Chain Remodelling Of Pe                                                                                                              29
## Acyl Chain Remodelling Of Pg                                                                                                              18
## Acyl Chain Remodelling Of Pi                                                                                                              17
## Acyl Chain Remodelling Of Ps                                                                                                              22
## Adenylate Cyclase Activating Pathway                                                                                                      10
## Adenylate Cyclase Inhibitory Pathway                                                                                                      14
## Adherens Junctions Interactions                                                                                                           33
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 25
## Adp Signalling Through P2y Purinoceptor 12                                                                                                22
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       28
## Adrenoceptors                                                                                                                              9
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      13
## Aflatoxin Activation And Detoxification                                                                                                   19
## Aggrephagy                                                                                                                                44
## Akt Phosphorylates Targets In The Cytosol                                                                                                 14
## Alpha Defensins                                                                                                                           10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                13
## Alpha Oxidation Of Phytanate                                                                                                               6
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  11
## Alternative Complement Activation                                                                                                          5
## Amine Ligand Binding Receptors                                                                                                            42
## Amino Acid Conjugation                                                                                                                     9
## Amino Acid Transport Across The Plasma Membrane                                                                                           33
## Amino Acids Regulate Mtorc1                                                                                                               55
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   8
## Anchoring Fibril Formation                                                                                                                15
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        97
## Androgen Biosynthesis                                                                                                                     11
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          86
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  25
## Antigen Processing Cross Presentation                                                                                                    106
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                 308
## Antimicrobial Peptides                                                                                                                    97
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               82
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              24
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  74
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         88
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     7
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            5
## Apoptosis                                                                                                                                179
## Apoptosis Induced Dna Fragmentation                                                                                                       13
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              11
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   38
## Apoptotic Execution Phase                                                                                                                 52
## Apoptotic Factor Mediated Response                                                                                                        20
## Aquaporin Mediated Transport                                                                                                              52
## Arachidonate Production From Dag                                                                                                           5
## Arachidonic Acid Metabolism                                                                                                               59
## Arms Mediated Activation                                                                                                                   7
## Aryl Hydrocarbon Receptor Signalling                                                                                                       8
## Aspartate And Asparagine Metabolism                                                                                                       11
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  44
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          19
## Assembly Of The Hiv Virion                                                                                                                16
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   6
## Assembly Of The Pre Replicative Complex                                                                                                   68
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          39
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 10
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      12
## Attachment And Entry                                                                                                                       5
## Attachment Of Gpi Anchor To Upar                                                                                                           7
## Attenuation Phase                                                                                                                         28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 55
## Aurka Activation By Tpx2                                                                                                                  72
## Autophagy                                                                                                                                151
## B Wich Complex Positively Regulates Rrna Expression                                                                                       91
## Base Excision Repair                                                                                                                      91
## Base Excision Repair Ap Site Formation                                                                                                    63
## Basigin Interactions                                                                                                                      25
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23
## Beta Catenin Phosphorylation Cascade                                                                                                      17
## Beta Defensins                                                                                                                            42
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             5
## Beta Oxidation Of Pristanoyl Coa                                                                                                           9
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             11
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               9
## Bicarbonate Transporters                                                                                                                  10
## Bile Acid And Bile Salt Metabolism                                                                                                        43
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      98
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         8
## Biological Oxidations                                                                                                                    222
## Biosynthesis Of Epa Derived Spms                                                                                                           6
## Biosynthesis Of Maresin Like Spms                                                                                                          6
## Biosynthesis Of Maresins                                                                                                                   8
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   19
## Biotin Transport And Metabolism                                                                                                           11
## Blood Group Systems Biosynthesis                                                                                                          21
## Branched Chain Amino Acid Catabolism                                                                                                      21
## Budding And Maturation Of Hiv Virion                                                                                                      28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               17
## Butyrophilin Btn Family Interactions                                                                                                      12
## Ca2 Activated K Channels                                                                                                                   9
## Calcineurin Activates Nfat                                                                                                                 9
## Calcitonin Like Ligand Receptors                                                                                                          10
## Calnexin Calreticulin Cycle                                                                                                               26
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               46
## Cardiac Conduction                                                                                                                       127
## Cargo Concentration In The Er                                                                                                             33
## Cargo Trafficking To The Periciliary Membrane                                                                                             51
## Carnitine Metabolism                                                                                                                      14
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          16
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      10
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             26
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        12
## Cation Coupled Chloride Cotransporters                                                                                                     7
## Cd209 Dc Sign Signaling                                                                                                                   21
## Cd22 Mediated Bcr Regulation                                                                                                              61
## Cdc42 Gtpase Cycle                                                                                                                       159
## Cdc6 Association With The Orc Origin Complex                                                                                              11
## Cell Cell Communication                                                                                                                  130
## Cell Cell Junction Organization                                                                                                           65
## Cell Cycle                                                                                                                               693
## Cell Cycle Checkpoints                                                                                                                   292
## Cell Cycle Mitotic                                                                                                                       561
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             76
## Cell Extracellular Matrix Interactions                                                                                                    18
## Cell Junction Organization                                                                                                                92
## Cellular Hexose Transport                                                                                                                 21
## Cellular Response To Chemical Stress                                                                                                     160
## Cellular Response To Heat Stress                                                                                                         101
## Cellular Response To Hypoxia                                                                                                              75
## Cellular Response To Starvation                                                                                                          157
## Cgmp Effects                                                                                                                              16
## Chaperone Mediated Autophagy                                                                                                              22
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             13
## Chl1 Interactions                                                                                                                          9
## Cholesterol Biosynthesis                                                                                                                  25
## Choline Catabolism                                                                                                                         6
## Chondroitin Sulfate Biosynthesis                                                                                                          20
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           50
## Chrebp Activates Metabolic Gene Expression                                                                                                 8
## Chromosome Maintenance                                                                                                                   140
## Chylomicron Assembly                                                                                                                      10
## Chylomicron Clearance                                                                                                                      5
## Chylomicron Remodeling                                                                                                                    10
## Cilium Assembly                                                                                                                          202
## Citric Acid Cycle Tca Cycle                                                                                                               22
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      39
## Class I Mhc Mediated Antigen Processing Presentation                                                                                     377
## Class I Peroxisomal Membrane Protein Import                                                                                               20
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        21
## Coenzyme A Biosynthesis                                                                                                                    8
## Cohesin Loading Onto Chromatin                                                                                                            10
## Collagen Biosynthesis And Modifying Enzymes                                                                                               67
## Collagen Chain Trimerization                                                                                                              44
## Common Pathway Of Fibrin Clot Formation                                                                                                   22
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 8
## Complement Cascade                                                                                                                       115
## Complex I Biogenesis                                                                                                                      57
## Condensation Of Prometaphase Chromosomes                                                                                                  11
## Condensation Of Prophase Chromosomes                                                                                                      74
## Conjugation Of Benzoate With Glycine                                                                                                       6
## Constitutive Signaling By Overexpressed Erbb2                                                                                             11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        33
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                            100
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           53
## Copi Mediated Anterograde Transport                                                                                                      102
## Copii Mediated Vesicle Transport                                                                                                          68
## Creatine Metabolism                                                                                                                       11
## Creation Of C4 And C2 Activators                                                                                                          71
## Creb3 Factors Activate Genes                                                                                                               9
## Cristae Formation                                                                                                                         31
## Crmps In Sema3a Signaling                                                                                                                 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                50
## Crosslinking Of Collagen Fibrils                                                                                                          18
## Cs Ds Degradation                                                                                                                         14
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   25
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          85
## Cyclin D Associated Events In G1                                                                                                          47
## Cyp2e1 Reactions                                                                                                                          11
## Cytochrome C Mediated Apoptotic Response                                                                                                  13
## Cytochrome P450 Arranged By Substrate Type                                                                                                66
## Cytoprotection By Hmox1                                                                                                                  124
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    13
## Cytosolic Sulfonation Of Small Molecules                                                                                                  24
## Cytosolic Trna Aminoacylation                                                                                                             24
## Dap12 Signaling                                                                                                                           29
## Darpp 32 Events                                                                                                                           24
## Dcc Mediated Attractive Signaling                                                                                                         14
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   81
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  42
## Deadenylation Dependent Mrna Decay                                                                                                        56
## Deadenylation Of Mrna                                                                                                                     25
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            62
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                8
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               20
## Defective Cftr Causes Cystic Fibrosis                                                                                                     61
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       8
## Defective Chst3 Causes Sedcjd                                                                                                              8
## Defective Chst6 Causes Mcdc1                                                                                                               8
## Defective Chsy1 Causes Tpbs                                                                                                                8
## Defective Csf2rb Causes Smdp5                                                                                                              8
## Defective Ext2 Causes Exostoses 2                                                                                                         14
## Defective F9 Activation                                                                                                                    6
## Defective Factor Ix Causes Hemophilia B                                                                                                    9
## Defective Factor Viii Causes Hemophilia A                                                                                                  7
## Defective Lfng Causes Scdo3                                                                                                                5
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                5
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  8
## Defects In Biotin Btn Metabolism                                                                                                           8
## Defects In Cobalamin B12 Metabolism                                                                                                       14
## Defects In Vitamin And Cofactor Metabolism                                                                                                22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  16
## Defensins                                                                                                                                 52
## Degradation Of Axin                                                                                                                       55
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    85
## Degradation Of Cysteine And Homocysteine                                                                                                  14
## Degradation Of Dvl                                                                                                                        57
## Degradation Of Gli1 By The Proteasome                                                                                                     60
## Depolymerisation Of The Nuclear Lamina                                                                                                    15
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          73
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               22
## Dermatan Sulfate Biosynthesis                                                                                                             11
## Detoxification Of Reactive Oxygen Species                                                                                                 37
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              7
## Digestion                                                                                                                                 23
## Digestion And Absorption                                                                                                                  28
## Digestion Of Dietary Carbohydrate                                                                                                         11
## Digestion Of Dietary Lipid                                                                                                                 7
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            31
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     41
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             18
## Diseases Associated With N Glycosylation Of Proteins                                                                                      17
## Diseases Associated With Surfactant Metabolism                                                                                            10
## Diseases Of Base Excision Repair                                                                                                           5
## Diseases Of Carbohydrate Metabolism                                                                                                       34
## Diseases Of Dna Repair                                                                                                                    12
## Diseases Of Mismatch Repair Mmr                                                                                                            5
## Diseases Of Mitotic Cell Cycle                                                                                                            38
## Disinhibition Of Snare Formation                                                                                                           5
## Disorders Of Transmembrane Transporters                                                                                                  176
## Displacement Of Dna Glycosylase By Apex1                                                                                                   9
## Dna Damage Bypass                                                                                                                         48
## Dna Damage Recognition In Gg Ner                                                                                                          38
## Dna Damage Reversal                                                                                                                        8
## Dna Damage Telomere Stress Induced Senescence                                                                                             80
## Dna Double Strand Break Repair                                                                                                           167
## Dna Double Strand Break Response                                                                                                          78
## Dna Repair                                                                                                                               332
## Dna Replication                                                                                                                          128
## Dna Replication Initiation                                                                                                                 8
## Dna Replication Pre Initiation                                                                                                            85
## Dna Strand Elongation                                                                                                                     32
## Dopamine Neurotransmitter Release Cycle                                                                                                   23
## Dopamine Receptors                                                                                                                         5
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   13
## Downregulation Of Erbb4 Signaling                                                                                                          9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             26
## Downstream Signal Transduction                                                                                                            29
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        81
## Downstream Signaling Of Activated Fgfr1                                                                                                   31
## Downstream Signaling Of Activated Fgfr2                                                                                                   30
## Downstream Signaling Of Activated Fgfr3                                                                                                   25
## Downstream Signaling Of Activated Fgfr4                                                                                                   27
## Dscam Interactions                                                                                                                        11
## Dual Incision In Gg Ner                                                                                                                   41
## Dual Incision In Tc Ner                                                                                                                   65
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                9
## E2f Mediated Regulation Of Dna Replication                                                                                                22
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         59
## Early Phase Of Hiv Life Cycle                                                                                                             14
## Effects Of Pip2 Hydrolysis                                                                                                                27
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            29
## Eicosanoid Ligand Binding Receptors                                                                                                       15
## Eicosanoids                                                                                                                               12
## Elastic Fibre Formation                                                                                                                   45
## Electric Transmission Across Gap Junctions                                                                                                 5
## Elevation Of Cytosolic Ca2 Levels                                                                                                         16
## Endogenous Sterols                                                                                                                        28
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    31
## Endosomal Vacuolar Pathway                                                                                                                11
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          29
## Enos Activation                                                                                                                           11
## Epha Mediated Growth Cone Collapse                                                                                                        29
## Ephb Mediated Forward Signaling                                                                                                           42
## Ephrin Signaling                                                                                                                          19
## Er Quality Control Compartment Erqc                                                                                                       21
## Er To Golgi Anterograde Transport                                                                                                        155
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               76
## Erk Mapk Targets                                                                                                                          22
## Erks Are Inactivated                                                                                                                      13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   12
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        7
## Erythropoietin Activates Ras                                                                                                              14
## Erythropoietin Activates Stat5                                                                                                             7
## Establishment Of Sister Chromatid Cohesion                                                                                                11
## Estrogen Biosynthesis                                                                                                                      6
## Estrogen Stimulated Signaling Through Prkcz                                                                                                6
## Ethanol Oxidation                                                                                                                         12
## Eukaryotic Translation Elongation                                                                                                         94
## Eukaryotic Translation Initiation                                                                                                        120
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           33
## Extension Of Telomeres                                                                                                                    51
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 5
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                    170
## Fanconi Anemia Pathway                                                                                                                    39
## Fasl Cd95l Signaling                                                                                                                       5
## Fatty Acid Metabolism                                                                                                                    177
## Fatty Acids                                                                                                                               15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                8
## Fatty Acyl Coa Biosynthesis                                                                                                               37
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         5
## Fceri Mediated Ca 2 Mobilization                                                                                                          86
## Fceri Mediated Nf Kb Activation                                                                                                          136
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                             143
## Fcgr Activation                                                                                                                           69
## Fertilization                                                                                                                             26
## Fgfr1 Ligand Binding And Activation                                                                                                       16
## Fgfr1 Mutant Receptor Activation                                                                                                          31
## Fgfr1b Ligand Binding And Activation                                                                                                       6
## Fgfr1c Ligand Binding And Activation                                                                                                      12
## Fgfr2 Alternative Splicing                                                                                                                27
## Fgfr2 Ligand Binding And Activation                                                                                                       20
## Fgfr2 Mutant Receptor Activation                                                                                                          33
## Fgfr2b Ligand Binding And Activation                                                                                                      10
## Fgfr2c Ligand Binding And Activation                                                                                                      13
## Fgfr3 Ligand Binding And Activation                                                                                                       13
## Fgfr3b Ligand Binding And Activation                                                                                                       7
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             5
## Flt3 Signaling                                                                                                                            38
## Flt3 Signaling By Cbl Mutants                                                                                                              7
## Flt3 Signaling In Disease                                                                                                                 28
## Flt3 Signaling Through Src Family Kinases                                                                                                  6
## Folding Of Actin By Cct Tric                                                                                                              10
## Formation Of Apoptosome                                                                                                                   11
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 18
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 39
## Formation Of Incision Complex In Gg Ner                                                                                                   43
## Formation Of Rna Pol Ii Elongation Complex                                                                                                58
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              17
## Formation Of Tc Ner Pre Incision Complex                                                                                                  53
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 92
## Formation Of The Cornified Envelope                                                                                                      129
## Formation Of The Early Elongation Complex                                                                                                 33
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    26
## Formation Of Xylulose 5 Phosphate                                                                                                          5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       8
## Foxo Mediated Transcription                                                                                                               66
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           17
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           16
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              30
## Free Fatty Acid Receptors                                                                                                                  5
## Free Fatty Acids Regulate Insulin Secretion                                                                                               11
## Frs Mediated Fgfr1 Signaling                                                                                                              23
## Frs Mediated Fgfr2 Signaling                                                                                                              25
## Frs Mediated Fgfr3 Signaling                                                                                                              20
## Frs Mediated Fgfr4 Signaling                                                                                                              22
## Fructose Catabolism                                                                                                                        5
## Fructose Metabolism                                                                                                                        7
## G Alpha 12 13 Signalling Events                                                                                                           80
## G Alpha S Signalling Events                                                                                                              144
## G Alpha Z Signalling Events                                                                                                               48
## G Beta Gamma Signalling Through Cdc42                                                                                                     20
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 25
## G Protein Activation                                                                                                                      24
## G Protein Beta Gamma Signalling                                                                                                           32
## G0 And Early G1                                                                                                                           27
## G1 S Dna Damage Checkpoints                                                                                                               68
## G1 S Specific Transcription                                                                                                               29
## G2 M Checkpoints                                                                                                                         168
## G2 M Dna Damage Checkpoint                                                                                                                95
## G2 M Dna Replication Checkpoint                                                                                                            5
## G2 Phase                                                                                                                                   5
## Gaba B Receptor Activation                                                                                                                43
## Gaba Receptor Activation                                                                                                                  60
## Gaba Synthesis Release Reuptake And Degradation                                                                                           19
## Galactose Catabolism                                                                                                                       5
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   25
## Gap Junction Assembly                                                                                                                     38
## Gap Junction Degradation                                                                                                                  12
## Gap Junction Trafficking And Regulation                                                                                                   51
## Gdp Fucose Biosynthesis                                                                                                                    6
## Gene Silencing By Rna                                                                                                                    140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                7
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  42
## Glucagon Signaling In Metabolic Regulation                                                                                                33
## Glucagon Type Ligand Receptors                                                                                                            33
## Glucocorticoid Biosynthesis                                                                                                               10
## Gluconeogenesis                                                                                                                           34
## Glucose Metabolism                                                                                                                        92
## Glucuronidation                                                                                                                           25
## Glutamate And Glutamine Metabolism                                                                                                        14
## Glutamate Neurotransmitter Release Cycle                                                                                                  24
## Glutathione Conjugation                                                                                                                   36
## Glutathione Synthesis And Recycling                                                                                                       12
## Glycerophospholipid Biosynthesis                                                                                                         128
## Glycerophospholipid Catabolism                                                                                                             7
## Glycogen Breakdown Glycogenolysis                                                                                                         15
## Glycogen Metabolism                                                                                                                       27
## Glycogen Storage Diseases                                                                                                                 16
## Glycogen Synthesis                                                                                                                        16
## Glycolysis                                                                                                                                72
## Glycosaminoglycan Metabolism                                                                                                             124
## Glycosphingolipid Metabolism                                                                                                              45
## Glyoxylate Metabolism And Glycine Degradation                                                                                             31
## Golgi Associated Vesicle Biogenesis                                                                                                       56
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       14
## Golgi To Er Retrograde Transport                                                                                                         134
## Gp1b Ix V Activation Signalling                                                                                                           12
## Gpvi Mediated Activation Cascade                                                                                                          35
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 15
## Grb7 Events In Erbb2 Signaling                                                                                                             5
## Growth Hormone Receptor Signaling                                                                                                         24
## Hats Acetylate Histones                                                                                                                  142
## Hcmv Late Events                                                                                                                         116
## Hdacs Deacetylate Histones                                                                                                                94
## Hdl Assembly                                                                                                                               8
## Hdl Clearance                                                                                                                              5
## Hdl Remodeling                                                                                                                            10
## Hdms Demethylate Histones                                                                                                                 50
## Hdr Through Homologous Recombination Hrr                                                                                                  67
## Hdr Through Mmej Alt Nhej                                                                                                                 10
## Hdr Through Single Strand Annealing Ssa                                                                                                   37
## Hedgehog Ligand Biogenesis                                                                                                                65
## Hedgehog Off State                                                                                                                       113
## Hedgehog On State                                                                                                                         86
## Heme Biosynthesis                                                                                                                         14
## Heme Degradation                                                                                                                          15
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     7
## Histidine Catabolism                                                                                                                       8
## Hiv Elongation Arrest And Recovery                                                                                                        33
## Hiv Infection                                                                                                                            231
## Hiv Life Cycle                                                                                                                           149
## Hiv Transcription Elongation                                                                                                              43
## Hiv Transcription Initiation                                                                                                              47
## Homologous Dna Pairing And Strand Exchange                                                                                                42
## Homology Directed Repair                                                                                                                 138
## Hormone Ligand Binding Receptors                                                                                                          12
## Host Interactions Of Hiv Factors                                                                                                         131
## Hs Gag Biosynthesis                                                                                                                       31
## Hs Gag Degradation                                                                                                                        22
## Hsf1 Activation                                                                                                                           31
## Hsf1 Dependent Transactivation                                                                                                            38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   57
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       8
## Hyaluronan Biosynthesis And Export                                                                                                         5
## Hyaluronan Metabolism                                                                                                                     17
## Hyaluronan Uptake And Degradation                                                                                                         12
## Hydrolysis Of Lpc                                                                                                                          9
## Ikba Variant Leads To Eda Id                                                                                                               7
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           17
## Inactivation Of Cdc42 And Rac1                                                                                                             8
## Inactivation Of Csf3 G Csf Signaling                                                                                                      25
## Incretin Synthesis Secretion And Inactivation                                                                                             23
## Infection With Mycobacterium Tuberculosis                                                                                                 27
## Influenza Infection                                                                                                                      157
## Inhibition Of Dna Recombination At Telomere                                                                                               68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               21
## Initial Triggering Of Complement                                                                                                          80
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             19
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              15
## Inositol Phosphate Metabolism                                                                                                             48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               22
## Insulin Processing                                                                                                                        27
## Insulin Receptor Recycling                                                                                                                26
## Insulin Receptor Signalling Cascade                                                                                                       54
## Integration Of Energy Metabolism                                                                                                         108
## Integration Of Provirus                                                                                                                    9
## Integrin Cell Surface Interactions                                                                                                        85
## Integrin Signaling                                                                                                                        27
## Interaction Between L1 And Ankyrins                                                                                                       31
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     11
## Interactions Of Rev With Host Cellular Proteins                                                                                           37
## Interactions Of Vpr With Host Cellular Proteins                                                                                           37
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        29
## Interferon Alpha Beta Signaling                                                                                                           73
## Interleukin 15 Signaling                                                                                                                  14
## Interleukin 2 Family Signaling                                                                                                            44
## Interleukin 2 Signaling                                                                                                                   12
## Interleukin 20 Family Signaling                                                                                                           26
## Interleukin 21 Signaling                                                                                                                  10
## Interleukin 23 Signaling                                                                                                                   9
## Interleukin 27 Signaling                                                                                                                  11
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          48
## Interleukin 35 Signalling                                                                                                                 12
## Interleukin 36 Pathway                                                                                                                     7
## Interleukin 37 Signaling                                                                                                                  21
## Interleukin 7 Signaling                                                                                                                   36
## Interleukin 9 Signaling                                                                                                                    9
## Interleukin Receptor Shc Signaling                                                                                                        27
## Intestinal Absorption                                                                                                                      5
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                           203
## Intra Golgi Traffic                                                                                                                       44
## Intraflagellar Transport                                                                                                                  54
## Intrinsic Pathway For Apoptosis                                                                                                           55
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23
## Inwardly Rectifying K Channels                                                                                                            35
## Ion Homeostasis                                                                                                                           54
## Ion Transport By P Type Atpases                                                                                                           55
## Ionotropic Activity Of Kainate Receptors                                                                                                  10
## Irak1 Recruits Ikk Complex                                                                                                                14
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 10
## Irak4 Deficiency Tlr2 4                                                                                                                   18
## Ire1alpha Activates Chaperones                                                                                                            50
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     5
## Iron Uptake And Transport                                                                                                                 58
## Irs Activation                                                                                                                             5
## Irs Mediated Signalling                                                                                                                   48
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         22
## Josephin Domain Dubs                                                                                                                      12
## Keratan Sulfate Biosynthesis                                                                                                              28
## Keratan Sulfate Degradation                                                                                                               13
## Keratan Sulfate Keratin Metabolism                                                                                                        34
## Keratinization                                                                                                                           217
## Ketone Body Metabolism                                                                                                                    10
## Kinesins                                                                                                                                  61
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    17
## Lagging Strand Synthesis                                                                                                                  20
## Laminin Interactions                                                                                                                      30
## Late Endosomal Microautophagy                                                                                                             34
## Lectin Pathway Of Complement Activation                                                                                                    8
## Leukotriene Receptors                                                                                                                      5
## Lgi Adam Interactions                                                                                                                     14
## Ligand Receptor Interactions                                                                                                               8
## Linoleic Acid La Metabolism                                                                                                                8
## Lipid Particle Organization                                                                                                                6
## Lipophagy                                                                                                                                  9
## Listeria Monocytogenes Entry Into Host Cells                                                                                              20
## Long Term Potentiation                                                                                                                    23
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                13
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     5
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        7
## Lysine Catabolism                                                                                                                         12
## Lysosome Vesicle Biogenesis                                                                                                               35
## Lysosphingolipid And Lpa Receptors                                                                                                        14
## M Phase                                                                                                                                  417
## Map2k And Mapk Activation                                                                                                                 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  16
## Mapk6 Mapk4 Signaling                                                                                                                     93
## Mastl Facilitates Mitotic Progression                                                                                                     10
## Maturation Of Nucleoprotein                                                                                                               10
## Maturation Of Protein 3a                                                                                                                   9
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     5
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    29
## Meiosis                                                                                                                                  119
## Meiotic Recombination                                                                                                                     87
## Meiotic Synapsis                                                                                                                          79
## Melanin Biosynthesis                                                                                                                       5
## Met Activates Pi3k Akt Signaling                                                                                                           6
## Met Activates Ptk2 Signaling                                                                                                              30
## Met Activates Ptpn11                                                                                                                       5
## Met Activates Rap1 And Rac1                                                                                                               11
## Met Activates Ras Signaling                                                                                                               11
## Met Interacts With Tns Proteins                                                                                                            5
## Met Promotes Cell Motility                                                                                                                41
## Met Receptor Activation                                                                                                                    6
## Met Receptor Recycling                                                                                                                    10
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       34
## Metabolism Of Amine Derived Hormones                                                                                                      18
## Metabolism Of Amino Acids And Derivatives                                                                                                374
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             18
## Metabolism Of Carbohydrates                                                                                                              293
## Metabolism Of Cofactors                                                                                                                   19
## Metabolism Of Fat Soluble Vitamins                                                                                                        48
## Metabolism Of Folate And Pterines                                                                                                         17
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           8
## Metabolism Of Lipids                                                                                                                     741
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 15
## Metabolism Of Nucleotides                                                                                                                 98
## Metabolism Of Polyamines                                                                                                                  59
## Metabolism Of Porphyrins                                                                                                                  27
## Metabolism Of Rna                                                                                                                        672
## Metabolism Of Steroid Hormones                                                                                                            35
## Metabolism Of Steroids                                                                                                                   151
## Metabolism Of Vitamins And Cofactors                                                                                                     189
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                       123
## Metal Ion Slc Transporters                                                                                                                26
## Metal Sequestration By Antimicrobial Proteins                                                                                              6
## Metalloprotease Dubs                                                                                                                      37
## Metallothioneins Bind Metals                                                                                                              11
## Methionine Salvage Pathway                                                                                                                 6
## Methylation                                                                                                                               14
## Microrna Mirna Biogenesis                                                                                                                 25
## Mineralocorticoid Biosynthesis                                                                                                             6
## Miro Gtpase Cycle                                                                                                                          8
## Miscellaneous Substrates                                                                                                                  12
## Miscellaneous Transport And Binding Events                                                                                                26
## Mismatch Repair                                                                                                                           15
## Mitochondrial Calcium Ion Transport                                                                                                       23
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         6
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              13
## Mitochondrial Protein Import                                                                                                              65
## Mitochondrial Translation                                                                                                                 96
## Mitochondrial Trna Aminoacylation                                                                                                         21
## Mitochondrial Uncoupling                                                                                                                   6
## Mitophagy                                                                                                                                 29
## Mitotic G1 Phase And G1 S Transition                                                                                                     149
## Mitotic G2 G2 M Phases                                                                                                                   200
## Mitotic Metaphase And Anaphase                                                                                                           236
## Mitotic Prometaphase                                                                                                                     203
## Mitotic Prophase                                                                                                                         143
## Mitotic Spindle Checkpoint                                                                                                               111
## Mitotic Telophase Cytokinesis                                                                                                             13
## Modulation By Mtb Of Host Immune System                                                                                                    7
## Molecules Associated With Elastic Fibres                                                                                                  38
## Molybdenum Cofactor Biosynthesis                                                                                                           6
## Mrna Capping                                                                                                                              29
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      16
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      15
## Mrna Editing                                                                                                                              10
## Mrna Editing C To U Conversion                                                                                                             8
## Mrna Splicing                                                                                                                            188
## Mrna Splicing Minor Pathway                                                                                                               52
## Mtor Signalling                                                                                                                           41
## Mtorc1 Mediated Signalling                                                                                                                24
## Mucopolysaccharidoses                                                                                                                     11
## Multifunctional Anion Exchangers                                                                                                           9
## Muscarinic Acetylcholine Receptors                                                                                                         5
## Muscle Contraction                                                                                                                       195
## Myoclonic Epilepsy Of Lafora                                                                                                               9
## Myogenesis                                                                                                                                29
## N Glycan Antennae Elongation                                                                                                              15
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    26
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               35
## Na Cl Dependent Neurotransmitter Transporters                                                                                             19
## Nade Modulates Death Signalling                                                                                                            6
## Ncam1 Interactions                                                                                                                        42
## Nectin Necl Trans Heterodimerization                                                                                                       7
## Neddylation                                                                                                                              234
## Nef And Signal Transduction                                                                                                                8
## Nef Mediated Cd4 Down Regulation                                                                                                           9
## Nef Mediated Cd8 Down Regulation                                                                                                           7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            21
## Negative Epigenetic Regulation Of Rrna Expression                                                                                        109
## Negative Feedback Regulation Of Mapk Pathway                                                                                               6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                10
## Negative Regulation Of Fgfr1 Signaling                                                                                                    33
## Negative Regulation Of Fgfr2 Signaling                                                                                                    34
## Negative Regulation Of Fgfr3 Signaling                                                                                                    29
## Negative Regulation Of Fgfr4 Signaling                                                                                                    31
## Negative Regulation Of Flt3                                                                                                               15
## Negative Regulation Of Mapk Pathway                                                                                                       43
## Negative Regulation Of Met Activity                                                                                                       21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       21
## Negative Regulation Of Notch4 Signaling                                                                                                   54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 5
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              34
## Nephrin Family Interactions                                                                                                               23
## Netrin 1 Signaling                                                                                                                        50
## Netrin Mediated Repulsion Signals                                                                                                          8
## Neurexins And Neuroligins                                                                                                                 56
## Neurofascin Interactions                                                                                                                   7
## Neurotoxicity Of Clostridium Toxins                                                                                                       10
## Neurotransmitter Clearance                                                                                                                10
## Neurotransmitter Release Cycle                                                                                                            51
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  12
## Nf Kb Is Activated And Signals Survival                                                                                                   13
## Ngf Independant Trka Activation                                                                                                            5
## Nicotinamide Salvaging                                                                                                                    19
## Nicotinate Metabolism                                                                                                                     31
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 22
## Non Integrin Membrane Ecm Interactions                                                                                                    59
## Noncanonical Activation Of Notch3                                                                                                          8
## Nonhomologous End Joining Nhej                                                                                                            69
## Nonsense Mediated Decay Nmd                                                                                                              116
## Norepinephrine Neurotransmitter Release Cycle                                                                                             18
## Nostrin Mediated Enos Trafficking                                                                                                          5
## Notch Hlh Transcription Pathway                                                                                                           28
## Notch1 Intracellular Domain Regulates Transcription                                                                                       48
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               22
## Notch3 Intracellular Domain Regulates Transcription                                                                                       25
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               11
## Notch4 Intracellular Domain Regulates Transcription                                                                                       20
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           37
## Nrage Signals Death Through Jnk                                                                                                           59
## Nrcam Interactions                                                                                                                         7
## Nrif Signals Cell Death From The Nucleus                                                                                                  16
## Ns1 Mediated Effects On Host Pathways                                                                                                     41
## Ntrk2 Activates Rac1                                                                                                                       5
## Nuclear Envelope Breakdown                                                                                                                53
## Nuclear Envelope Ne Reassembly                                                                                                            76
## Nuclear Import Of Rev Protein                                                                                                             34
## Nuclear Pore Complex Npc Disassembly                                                                                                      36
## Nuclear Receptor Transcription Pathway                                                                                                    53
## Nuclear Signaling By Erbb4                                                                                                                32
## Nucleobase Biosynthesis                                                                                                                   15
## Nucleobase Catabolism                                                                                                                     35
## Nucleotide Excision Repair                                                                                                               110
## Nucleotide Like Purinergic Receptors                                                                                                      16
## Nucleotide Salvage                                                                                                                        23
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         39
## Oas Antiviral Response                                                                                                                     9
## Olfactory Signaling Pathway                                                                                                              400
## Oncogene Induced Senescence                                                                                                               35
## Oncogenic Mapk Signaling                                                                                                                  82
## Opsins                                                                                                                                     9
## Orc1 Removal From Chromatin                                                                                                               71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    8
## Organic Anion Transport                                                                                                                    5
## Organic Anion Transporters                                                                                                                10
## Organic Cation Anion Zwitterion Transport                                                                                                 15
## Organic Cation Transport                                                                                                                  10
## Other Interleukin Signaling                                                                                                               24
## Other Semaphorin Interactions                                                                                                             19
## Ovarian Tumor Domain Proteases                                                                                                            38
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           15
## P2y Receptors                                                                                                                             12
## P38mapk Events                                                                                                                            13
## P75 Ntr Receptor Mediated Signalling                                                                                                      97
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             6
## P75ntr Recruits Signalling Complexes                                                                                                      13
## P75ntr Regulates Axonogenesis                                                                                                             10
## P75ntr Signals Via Nf Kb                                                                                                                  16
## Parasite Infection                                                                                                                       116
## Passive Transport By Aquaporins                                                                                                           13
## Pcna Dependent Long Patch Base Excision Repair                                                                                            21
## Pecam1 Interactions                                                                                                                       12
## Pentose Phosphate Pathway                                                                                                                 15
## Peptide Hormone Biosynthesis                                                                                                              14
## Peptide Hormone Metabolism                                                                                                                90
## Peroxisomal Lipid Metabolism                                                                                                              29
## Peroxisomal Protein Import                                                                                                                63
## Pexophagy                                                                                                                                 11
## Phase 0 Rapid Depolarisation                                                                                                              32
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   7
## Phase 2 Plateau Phase                                                                                                                     15
## Phase 3 Rapid Repolarisation                                                                                                               8
## Phase 4 Resting Membrane Potential                                                                                                        19
## Phase I Functionalization Of Compounds                                                                                                   106
## Phase Ii Conjugation Of Compounds                                                                                                        109
## Phenylalanine And Tyrosine Metabolism                                                                                                     11
## Phenylalanine Metabolism                                                                                                                   6
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              8
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 7
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    18
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    15
## Phospholipid Metabolism                                                                                                                  211
## Phosphorylation Of Emi1                                                                                                                    6
## Phosphorylation Of The Apc C                                                                                                              20
## Physiological Factors                                                                                                                     12
## Pi 3k Cascade Fgfr1                                                                                                                       21
## Pi 3k Cascade Fgfr2                                                                                                                       23
## Pi 3k Cascade Fgfr3                                                                                                                       18
## Pi 3k Cascade Fgfr4                                                                                                                       20
## Pi Metabolism                                                                                                                             84
## Pi3k Akt Activation                                                                                                                        9
## Pi3k Events In Erbb4 Signaling                                                                                                            10
## Pi5p Regulates Tp53 Acetylation                                                                                                            9
## Pink1 Prkn Mediated Mitophagy                                                                                                             22
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     29
## Pka Activation In Glucagon Signalling                                                                                                     17
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      5
## Pkmts Methylate Histone Lysines                                                                                                           71
## Plasma Lipoprotein Assembly                                                                                                               19
## Plasma Lipoprotein Remodeling                                                                                                             32
## Platelet Adhesion To Exposed Collagen                                                                                                     15
## Platelet Aggregation Plug Formation                                                                                                       39
## Platelet Calcium Homeostasis                                                                                                              28
## Platelet Homeostasis                                                                                                                      86
## Platelet Sensitization By Ldl                                                                                                             17
## Polb Dependent Long Patch Base Excision Repair                                                                                             8
## Polo Like Kinase Mediated Events                                                                                                          16
## Polymerase Switching                                                                                                                      14
## Polymerase Switching On The C Strand Of The Telomere                                                                                      26
## Positive Epigenetic Regulation Of Rrna Expression                                                                                        106
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        94
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          27
## Potassium Channels                                                                                                                       103
## Potential Therapeutics For Sars                                                                                                           81
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            13
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   7
## Pre Notch Expression And Processing                                                                                                      120
## Pre Notch Processing In Golgi                                                                                                             18
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          6
## Pregnenolone Biosynthesis                                                                                                                 12
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    11
## Presynaptic Function Of Kainate Receptors                                                                                                 21
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  9
## Processing And Activation Of Sumo                                                                                                         10
## Processing Of Capped Intron Containing Pre Mrna                                                                                          242
## Processing Of Capped Intronless Pre Mrna                                                                                                  28
## Processing Of Dna Double Strand Break Ends                                                                                                98
## Processing Of Intronless Pre Mrnas                                                                                                        19
## Processing Of Smdt1                                                                                                                       16
## Processive Synthesis On The C Strand Of The Telomere                                                                                      19
## Processive Synthesis On The Lagging Strand                                                                                                15
## Prolactin Receptor Signaling                                                                                                              15
## Prolonged Erk Activation Events                                                                                                           14
## Propionyl Coa Catabolism                                                                                                                   5
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     19
## Prostanoid Ligand Receptors                                                                                                                9
## Protein Folding                                                                                                                           98
## Protein Localization                                                                                                                     164
## Protein Methylation                                                                                                                       17
## Protein Protein Interactions At Synapses                                                                                                  87
## Protein Repair                                                                                                                             6
## Protein Ubiquitination                                                                                                                    79
## Proton Coupled Monocarboxylate Transport                                                                                                   6
## Pten Regulation                                                                                                                          139
## Ptk6 Expression                                                                                                                            5
## Ptk6 Regulates Cell Cycle                                                                                                                  6
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      9
## Purine Catabolism                                                                                                                         17
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          12
## Purine Salvage                                                                                                                            13
## Pyrimidine Catabolism                                                                                                                     12
## Pyrimidine Salvage                                                                                                                        11
## Pyruvate Metabolism                                                                                                                       31
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             55
## Ra Biosynthesis Pathway                                                                                                                   22
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     90
## Rab Geranylgeranylation                                                                                                                   65
## Rab Regulation Of Trafficking                                                                                                            122
## Rac1 Gtpase Cycle                                                                                                                        184
## Rac2 Gtpase Cycle                                                                                                                         88
## Rac3 Gtpase Cycle                                                                                                                         94
## Raf Activation                                                                                                                            34
## Rap1 Signalling                                                                                                                           16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      20
## Ras Processing                                                                                                                            24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  7
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              10
## Receptor Mediated Mitophagy                                                                                                               11
## Receptor Type Tyrosine Protein Phosphatases                                                                                               20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    56
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          30
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  81
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                95
## Recycling Of Bile Acids And Salts                                                                                                         16
## Recycling Of Eif2 Gdp                                                                                                                      8
## Recycling Pathway Of L1                                                                                                                   49
## Reduction Of Cytosolic Ca Levels                                                                                                          12
## Reelin Signalling Pathway                                                                                                                  5
## Regulated Proteolysis Of P75ntr                                                                                                           11
## Regulation By C Flip                                                                                                                      11
## Regulation Of Bach1 Activity                                                                                                              11
## Regulation Of Beta Cell Development                                                                                                       42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         8
## Regulation Of Expression Of Slits And Robos                                                                                              172
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                10
## Regulation Of Fzd By Ubiquitination                                                                                                       21
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 11
## Regulation Of Gene Expression In Beta Cells                                                                                               21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          12
## Regulation Of Hmox1 Expression And Activity                                                                                               65
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           82
## Regulation Of Ifna Signaling                                                                                                              26
## Regulation Of Ifng Signaling                                                                                                              14
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    15
## Regulation Of Insulin Secretion                                                                                                           78
## Regulation Of Kit Signaling                                                                                                               16
## Regulation Of Lipid Metabolism By Pparalpha                                                                                              120
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       87
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            87
## Regulation Of Pten Gene Transcription                                                                                                     61
## Regulation Of Pten Localization                                                                                                            9
## Regulation Of Pten Mrna Translation                                                                                                        9
## Regulation Of Pten Stability And Activity                                                                                                 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          16
## Regulation Of Ras By Gaps                                                                                                                 68
## Regulation Of Runx1 Expression And Activity                                                                                               17
## Regulation Of Runx2 Expression And Activity                                                                                               73
## Regulation Of Runx3 Expression And Activity                                                                                               55
## Regulation Of Signaling By Cbl                                                                                                            22
## Regulation Of Signaling By Nodal                                                                                                          11
## Regulation Of Tlr By Endogenous Ligand                                                                                                    21
## Regulation Of Tp53 Activity                                                                                                              160
## Regulation Of Tp53 Activity Through Acetylation                                                                                           30
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           14
## Regulation Of Tp53 Activity Through Methylation                                                                                           19
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       92
## Regulation Of Tp53 Expression And Degradation                                                                                             37
## Relaxin Receptors                                                                                                                          8
## Release Of Apoptotic Factors From The Mitochondria                                                                                         7
## Release Of Hh Np From The Secreting Cell                                                                                                   8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     10
## Repression Of Wnt Target Genes                                                                                                            14
## Reproduction                                                                                                                             145
## Resolution Of Abasic Sites Ap Sites                                                                                                       38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              25
## Resolution Of D Loop Structures                                                                                                           34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         26
## Resolution Of Sister Chromatid Cohesion                                                                                                  126
## Respiratory Electron Transport                                                                                                           103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                         127
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                        102
## Response Of Mtb To Phagocytosis                                                                                                           23
## Response To Metal Ions                                                                                                                    14
## Ret Signaling                                                                                                                             40
## Retinoid Cycle Disease Events                                                                                                             13
## Retrograde Neurotrophin Signalling                                                                                                        14
## Retrograde Transport At The Trans Golgi Network                                                                                           49
## Reversible Hydration Of Carbon Dioxide                                                                                                    12
## Rho Gtpase Cycle                                                                                                                         444
## Rho Gtpase Effectors                                                                                                                     324
## Rho Gtpases Activate Cit                                                                                                                  19
## Rho Gtpases Activate Formins                                                                                                             140
## Rho Gtpases Activate Iqgaps                                                                                                               32
## Rho Gtpases Activate Ktn1                                                                                                                 11
## Rho Gtpases Activate Nadph Oxidases                                                                                                       24
## Rho Gtpases Activate Paks                                                                                                                 21
## Rho Gtpases Activate Pkns                                                                                                                 94
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               9
## Rho Gtpases Activate Rocks                                                                                                                19
## Rho Gtpases Activate Wasps And Waves                                                                                                      36
## Rhoa Gtpase Cycle                                                                                                                        149
## Rhob Gtpase Cycle                                                                                                                         70
## Rhobtb Gtpase Cycle                                                                                                                       35
## Rhobtb1 Gtpase Cycle                                                                                                                      23
## Rhobtb2 Gtpase Cycle                                                                                                                      23
## Rhobtb3 Atpase Cycle                                                                                                                      10
## Rhoc Gtpase Cycle                                                                                                                         74
## Rhod Gtpase Cycle                                                                                                                         51
## Rhof Gtpase Cycle                                                                                                                         42
## Rhog Gtpase Cycle                                                                                                                         74
## Rhoh Gtpase Cycle                                                                                                                         37
## Rhoj Gtpase Cycle                                                                                                                         55
## Rhoq Gtpase Cycle                                                                                                                         59
## Rhot1 Gtpase Cycle                                                                                                                         5
## Rhou Gtpase Cycle                                                                                                                         34
## Rhov Gtpase Cycle                                                                                                                         33
## Rna Polymerase I Promoter Escape                                                                                                          91
## Rna Polymerase I Transcription                                                                                                           111
## Rna Polymerase I Transcription Initiation                                                                                                 47
## Rna Polymerase I Transcription Termination                                                                                                31
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 81
## Rna Polymerase Ii Transcription Termination                                                                                               66
## Rna Polymerase Iii Chain Elongation                                                                                                       18
## Rna Polymerase Iii Transcription                                                                                                          41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          28
## Rna Polymerase Iii Transcription Termination                                                                                              23
## Rnd1 Gtpase Cycle                                                                                                                         42
## Rnd2 Gtpase Cycle                                                                                                                         43
## Rnd3 Gtpase Cycle                                                                                                                         42
## Robo Receptors Bind Akap5                                                                                                                  9
## Role Of Abl In Robo Slit Signaling                                                                                                         8
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             71
## Role Of Phospholipids In Phagocytosis                                                                                                     82
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           10
## Rora Activates Gene Expression                                                                                                            18
## Ros And Rns Production In Phagocytes                                                                                                      36
## Rrna Modification In The Mitochondrion                                                                                                     8
## Rrna Modification In The Nucleus And Cytosol                                                                                              60
## Rrna Processing                                                                                                                          205
## Rrna Processing In The Mitochondrion                                                                                                      12
## Rsk Activation                                                                                                                             7
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 10
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        37
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   6
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                               130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        8
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        7
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           6
## Runx2 Regulates Bone Development                                                                                                          31
## Runx2 Regulates Chondrocyte Maturation                                                                                                     5
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           8
## Runx2 Regulates Osteoblast Differentiation                                                                                                24
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  5
## Runx3 Regulates Cdkn1a Transcription                                                                                                       7
## Runx3 Regulates Immune Response And Cell Migration                                                                                         6
## Runx3 Regulates Notch Signaling                                                                                                           14
## Runx3 Regulates P14 Arf                                                                                                                   10
## Runx3 Regulates Wnt Signaling                                                                                                              8
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                8
## S Phase                                                                                                                                  162
## Sars Cov 1 Genome Replication And Transcription                                                                                            6
## Sars Cov 1 Infection                                                                                                                      50
## Sars Cov 2 Infection                                                                                                                      67
## Sars Cov Infections                                                                                                                      146
## Scavenging By Class A Receptors                                                                                                           19
## Scavenging By Class B Receptors                                                                                                            6
## Scavenging By Class F Receptors                                                                                                            6
## Scavenging Of Heme From Plasma                                                                                                            69
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           32
## Selective Autophagy                                                                                                                       82
## Selenoamino Acid Metabolism                                                                                                              118
## Sema3a Pak Dependent Axon Repulsion                                                                                                       16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         14
## Sema4d In Semaphorin Signaling                                                                                                            24
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                8
## Semaphorin Interactions                                                                                                                   64
## Sensing Of Dna Double Strand Breaks                                                                                                        6
## Sensory Perception                                                                                                                       575
## Sensory Processing Of Sound                                                                                                               77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            55
## Separation Of Sister Chromatids                                                                                                          191
## Serine Biosynthesis                                                                                                                        9
## Serotonin And Melatonin Biosynthesis                                                                                                       5
## Serotonin Neurotransmitter Release Cycle                                                                                                  18
## Serotonin Receptors                                                                                                                       12
## Shc Mediated Cascade Fgfr1                                                                                                                21
## Shc Mediated Cascade Fgfr3                                                                                                                18
## Shc Mediated Cascade Fgfr4                                                                                                                20
## Shc Related Events Triggered By Igf1r                                                                                                      9
## Shc1 Events In Erbb4 Signaling                                                                                                            14
## Signal Amplification                                                                                                                      33
## Signal Attenuation                                                                                                                        10
## Signal Regulatory Protein Family Interactions                                                                                             16
## Signaling By Activin                                                                                                                      13
## Signaling By Bmp                                                                                                                          28
## Signaling By Braf And Raf Fusions                                                                                                         65
## Signaling By Csf3 G Csf                                                                                                                   30
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  15
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               18
## Signaling By Erythropoietin                                                                                                               25
## Signaling By Fgfr                                                                                                                         87
## Signaling By Fgfr In Disease                                                                                                              63
## Signaling By Fgfr1                                                                                                                        50
## Signaling By Fgfr1 In Disease                                                                                                             38
## Signaling By Fgfr2                                                                                                                        73
## Signaling By Fgfr2 Iiia Tm                                                                                                                19
## Signaling By Fgfr2 In Disease                                                                                                             43
## Signaling By Fgfr3                                                                                                                        40
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      10
## Signaling By Fgfr4                                                                                                                        41
## Signaling By Fgfr4 In Disease                                                                                                             11
## Signaling By Flt3 Fusion Proteins                                                                                                         19
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     16
## Signaling By Hedgehog                                                                                                                    150
## Signaling By Hippo                                                                                                                        20
## Signaling By Insulin Receptor                                                                                                             78
## Signaling By Kit In Disease                                                                                                               20
## Signaling By Leptin                                                                                                                       11
## Signaling By Lrp5 Mutants                                                                                                                  6
## Signaling By Mapk Mutants                                                                                                                  7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 5
## Signaling By Met                                                                                                                          79
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        45
## Signaling By Mras Complex Mutants                                                                                                          8
## Signaling By Mst1                                                                                                                          5
## Signaling By Nodal                                                                                                                        20
## Signaling By Notch1                                                                                                                       74
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           15
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         58
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          7
## Signaling By Notch4                                                                                                                       82
## Signaling By Ntrk2 Trkb                                                                                                                   25
## Signaling By Ntrk3 Trkc                                                                                                                   17
## Signaling By Pdgf                                                                                                                         58
## Signaling By Pdgfr In Disease                                                                                                             20
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 12
## Signaling By Retinoic Acid                                                                                                                43
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                        717
## Signaling By Rnf43 Mutants                                                                                                                 8
## Signaling By Robo Receptors                                                                                                              218
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           8
## Signaling By The B Cell Receptor Bcr                                                                                                     166
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           54
## Signaling By Vegf                                                                                                                        106
## Signaling By Wnt In Cancer                                                                                                                34
## Signalling To Erks                                                                                                                        34
## Signalling To P38 Via Rit And Rin                                                                                                          5
## Signalling To Ras                                                                                                                         20
## Sirt1 Negatively Regulates Rrna Expression                                                                                                68
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      11
## Slc Mediated Transmembrane Transport                                                                                                     250
## Slc Transporter Disorders                                                                                                                 99
## Smac Xiap Regulated Apoptotic Response                                                                                                     8
## Small Interfering Rna Sirna Biogenesis                                                                                                     9
## Smooth Muscle Contraction                                                                                                                 38
## Snrnp Assembly                                                                                                                            54
## Sodium Calcium Exchangers                                                                                                                 11
## Sodium Coupled Phosphate Cotransporters                                                                                                    5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                5
## Sodium Proton Exchangers                                                                                                                   9
## Sos Mediated Signalling                                                                                                                    7
## Sperm Motility And Taxes                                                                                                                   9
## Sphingolipid De Novo Biosynthesis                                                                                                         45
## Sphingolipid Metabolism                                                                                                                   90
## Spry Regulation Of Fgf Signaling                                                                                                          16
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                              113
## Stabilization Of P53                                                                                                                      57
## Stat5 Activation                                                                                                                           7
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           10
## Striated Muscle Contraction                                                                                                               36
## Sulfide Oxidation To Sulfate                                                                                                               6
## Sulfur Amino Acid Metabolism                                                                                                              28
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         5
## Sumo Is Proteolytically Processed                                                                                                          6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               7
## Sumoylation Of Chromatin Organization Proteins                                                                                            71
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    77
## Sumoylation Of Dna Replication Proteins                                                                                                   46
## Sumoylation Of Immune Response Proteins                                                                                                   11
## Sumoylation Of Intracellular Receptors                                                                                                    30
## Sumoylation Of Rna Binding Proteins                                                                                                       47
## Sumoylation Of Sumoylation Proteins                                                                                                       35
## Sumoylation Of Transcription Factors                                                                                                      20
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  39
## Suppression Of Apoptosis                                                                                                                   7
## Suppression Of Phagosomal Maturation                                                                                                      13
## Surfactant Metabolism                                                                                                                     30
## Switching Of Origins To A Post Replicative State                                                                                          91
## Synaptic Adhesion Like Molecules                                                                                                          21
## Syndecan Interactions                                                                                                                     27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          7
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          6
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      9
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  30
## Synthesis Of Bile Acids And Bile Salts                                                                                                    34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      24
## Synthesis Of Diphthamide Eef2                                                                                                              8
## Synthesis Of Dolichyl Phosphate                                                                                                            6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              8
## Synthesis Of Gdp Mannose                                                                                                                   5
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             18
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                14
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   26
## Synthesis Of Ketone Bodies                                                                                                                 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                21
## Synthesis Of Lipoxins Lx                                                                                                                   6
## Synthesis Of Pa                                                                                                                           39
## Synthesis Of Pc                                                                                                                           28
## Synthesis Of Pe                                                                                                                           13
## Synthesis Of Pg                                                                                                                            8
## Synthesis Of Pi                                                                                                                            5
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          16
## Synthesis Of Pips At The Er Membrane                                                                                                       5
## Synthesis Of Pips At The Golgi Membrane                                                                                                   18
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           11
## Synthesis Of Pips At The Plasma Membrane                                                                                                  53
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        15
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                10
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      8
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              24
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 6
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            19
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     20
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  13
## Tachykinin Receptors Bind Tachykinins                                                                                                      5
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     32
## Tandem Pore Domain Potassium Channels                                                                                                     12
## Tbc Rabgaps                                                                                                                               44
## Telomere C Strand Lagging Strand Synthesis                                                                                                34
## Telomere C Strand Synthesis Initiation                                                                                                    13
## Telomere Extension By Telomerase                                                                                                          23
## Telomere Maintenance                                                                                                                     113
## Terminal Pathway Of Complement                                                                                                             8
## Termination Of Translesion Dna Synthesis                                                                                                  32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        10
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            5
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               5
## Tgf Beta Receptor Signaling Activates Smads                                                                                               32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   16
## The Activation Of Arylsulfatases                                                                                                          13
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                             178
## The Fatty Acid Cycling Model                                                                                                               5
## The Nlrp3 Inflammasome                                                                                                                    16
## The Phototransduction Cascade                                                                                                             34
## The Retinoid Cycle In Cones Daylight Vision                                                                                                7
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 79
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             28
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           32
## Thromboxane Signalling Through Tp Receptor                                                                                                24
## Thyroxine Biosynthesis                                                                                                                    10
## Tie2 Signaling                                                                                                                            18
## Tight Junction Interactions                                                                                                               30
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      13
## Tnfr1 Mediated Ceramide Production                                                                                                         6
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    5
## Tp53 Regulates Metabolic Genes                                                                                                            87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          21
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           12
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          49
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          44
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               12
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    14
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    18
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      14
## Traf3 Dependent Irf Activation Pathway                                                                                                    14
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              16
## Traf6 Mediated Irf7 Activation                                                                                                            29
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   13
## Traf6 Mediated Nf Kb Activation                                                                                                           24
## Trafficking Of Ampa Receptors                                                                                                             31
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            17
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        5
## Trail Signaling                                                                                                                            8
## Trans Golgi Network Vesicle Budding                                                                                                       72
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   78
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      19
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      16
## Transcription Of The Hiv Genome                                                                                                           70
## Transcriptional Regulation By E2f6                                                                                                        34
## Transcriptional Regulation By Runx1                                                                                                      239
## Transcriptional Regulation By Runx2                                                                                                      120
## Transcriptional Regulation By Runx3                                                                                                       96
## Transcriptional Regulation By Small Rnas                                                                                                 107
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      31
## Transcriptional Regulation Of Testis Differentiation                                                                                      13
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             84
## Transferrin Endocytosis And Recycling                                                                                                     31
## Translation                                                                                                                              295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            13
## Translation Of Sars Cov 1 Structural Proteins                                                                                             28
## Translation Of Sars Cov 2 Structural Proteins                                                                                             44
## Translesion Synthesis By Polh                                                                                                             19
## Translesion Synthesis By Polk                                                                                                             17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      72
## Transport And Synthesis Of Paps                                                                                                            6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  86
## Transport Of Connexons To The Plasma Membrane                                                                                             21
## Transport Of Fatty Acids                                                                                                                   8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                      106
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             43
## Transport Of Mature Transcript To Cytoplasm                                                                                               84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  12
## Transport Of Nucleotide Sugars                                                                                                             9
## Transport Of Organic Anions                                                                                                               12
## Transport Of The Slbp Dependant Mature Mrna                                                                                               36
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   44
## Transport To The Golgi And Subsequent Modification                                                                                       186
## Trif Mediated Programmed Cell Death                                                                                                        9
## Triglyceride Biosynthesis                                                                                                                 14
## Triglyceride Catabolism                                                                                                                   24
## Triglyceride Metabolism                                                                                                                   38
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     17
## Trna Aminoacylation                                                                                                                       42
## Trna Modification In The Mitochondrion                                                                                                     9
## Trna Modification In The Nucleus And Cytosol                                                                                              43
## Trna Processing                                                                                                                          111
## Trna Processing In The Mitochondrion                                                                                                       7
## Trna Processing In The Nucleus                                                                                                            59
## Trp Channels                                                                                                                              28
## Tryptophan Catabolism                                                                                                                     14
## Type I Hemidesmosome Assembly                                                                                                             11
## Tyrosine Catabolism                                                                                                                        5
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        7
## Ubiquinol Biosynthesis                                                                                                                     8
## Uch Proteinases                                                                                                                          102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             21
## Unwinding Of Dna                                                                                                                          12
## Uptake And Actions Of Bacterial Toxins                                                                                                    29
## Uptake And Function Of Anthrax Toxins                                                                                                     11
## Uptake And Function Of Diphtheria Toxin                                                                                                    6
## Urea Cycle                                                                                                                                10
## Vasopressin Like Receptors                                                                                                                 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              43
## Vegf Ligand Receptor Interactions                                                                                                          8
## Vegfr2 Mediated Cell Proliferation                                                                                                        19
## Vegfr2 Mediated Vascular Permeability                                                                                                     27
## Viral Messenger Rna Synthesis                                                                                                             44
## Visual Phototransduction                                                                                                                 100
## Vitamin B1 Thiamin Metabolism                                                                                                              5
## Vitamin B2 Riboflavin Metabolism                                                                                                           7
## Vitamin B5 Pantothenate Metabolism                                                                                                        17
## Vitamin C Ascorbate Metabolism                                                                                                             8
## Vitamin D Calciferol Metabolism                                                                                                           11
## Vitamins                                                                                                                                   6
## Vldl Assembly                                                                                                                              5
## Vldl Clearance                                                                                                                             6
## Voltage Gated Potassium Channels                                                                                                          43
## Vxpx Cargo Targeting To Cilium                                                                                                            21
## Wax And Plasmalogen Biosynthesis                                                                                                           7
## Wnt Mediated Activation Of Dvl                                                                                                             8
## Xenobiotics                                                                                                                               25
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             15
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   7
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           10
## Zinc Transporters                                                                                                                         17
##                                                                                                                                      overlap
## Cytokine Signaling In Immune System                                                                                                       18
## Interleukin 10 Signaling                                                                                                                   8
## Signaling By Interleukins                                                                                                                 12
## Chemokine Receptors Bind Chemokines                                                                                                        6
## Interleukin 4 And Interleukin 13 Signaling                                                                                                 7
## Innate Immune System                                                                                                                      13
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          5
## G Alpha I Signalling Events                                                                                                                7
## Peptide Ligand Binding Receptors                                                                                                           6
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               3
## Signaling By Gpcr                                                                                                                          9
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     3
## Extra Nuclear Estrogen Signaling                                                                                                           4
## Tnfs Bind Their Physiological Receptors                                                                                                    3
## Gpcr Ligand Binding                                                                                                                        7
## Leishmania Infection                                                                                                                       6
## Class A 1 Rhodopsin Like Receptors                                                                                                         6
## Cd163 Mediating An Anti Inflammatory Response                                                                                              2
## Interleukin 1 Processing                                                                                                                   2
## Regulated Necrosis                                                                                                                         3
## Toll Like Receptor Cascades                                                                                                                4
## Costimulation By The Cd28 Family                                                                                                           3
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               2
## Esr Mediated Signaling                                                                                                                     4
## Myd88 Independent Tlr4 Cascade                                                                                                             3
## Pi3k Akt Signaling In Cancer                                                                                                               3
## Purinergic Signaling In Leishmaniasis Infection                                                                                            2
## Pyroptosis                                                                                                                                 2
## Negative Regulation Of The Pi3k Akt Network                                                                                                3
## Pd 1 Signaling                                                                                                                             2
## Senescence Associated Secretory Phenotype Sasp                                                                                             3
## Post Translational Protein Modification                                                                                                    9
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        2
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    3
## Infectious Disease                                                                                                                         7
## Interleukin 1 Family Signaling                                                                                                             3
## Ngf Stimulated Transcription                                                                                                               2
## Signaling By Nuclear Receptors                                                                                                             4
## Intracellular Signaling By Second Messengers                                                                                               4
## Adaptive Immune System                                                                                                                     6
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   2
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   3
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  2
## Cellular Senescence                                                                                                                        3
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               2
## Programmed Cell Death                                                                                                                      3
## Circadian Clock                                                                                                                            2
## Interleukin 17 Signaling                                                                                                                   2
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         3
## Mecp2 Regulates Transcription Factors                                                                                                      1
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          2
## Clec7a Inflammasome Pathway                                                                                                                1
## Fibronectin Matrix Formation                                                                                                               1
## Ptk6 Promotes Hif1a Stabilization                                                                                                          1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1
## Creb Phosphorylation                                                                                                                       1
## Neutrophil Degranulation                                                                                                                   4
## Fcgr3a Mediated Il10 Synthesis                                                                                                             2
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          2
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1
## Interleukin 18 Signaling                                                                                                                   1
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1
## Signaling By Receptor Tyrosine Kinases                                                                                                     4
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        2
## Egfr Interacts With Phospholipase C Gamma                                                                                                  1
## Egfr Transactivation By Gastrin                                                                                                            1
## Mapk1 Erk2 Activation                                                                                                                      1
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       2
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1
## Mapk3 Erk1 Activation                                                                                                                      1
## Extracellular Matrix Organization                                                                                                          3
## Interleukin 6 Signaling                                                                                                                    1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1
## Cd28 Dependent Vav1 Pathway                                                                                                                1
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1
## Killing Mechanisms                                                                                                                         1
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1
## Vldlr Internalisation And Degradation                                                                                                      1
## Dissolution Of Fibrin Clot                                                                                                                 1
## Erbb2 Activates Ptk6 Signaling                                                                                                             1
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      1
## Trafficking And Processing Of Endosomal Tlr                                                                                                1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    2
## Shc1 Events In Egfr Signaling                                                                                                              1
## Signaling By Ntrks                                                                                                                         2
## Constitutive Signaling By Egfrviii                                                                                                         1
## Erbb2 Regulates Cell Motility                                                                                                              1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            1
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1
## Hcmv Early Events                                                                                                                          2
## C Type Lectin Receptors Clrs                                                                                                               2
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 1
## Grb2 Events In Erbb2 Signaling                                                                                                             1
## Pi3k Events In Erbb2 Signaling                                                                                                             1
## Signaling By Erbb2 Ecd Mutants                                                                                                             1
## Sting Mediated Induction Of Host Immune Responses                                                                                          1
## Sumoylation Of Dna Methylation Proteins                                                                                                    1
## Clathrin Mediated Endocytosis                                                                                                              2
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              1
## Gab1 Signalosome                                                                                                                           1
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           1
## Ldl Clearance                                                                                                                              1
## Pka Mediated Phosphorylation Of Creb                                                                                                       1
## Hcmv Infection                                                                                                                             2
## Ctla4 Inhibitory Signaling                                                                                                                 1
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           3
## Inflammasomes                                                                                                                              1
## Signal Transduction By L1                                                                                                                  1
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 1
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1
## Shc1 Events In Erbb2 Signaling                                                                                                             1
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   1
## Raf Independent Mapk1 3 Activation                                                                                                         1
## Termination Of O Glycan Biosynthesis                                                                                                       1
## Interleukin 6 Family Signaling                                                                                                             1
## Cellular Responses To External Stimuli                                                                                                     4
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                1
## Signaling By Egfr In Cancer                                                                                                                1
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1
## Dectin 2 Family                                                                                                                            1
## Signaling By Erbb2 In Cancer                                                                                                               1
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1
## Sumoylation                                                                                                                                2
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           1
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1
## Cell Surface Interactions At The Vascular Wall                                                                                             2
## Downregulation Of Erbb2 Signaling                                                                                                          1
## Ripk1 Mediated Regulated Necrosis                                                                                                          1
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   1
## Diseases Of Immune System                                                                                                                  1
## Egfr Downregulation                                                                                                                        1
## Perk Regulates Gene Expression                                                                                                             1
## Regulation Of Mecp2 Expression And Activity                                                                                                1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     1
## Activation Of Matrix Metalloproteinases                                                                                                    1
## Cd28 Co Stimulation                                                                                                                        1
## Plasma Lipoprotein Clearance                                                                                                               1
## Sialic Acid Metabolism                                                                                                                     1
## Signaling By Notch2                                                                                                                        1
## G Alpha Q Signalling Events                                                                                                                2
## Regulation Of Tnfr1 Signaling                                                                                                              1
## Nod1 2 Signaling Pathway                                                                                                                   1
## Ub Specific Processing Proteases                                                                                                           2
## Ca Dependent Events                                                                                                                        1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         1
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1
## Generation Of Second Messenger Molecules                                                                                                   1
## Dag And Ip3 Signaling                                                                                                                      1
## Transcriptional Regulation By Ventx                                                                                                        1
## Signaling By Scf Kit                                                                                                                       1
## Sumoylation Of Transcription Cofactors                                                                                                     1
## Signaling By Notch                                                                                                                         2
## Tnf Signaling                                                                                                                              1
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 1
## Dap12 Interactions                                                                                                                         1
## Interleukin 12 Signaling                                                                                                                   1
## Heme Signaling                                                                                                                             1
## Signaling By Notch3                                                                                                                        1
## Signaling By Egfr                                                                                                                          1
## Signaling By Erbb2                                                                                                                         1
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     1
## G Protein Mediated Events                                                                                                                  1
## Signaling By Ptk6                                                                                                                          1
## Interleukin 12 Family Signaling                                                                                                            1
## Nervous System Development                                                                                                                 3
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               1
## Ca2 Pathway                                                                                                                                1
## Deubiquitination                                                                                                                           2
## Ncam Signaling For Neurite Out Growth                                                                                                      1
## O Linked Glycosylation Of Mucins                                                                                                           1
## Signaling By Erbb4                                                                                                                         1
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            1
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           1
## Transcriptional Regulation By Mecp2                                                                                                        1
## Asymmetric Localization Of Pcp Proteins                                                                                                    1
## Collagen Degradation                                                                                                                       1
## Diseases Associated With O Glycosylation Of Proteins                                                                                       1
## Dna Methylation                                                                                                                            1
## Rna Polymerase Ii Transcription                                                                                                            5
## Mapk Family Signaling Cascades                                                                                                             2
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1
## Prc2 Methylates Histones And Dna                                                                                                           1
## Signaling By Tgf Beta Receptor Complex                                                                                                     1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         1
## Ecm Proteoglycans                                                                                                                          1
## Hemostasis                                                                                                                                 3
## Rmts Methylate Histone Arginines                                                                                                           1
## Fceri Mediated Mapk Activation                                                                                                             1
## Collagen Formation                                                                                                                         1
## Eph Ephrin Signaling                                                                                                                       1
## Interferon Gamma Signaling                                                                                                                 1
## Opioid Signalling                                                                                                                          1
## Pcp Ce Pathway                                                                                                                             1
## Transcriptional Regulation Of Granulopoiesis                                                                                               1
## Unfolded Protein Response Upr                                                                                                              1
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1
## Class B 2 Secretin Family Receptors                                                                                                        1
## Clec7a Dectin 1 Signaling                                                                                                                  1
## Mitochondrial Biogenesis                                                                                                                   1
## Diseases Of Programmed Cell Death                                                                                                          1
## Interleukin 1 Signaling                                                                                                                    1
## Signaling By Tgfb Family Members                                                                                                           1
## Stimuli Sensing Channels                                                                                                                   1
## Amyloid Fiber Formation                                                                                                                    1
## O Linked Glycosylation                                                                                                                     1
## L1cam Interactions                                                                                                                         1
## Tcr Signaling                                                                                                                              1
## Mhc Class Ii Antigen Presentation                                                                                                          1
## Oxidative Stress Induced Senescence                                                                                                        1
## Response To Elevated Platelet Cytosolic Ca2                                                                                                1
## Death Receptor Signalling                                                                                                                  1
## Degradation Of The Extracellular Matrix                                                                                                    1
## Diseases Of Glycosylation                                                                                                                  1
## Beta Catenin Independent Wnt Signaling                                                                                                     1
## Epigenetic Regulation Of Gene Expression                                                                                                   1
## Estrogen Dependent Gene Expression                                                                                                         1
## Fc Epsilon Receptor Fceri Signaling                                                                                                        1
## Ion Channel Transport                                                                                                                      1
## Interferon Signaling                                                                                                                       1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1
## Membrane Trafficking                                                                                                                       2
## Tcf Dependent Signaling In Response To Wnt                                                                                                 1
## Developmental Biology                                                                                                                      3
## Diseases Of Metabolism                                                                                                                     1
## Platelet Activation Signaling And Aggregation                                                                                              1
## Chromatin Modifying Enzymes                                                                                                                1
## Transmission Across Chemical Synapses                                                                                                      1
## Transport Of Small Molecules                                                                                                               2
## Vesicle Mediated Transport                                                                                                                 2
## Organelle Biogenesis And Maintenance                                                                                                       1
## Asparagine N Linked Glycosylation                                                                                                          1
## Signaling By Wnt                                                                                                                           1
## Transcriptional Regulation By Tp53                                                                                                         1
## Neuronal System                                                                                                                            1
## 2 Ltr Circle Formation                                                                                                                     0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            0
## Abacavir Metabolism                                                                                                                        0
## Abacavir Transmembrane Transport                                                                                                           0
## Abacavir Transport And Metabolism                                                                                                          0
## Abc Family Proteins Mediated Transport                                                                                                     0
## Abc Transporter Disorders                                                                                                                  0
## Abc Transporters In Lipid Homeostasis                                                                                                      0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              0
## Acetylcholine Binding And Downstream Events                                                                                                0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     0
## Acetylcholine Neurotransmitter Release Cycle                                                                                               0
## Acetylcholine Regulates Insulin Secretion                                                                                                  0
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        0
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           0
## Activated Ntrk2 Signals Through Cdk5                                                                                                       0
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              0
## Activated Ntrk2 Signals Through Fyn                                                                                                        0
## Activated Ntrk2 Signals Through Pi3k                                                                                                       0
## Activated Ntrk2 Signals Through Ras                                                                                                        0
## Activated Ntrk3 Signals Through Pi3k                                                                                                       0
## Activated Ntrk3 Signals Through Ras                                                                                                        0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              0
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                0
## Activation Of Ampk Downstream Of Nmdars                                                                                                    0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       0
## Activation Of Atr In Response To Replication Stress                                                                                        0
## Activation Of Bad And Translocation To Mitochondria                                                                                        0
## Activation Of Bh3 Only Proteins                                                                                                            0
## Activation Of C3 And C5                                                                                                                    0
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                0
## Activation Of Gene Expression By Srebf Srebp                                                                                               0
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       0
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     0
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  0
## Activation Of Noxa And Translocation To Mitochondria                                                                                       0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       0
## Activation Of Puma And Translocation To Mitochondria                                                                                       0
## Activation Of Rac1                                                                                                                         0
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    0
## Activation Of Ras In B Cells                                                                                                               0
## Activation Of Smo                                                                                                                          0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      0
## Activation Of The Phototransduction Cascade                                                                                                0
## Activation Of The Pre Replicative Complex                                                                                                  0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               0
## Activation Of Trka Receptors                                                                                                               0
## Acyl Chain Remodeling Of Cl                                                                                                                0
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       0
## Acyl Chain Remodelling Of Pc                                                                                                               0
## Acyl Chain Remodelling Of Pe                                                                                                               0
## Acyl Chain Remodelling Of Pg                                                                                                               0
## Acyl Chain Remodelling Of Pi                                                                                                               0
## Acyl Chain Remodelling Of Ps                                                                                                               0
## Adenylate Cyclase Activating Pathway                                                                                                       0
## Adenylate Cyclase Inhibitory Pathway                                                                                                       0
## Adherens Junctions Interactions                                                                                                            0
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  0
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        0
## Adrenoceptors                                                                                                                              0
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       0
## Aflatoxin Activation And Detoxification                                                                                                    0
## Aggrephagy                                                                                                                                 0
## Akt Phosphorylates Targets In The Cytosol                                                                                                  0
## Alpha Defensins                                                                                                                            0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 0
## Alpha Oxidation Of Phytanate                                                                                                               0
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   0
## Alternative Complement Activation                                                                                                          0
## Amine Ligand Binding Receptors                                                                                                             0
## Amino Acid Conjugation                                                                                                                     0
## Amino Acid Transport Across The Plasma Membrane                                                                                            0
## Amino Acids Regulate Mtorc1                                                                                                                0
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   0
## Anchoring Fibril Formation                                                                                                                 0
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         0
## Androgen Biosynthesis                                                                                                                      0
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           0
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   0
## Antigen Processing Cross Presentation                                                                                                      0
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   0
## Antimicrobial Peptides                                                                                                                     0
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                0
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   0
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          0
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     0
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            0
## Apoptosis                                                                                                                                  0
## Apoptosis Induced Dna Fragmentation                                                                                                        0
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               0
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    0
## Apoptotic Execution Phase                                                                                                                  0
## Apoptotic Factor Mediated Response                                                                                                         0
## Aquaporin Mediated Transport                                                                                                               0
## Arachidonate Production From Dag                                                                                                           0
## Arachidonic Acid Metabolism                                                                                                                0
## Arms Mediated Activation                                                                                                                   0
## Aryl Hydrocarbon Receptor Signalling                                                                                                       0
## Aspartate And Asparagine Metabolism                                                                                                        0
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   0
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           0
## Assembly Of The Hiv Virion                                                                                                                 0
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   0
## Assembly Of The Pre Replicative Complex                                                                                                    0
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           0
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  0
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       0
## Attachment And Entry                                                                                                                       0
## Attachment Of Gpi Anchor To Upar                                                                                                           0
## Attenuation Phase                                                                                                                          0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  0
## Aurka Activation By Tpx2                                                                                                                   0
## Autophagy                                                                                                                                  0
## B Wich Complex Positively Regulates Rrna Expression                                                                                        0
## Base Excision Repair                                                                                                                       0
## Base Excision Repair Ap Site Formation                                                                                                     0
## Basigin Interactions                                                                                                                       0
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  0
## Beta Catenin Phosphorylation Cascade                                                                                                       0
## Beta Defensins                                                                                                                             0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             0
## Beta Oxidation Of Pristanoyl Coa                                                                                                           0
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              0
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               0
## Bicarbonate Transporters                                                                                                                   0
## Bile Acid And Bile Salt Metabolism                                                                                                         0
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       0
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         0
## Biological Oxidations                                                                                                                      0
## Biosynthesis Of Epa Derived Spms                                                                                                           0
## Biosynthesis Of Maresin Like Spms                                                                                                          0
## Biosynthesis Of Maresins                                                                                                                   0
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    0
## Biotin Transport And Metabolism                                                                                                            0
## Blood Group Systems Biosynthesis                                                                                                           0
## Branched Chain Amino Acid Catabolism                                                                                                       0
## Budding And Maturation Of Hiv Virion                                                                                                       0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                0
## Butyrophilin Btn Family Interactions                                                                                                       0
## Ca2 Activated K Channels                                                                                                                   0
## Calcineurin Activates Nfat                                                                                                                 0
## Calcitonin Like Ligand Receptors                                                                                                           0
## Calnexin Calreticulin Cycle                                                                                                                0
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                0
## Cardiac Conduction                                                                                                                         0
## Cargo Concentration In The Er                                                                                                              0
## Cargo Trafficking To The Periciliary Membrane                                                                                              0
## Carnitine Metabolism                                                                                                                       0
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       0
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         0
## Cation Coupled Chloride Cotransporters                                                                                                     0
## Cd209 Dc Sign Signaling                                                                                                                    0
## Cd22 Mediated Bcr Regulation                                                                                                               0
## Cdc42 Gtpase Cycle                                                                                                                         0
## Cdc6 Association With The Orc Origin Complex                                                                                               0
## Cell Cell Communication                                                                                                                    0
## Cell Cell Junction Organization                                                                                                            0
## Cell Cycle                                                                                                                                 0
## Cell Cycle Checkpoints                                                                                                                     0
## Cell Cycle Mitotic                                                                                                                         0
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              0
## Cell Extracellular Matrix Interactions                                                                                                     0
## Cell Junction Organization                                                                                                                 0
## Cellular Hexose Transport                                                                                                                  0
## Cellular Response To Chemical Stress                                                                                                       0
## Cellular Response To Heat Stress                                                                                                           0
## Cellular Response To Hypoxia                                                                                                               0
## Cellular Response To Starvation                                                                                                            0
## Cgmp Effects                                                                                                                               0
## Chaperone Mediated Autophagy                                                                                                               0
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              0
## Chl1 Interactions                                                                                                                          0
## Cholesterol Biosynthesis                                                                                                                   0
## Choline Catabolism                                                                                                                         0
## Chondroitin Sulfate Biosynthesis                                                                                                           0
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            0
## Chrebp Activates Metabolic Gene Expression                                                                                                 0
## Chromosome Maintenance                                                                                                                     0
## Chylomicron Assembly                                                                                                                       0
## Chylomicron Clearance                                                                                                                      0
## Chylomicron Remodeling                                                                                                                     0
## Cilium Assembly                                                                                                                            0
## Citric Acid Cycle Tca Cycle                                                                                                                0
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       0
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       0
## Class I Peroxisomal Membrane Protein Import                                                                                                0
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         0
## Coenzyme A Biosynthesis                                                                                                                    0
## Cohesin Loading Onto Chromatin                                                                                                             0
## Collagen Biosynthesis And Modifying Enzymes                                                                                                0
## Collagen Chain Trimerization                                                                                                               0
## Common Pathway Of Fibrin Clot Formation                                                                                                    0
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 0
## Complement Cascade                                                                                                                         0
## Complex I Biogenesis                                                                                                                       0
## Condensation Of Prometaphase Chromosomes                                                                                                   0
## Condensation Of Prophase Chromosomes                                                                                                       0
## Conjugation Of Benzoate With Glycine                                                                                                       0
## Constitutive Signaling By Overexpressed Erbb2                                                                                              0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         0
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              0
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            0
## Copi Mediated Anterograde Transport                                                                                                        0
## Copii Mediated Vesicle Transport                                                                                                           0
## Creatine Metabolism                                                                                                                        0
## Creation Of C4 And C2 Activators                                                                                                           0
## Creb3 Factors Activate Genes                                                                                                               0
## Cristae Formation                                                                                                                          0
## Crmps In Sema3a Signaling                                                                                                                  0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 0
## Crosslinking Of Collagen Fibrils                                                                                                           0
## Cs Ds Degradation                                                                                                                          0
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    0
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           0
## Cyclin D Associated Events In G1                                                                                                           0
## Cyp2e1 Reactions                                                                                                                           0
## Cytochrome C Mediated Apoptotic Response                                                                                                   0
## Cytochrome P450 Arranged By Substrate Type                                                                                                 0
## Cytoprotection By Hmox1                                                                                                                    0
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     0
## Cytosolic Sulfonation Of Small Molecules                                                                                                   0
## Cytosolic Trna Aminoacylation                                                                                                              0
## Dap12 Signaling                                                                                                                            0
## Darpp 32 Events                                                                                                                            0
## Dcc Mediated Attractive Signaling                                                                                                          0
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    0
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   0
## Deadenylation Dependent Mrna Decay                                                                                                         0
## Deadenylation Of Mrna                                                                                                                      0
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                0
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                0
## Defective Cftr Causes Cystic Fibrosis                                                                                                      0
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       0
## Defective Chst3 Causes Sedcjd                                                                                                              0
## Defective Chst6 Causes Mcdc1                                                                                                               0
## Defective Chsy1 Causes Tpbs                                                                                                                0
## Defective Csf2rb Causes Smdp5                                                                                                              0
## Defective Ext2 Causes Exostoses 2                                                                                                          0
## Defective F9 Activation                                                                                                                    0
## Defective Factor Ix Causes Hemophilia B                                                                                                    0
## Defective Factor Viii Causes Hemophilia A                                                                                                  0
## Defective Lfng Causes Scdo3                                                                                                                0
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                0
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  0
## Defects In Biotin Btn Metabolism                                                                                                           0
## Defects In Cobalamin B12 Metabolism                                                                                                        0
## Defects In Vitamin And Cofactor Metabolism                                                                                                 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   0
## Defensins                                                                                                                                  0
## Degradation Of Axin                                                                                                                        0
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     0
## Degradation Of Cysteine And Homocysteine                                                                                                   0
## Degradation Of Dvl                                                                                                                         0
## Degradation Of Gli1 By The Proteasome                                                                                                      0
## Depolymerisation Of The Nuclear Lamina                                                                                                     0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           0
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                0
## Dermatan Sulfate Biosynthesis                                                                                                              0
## Detoxification Of Reactive Oxygen Species                                                                                                  0
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              0
## Digestion                                                                                                                                  0
## Digestion And Absorption                                                                                                                   0
## Digestion Of Dietary Carbohydrate                                                                                                          0
## Digestion Of Dietary Lipid                                                                                                                 0
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             0
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      0
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              0
## Diseases Associated With N Glycosylation Of Proteins                                                                                       0
## Diseases Associated With Surfactant Metabolism                                                                                             0
## Diseases Of Base Excision Repair                                                                                                           0
## Diseases Of Carbohydrate Metabolism                                                                                                        0
## Diseases Of Dna Repair                                                                                                                     0
## Diseases Of Mismatch Repair Mmr                                                                                                            0
## Diseases Of Mitotic Cell Cycle                                                                                                             0
## Disinhibition Of Snare Formation                                                                                                           0
## Disorders Of Transmembrane Transporters                                                                                                    0
## Displacement Of Dna Glycosylase By Apex1                                                                                                   0
## Dna Damage Bypass                                                                                                                          0
## Dna Damage Recognition In Gg Ner                                                                                                           0
## Dna Damage Reversal                                                                                                                        0
## Dna Damage Telomere Stress Induced Senescence                                                                                              0
## Dna Double Strand Break Repair                                                                                                             0
## Dna Double Strand Break Response                                                                                                           0
## Dna Repair                                                                                                                                 0
## Dna Replication                                                                                                                            0
## Dna Replication Initiation                                                                                                                 0
## Dna Replication Pre Initiation                                                                                                             0
## Dna Strand Elongation                                                                                                                      0
## Dopamine Neurotransmitter Release Cycle                                                                                                    0
## Dopamine Receptors                                                                                                                         0
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    0
## Downregulation Of Erbb4 Signaling                                                                                                          0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   0
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              0
## Downstream Signal Transduction                                                                                                             0
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         0
## Downstream Signaling Of Activated Fgfr1                                                                                                    0
## Downstream Signaling Of Activated Fgfr2                                                                                                    0
## Downstream Signaling Of Activated Fgfr3                                                                                                    0
## Downstream Signaling Of Activated Fgfr4                                                                                                    0
## Dscam Interactions                                                                                                                         0
## Dual Incision In Gg Ner                                                                                                                    0
## Dual Incision In Tc Ner                                                                                                                    0
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                0
## E2f Mediated Regulation Of Dna Replication                                                                                                 0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          0
## Early Phase Of Hiv Life Cycle                                                                                                              0
## Effects Of Pip2 Hydrolysis                                                                                                                 0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             0
## Eicosanoid Ligand Binding Receptors                                                                                                        0
## Eicosanoids                                                                                                                                0
## Elastic Fibre Formation                                                                                                                    0
## Electric Transmission Across Gap Junctions                                                                                                 0
## Elevation Of Cytosolic Ca2 Levels                                                                                                          0
## Endogenous Sterols                                                                                                                         0
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     0
## Endosomal Vacuolar Pathway                                                                                                                 0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           0
## Enos Activation                                                                                                                            0
## Epha Mediated Growth Cone Collapse                                                                                                         0
## Ephb Mediated Forward Signaling                                                                                                            0
## Ephrin Signaling                                                                                                                           0
## Er Quality Control Compartment Erqc                                                                                                        0
## Er To Golgi Anterograde Transport                                                                                                          0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                0
## Erk Mapk Targets                                                                                                                           0
## Erks Are Inactivated                                                                                                                       0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    0
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        0
## Erythropoietin Activates Ras                                                                                                               0
## Erythropoietin Activates Stat5                                                                                                             0
## Establishment Of Sister Chromatid Cohesion                                                                                                 0
## Estrogen Biosynthesis                                                                                                                      0
## Estrogen Stimulated Signaling Through Prkcz                                                                                                0
## Ethanol Oxidation                                                                                                                          0
## Eukaryotic Translation Elongation                                                                                                          0
## Eukaryotic Translation Initiation                                                                                                          0
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            0
## Extension Of Telomeres                                                                                                                     0
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      0
## Fanconi Anemia Pathway                                                                                                                     0
## Fasl Cd95l Signaling                                                                                                                       0
## Fatty Acid Metabolism                                                                                                                      0
## Fatty Acids                                                                                                                                0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                0
## Fatty Acyl Coa Biosynthesis                                                                                                                0
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         0
## Fceri Mediated Ca 2 Mobilization                                                                                                           0
## Fceri Mediated Nf Kb Activation                                                                                                            0
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               0
## Fcgr Activation                                                                                                                            0
## Fertilization                                                                                                                              0
## Fgfr1 Ligand Binding And Activation                                                                                                        0
## Fgfr1 Mutant Receptor Activation                                                                                                           0
## Fgfr1b Ligand Binding And Activation                                                                                                       0
## Fgfr1c Ligand Binding And Activation                                                                                                       0
## Fgfr2 Alternative Splicing                                                                                                                 0
## Fgfr2 Ligand Binding And Activation                                                                                                        0
## Fgfr2 Mutant Receptor Activation                                                                                                           0
## Fgfr2b Ligand Binding And Activation                                                                                                       0
## Fgfr2c Ligand Binding And Activation                                                                                                       0
## Fgfr3 Ligand Binding And Activation                                                                                                        0
## Fgfr3b Ligand Binding And Activation                                                                                                       0
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             0
## Flt3 Signaling                                                                                                                             0
## Flt3 Signaling By Cbl Mutants                                                                                                              0
## Flt3 Signaling In Disease                                                                                                                  0
## Flt3 Signaling Through Src Family Kinases                                                                                                  0
## Folding Of Actin By Cct Tric                                                                                                               0
## Formation Of Apoptosome                                                                                                                    0
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  0
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  0
## Formation Of Incision Complex In Gg Ner                                                                                                    0
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               0
## Formation Of Tc Ner Pre Incision Complex                                                                                                   0
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  0
## Formation Of The Cornified Envelope                                                                                                        0
## Formation Of The Early Elongation Complex                                                                                                  0
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     0
## Formation Of Xylulose 5 Phosphate                                                                                                          0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       0
## Foxo Mediated Transcription                                                                                                                0
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            0
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               0
## Free Fatty Acid Receptors                                                                                                                  0
## Free Fatty Acids Regulate Insulin Secretion                                                                                                0
## Frs Mediated Fgfr1 Signaling                                                                                                               0
## Frs Mediated Fgfr2 Signaling                                                                                                               0
## Frs Mediated Fgfr3 Signaling                                                                                                               0
## Frs Mediated Fgfr4 Signaling                                                                                                               0
## Fructose Catabolism                                                                                                                        0
## Fructose Metabolism                                                                                                                        0
## G Alpha 12 13 Signalling Events                                                                                                            0
## G Alpha S Signalling Events                                                                                                                0
## G Alpha Z Signalling Events                                                                                                                0
## G Beta Gamma Signalling Through Cdc42                                                                                                      0
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  0
## G Protein Activation                                                                                                                       0
## G Protein Beta Gamma Signalling                                                                                                            0
## G0 And Early G1                                                                                                                            0
## G1 S Dna Damage Checkpoints                                                                                                                0
## G1 S Specific Transcription                                                                                                                0
## G2 M Checkpoints                                                                                                                           0
## G2 M Dna Damage Checkpoint                                                                                                                 0
## G2 M Dna Replication Checkpoint                                                                                                            0
## G2 Phase                                                                                                                                   0
## Gaba B Receptor Activation                                                                                                                 0
## Gaba Receptor Activation                                                                                                                   0
## Gaba Synthesis Release Reuptake And Degradation                                                                                            0
## Galactose Catabolism                                                                                                                       0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    0
## Gap Junction Assembly                                                                                                                      0
## Gap Junction Degradation                                                                                                                   0
## Gap Junction Trafficking And Regulation                                                                                                    0
## Gdp Fucose Biosynthesis                                                                                                                    0
## Gene Silencing By Rna                                                                                                                      0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                0
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   0
## Glucagon Signaling In Metabolic Regulation                                                                                                 0
## Glucagon Type Ligand Receptors                                                                                                             0
## Glucocorticoid Biosynthesis                                                                                                                0
## Gluconeogenesis                                                                                                                            0
## Glucose Metabolism                                                                                                                         0
## Glucuronidation                                                                                                                            0
## Glutamate And Glutamine Metabolism                                                                                                         0
## Glutamate Neurotransmitter Release Cycle                                                                                                   0
## Glutathione Conjugation                                                                                                                    0
## Glutathione Synthesis And Recycling                                                                                                        0
## Glycerophospholipid Biosynthesis                                                                                                           0
## Glycerophospholipid Catabolism                                                                                                             0
## Glycogen Breakdown Glycogenolysis                                                                                                          0
## Glycogen Metabolism                                                                                                                        0
## Glycogen Storage Diseases                                                                                                                  0
## Glycogen Synthesis                                                                                                                         0
## Glycolysis                                                                                                                                 0
## Glycosaminoglycan Metabolism                                                                                                               0
## Glycosphingolipid Metabolism                                                                                                               0
## Glyoxylate Metabolism And Glycine Degradation                                                                                              0
## Golgi Associated Vesicle Biogenesis                                                                                                        0
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        0
## Golgi To Er Retrograde Transport                                                                                                           0
## Gp1b Ix V Activation Signalling                                                                                                            0
## Gpvi Mediated Activation Cascade                                                                                                           0
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  0
## Grb7 Events In Erbb2 Signaling                                                                                                             0
## Growth Hormone Receptor Signaling                                                                                                          0
## Hats Acetylate Histones                                                                                                                    0
## Hcmv Late Events                                                                                                                           0
## Hdacs Deacetylate Histones                                                                                                                 0
## Hdl Assembly                                                                                                                               0
## Hdl Clearance                                                                                                                              0
## Hdl Remodeling                                                                                                                             0
## Hdms Demethylate Histones                                                                                                                  0
## Hdr Through Homologous Recombination Hrr                                                                                                   0
## Hdr Through Mmej Alt Nhej                                                                                                                  0
## Hdr Through Single Strand Annealing Ssa                                                                                                    0
## Hedgehog Ligand Biogenesis                                                                                                                 0
## Hedgehog Off State                                                                                                                         0
## Hedgehog On State                                                                                                                          0
## Heme Biosynthesis                                                                                                                          0
## Heme Degradation                                                                                                                           0
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     0
## Histidine Catabolism                                                                                                                       0
## Hiv Elongation Arrest And Recovery                                                                                                         0
## Hiv Infection                                                                                                                              0
## Hiv Life Cycle                                                                                                                             0
## Hiv Transcription Elongation                                                                                                               0
## Hiv Transcription Initiation                                                                                                               0
## Homologous Dna Pairing And Strand Exchange                                                                                                 0
## Homology Directed Repair                                                                                                                   0
## Hormone Ligand Binding Receptors                                                                                                           0
## Host Interactions Of Hiv Factors                                                                                                           0
## Hs Gag Biosynthesis                                                                                                                        0
## Hs Gag Degradation                                                                                                                         0
## Hsf1 Activation                                                                                                                            0
## Hsf1 Dependent Transactivation                                                                                                             0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    0
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       0
## Hyaluronan Biosynthesis And Export                                                                                                         0
## Hyaluronan Metabolism                                                                                                                      0
## Hyaluronan Uptake And Degradation                                                                                                          0
## Hydrolysis Of Lpc                                                                                                                          0
## Ikba Variant Leads To Eda Id                                                                                                               0
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            0
## Inactivation Of Cdc42 And Rac1                                                                                                             0
## Inactivation Of Csf3 G Csf Signaling                                                                                                       0
## Incretin Synthesis Secretion And Inactivation                                                                                              0
## Infection With Mycobacterium Tuberculosis                                                                                                  0
## Influenza Infection                                                                                                                        0
## Inhibition Of Dna Recombination At Telomere                                                                                                0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                0
## Initial Triggering Of Complement                                                                                                           0
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               0
## Inositol Phosphate Metabolism                                                                                                              0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                0
## Insulin Processing                                                                                                                         0
## Insulin Receptor Recycling                                                                                                                 0
## Insulin Receptor Signalling Cascade                                                                                                        0
## Integration Of Energy Metabolism                                                                                                           0
## Integration Of Provirus                                                                                                                    0
## Integrin Cell Surface Interactions                                                                                                         0
## Integrin Signaling                                                                                                                         0
## Interaction Between L1 And Ankyrins                                                                                                        0
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      0
## Interactions Of Rev With Host Cellular Proteins                                                                                            0
## Interactions Of Vpr With Host Cellular Proteins                                                                                            0
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         0
## Interferon Alpha Beta Signaling                                                                                                            0
## Interleukin 15 Signaling                                                                                                                   0
## Interleukin 2 Family Signaling                                                                                                             0
## Interleukin 2 Signaling                                                                                                                    0
## Interleukin 20 Family Signaling                                                                                                            0
## Interleukin 21 Signaling                                                                                                                   0
## Interleukin 23 Signaling                                                                                                                   0
## Interleukin 27 Signaling                                                                                                                   0
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           0
## Interleukin 35 Signalling                                                                                                                  0
## Interleukin 36 Pathway                                                                                                                     0
## Interleukin 37 Signaling                                                                                                                   0
## Interleukin 7 Signaling                                                                                                                    0
## Interleukin 9 Signaling                                                                                                                    0
## Interleukin Receptor Shc Signaling                                                                                                         0
## Intestinal Absorption                                                                                                                      0
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             0
## Intra Golgi Traffic                                                                                                                        0
## Intraflagellar Transport                                                                                                                   0
## Intrinsic Pathway For Apoptosis                                                                                                            0
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Inwardly Rectifying K Channels                                                                                                             0
## Ion Homeostasis                                                                                                                            0
## Ion Transport By P Type Atpases                                                                                                            0
## Ionotropic Activity Of Kainate Receptors                                                                                                   0
## Irak1 Recruits Ikk Complex                                                                                                                 0
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  0
## Irak4 Deficiency Tlr2 4                                                                                                                    0
## Ire1alpha Activates Chaperones                                                                                                             0
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     0
## Iron Uptake And Transport                                                                                                                  0
## Irs Activation                                                                                                                             0
## Irs Mediated Signalling                                                                                                                    0
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          0
## Josephin Domain Dubs                                                                                                                       0
## Keratan Sulfate Biosynthesis                                                                                                               0
## Keratan Sulfate Degradation                                                                                                                0
## Keratan Sulfate Keratin Metabolism                                                                                                         0
## Keratinization                                                                                                                             0
## Ketone Body Metabolism                                                                                                                     0
## Kinesins                                                                                                                                   0
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     0
## Lagging Strand Synthesis                                                                                                                   0
## Laminin Interactions                                                                                                                       0
## Late Endosomal Microautophagy                                                                                                              0
## Lectin Pathway Of Complement Activation                                                                                                    0
## Leukotriene Receptors                                                                                                                      0
## Lgi Adam Interactions                                                                                                                      0
## Ligand Receptor Interactions                                                                                                               0
## Linoleic Acid La Metabolism                                                                                                                0
## Lipid Particle Organization                                                                                                                0
## Lipophagy                                                                                                                                  0
## Listeria Monocytogenes Entry Into Host Cells                                                                                               0
## Long Term Potentiation                                                                                                                     0
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 0
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     0
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        0
## Lysine Catabolism                                                                                                                          0
## Lysosome Vesicle Biogenesis                                                                                                                0
## Lysosphingolipid And Lpa Receptors                                                                                                         0
## M Phase                                                                                                                                    0
## Map2k And Mapk Activation                                                                                                                  0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   0
## Mapk6 Mapk4 Signaling                                                                                                                      0
## Mastl Facilitates Mitotic Progression                                                                                                      0
## Maturation Of Nucleoprotein                                                                                                                0
## Maturation Of Protein 3a                                                                                                                   0
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     0
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     0
## Meiosis                                                                                                                                    0
## Meiotic Recombination                                                                                                                      0
## Meiotic Synapsis                                                                                                                           0
## Melanin Biosynthesis                                                                                                                       0
## Met Activates Pi3k Akt Signaling                                                                                                           0
## Met Activates Ptk2 Signaling                                                                                                               0
## Met Activates Ptpn11                                                                                                                       0
## Met Activates Rap1 And Rac1                                                                                                                0
## Met Activates Ras Signaling                                                                                                                0
## Met Interacts With Tns Proteins                                                                                                            0
## Met Promotes Cell Motility                                                                                                                 0
## Met Receptor Activation                                                                                                                    0
## Met Receptor Recycling                                                                                                                     0
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        0
## Metabolism Of Amine Derived Hormones                                                                                                       0
## Metabolism Of Amino Acids And Derivatives                                                                                                  0
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              0
## Metabolism Of Carbohydrates                                                                                                                0
## Metabolism Of Cofactors                                                                                                                    0
## Metabolism Of Fat Soluble Vitamins                                                                                                         0
## Metabolism Of Folate And Pterines                                                                                                          0
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           0
## Metabolism Of Lipids                                                                                                                       0
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  0
## Metabolism Of Nucleotides                                                                                                                  0
## Metabolism Of Polyamines                                                                                                                   0
## Metabolism Of Porphyrins                                                                                                                   0
## Metabolism Of Rna                                                                                                                          0
## Metabolism Of Steroid Hormones                                                                                                             0
## Metabolism Of Steroids                                                                                                                     0
## Metabolism Of Vitamins And Cofactors                                                                                                       0
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         0
## Metal Ion Slc Transporters                                                                                                                 0
## Metal Sequestration By Antimicrobial Proteins                                                                                              0
## Metalloprotease Dubs                                                                                                                       0
## Metallothioneins Bind Metals                                                                                                               0
## Methionine Salvage Pathway                                                                                                                 0
## Methylation                                                                                                                                0
## Microrna Mirna Biogenesis                                                                                                                  0
## Mineralocorticoid Biosynthesis                                                                                                             0
## Miro Gtpase Cycle                                                                                                                          0
## Miscellaneous Substrates                                                                                                                   0
## Miscellaneous Transport And Binding Events                                                                                                 0
## Mismatch Repair                                                                                                                            0
## Mitochondrial Calcium Ion Transport                                                                                                        0
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         0
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               0
## Mitochondrial Protein Import                                                                                                               0
## Mitochondrial Translation                                                                                                                  0
## Mitochondrial Trna Aminoacylation                                                                                                          0
## Mitochondrial Uncoupling                                                                                                                   0
## Mitophagy                                                                                                                                  0
## Mitotic G1 Phase And G1 S Transition                                                                                                       0
## Mitotic G2 G2 M Phases                                                                                                                     0
## Mitotic Metaphase And Anaphase                                                                                                             0
## Mitotic Prometaphase                                                                                                                       0
## Mitotic Prophase                                                                                                                           0
## Mitotic Spindle Checkpoint                                                                                                                 0
## Mitotic Telophase Cytokinesis                                                                                                              0
## Modulation By Mtb Of Host Immune System                                                                                                    0
## Molecules Associated With Elastic Fibres                                                                                                   0
## Molybdenum Cofactor Biosynthesis                                                                                                           0
## Mrna Capping                                                                                                                               0
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       0
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       0
## Mrna Editing                                                                                                                               0
## Mrna Editing C To U Conversion                                                                                                             0
## Mrna Splicing                                                                                                                              0
## Mrna Splicing Minor Pathway                                                                                                                0
## Mtor Signalling                                                                                                                            0
## Mtorc1 Mediated Signalling                                                                                                                 0
## Mucopolysaccharidoses                                                                                                                      0
## Multifunctional Anion Exchangers                                                                                                           0
## Muscarinic Acetylcholine Receptors                                                                                                         0
## Muscle Contraction                                                                                                                         0
## Myoclonic Epilepsy Of Lafora                                                                                                               0
## Myogenesis                                                                                                                                 0
## N Glycan Antennae Elongation                                                                                                               0
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     0
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                0
## Na Cl Dependent Neurotransmitter Transporters                                                                                              0
## Nade Modulates Death Signalling                                                                                                            0
## Ncam1 Interactions                                                                                                                         0
## Nectin Necl Trans Heterodimerization                                                                                                       0
## Neddylation                                                                                                                                0
## Nef And Signal Transduction                                                                                                                0
## Nef Mediated Cd4 Down Regulation                                                                                                           0
## Nef Mediated Cd8 Down Regulation                                                                                                           0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             0
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          0
## Negative Feedback Regulation Of Mapk Pathway                                                                                               0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 0
## Negative Regulation Of Fgfr1 Signaling                                                                                                     0
## Negative Regulation Of Fgfr2 Signaling                                                                                                     0
## Negative Regulation Of Fgfr3 Signaling                                                                                                     0
## Negative Regulation Of Fgfr4 Signaling                                                                                                     0
## Negative Regulation Of Flt3                                                                                                                0
## Negative Regulation Of Mapk Pathway                                                                                                        0
## Negative Regulation Of Met Activity                                                                                                        0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        0
## Negative Regulation Of Notch4 Signaling                                                                                                    0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 0
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               0
## Nephrin Family Interactions                                                                                                                0
## Netrin 1 Signaling                                                                                                                         0
## Netrin Mediated Repulsion Signals                                                                                                          0
## Neurexins And Neuroligins                                                                                                                  0
## Neurofascin Interactions                                                                                                                   0
## Neurotoxicity Of Clostridium Toxins                                                                                                        0
## Neurotransmitter Clearance                                                                                                                 0
## Neurotransmitter Release Cycle                                                                                                             0
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   0
## Nf Kb Is Activated And Signals Survival                                                                                                    0
## Ngf Independant Trka Activation                                                                                                            0
## Nicotinamide Salvaging                                                                                                                     0
## Nicotinate Metabolism                                                                                                                      0
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  0
## Non Integrin Membrane Ecm Interactions                                                                                                     0
## Noncanonical Activation Of Notch3                                                                                                          0
## Nonhomologous End Joining Nhej                                                                                                             0
## Nonsense Mediated Decay Nmd                                                                                                                0
## Norepinephrine Neurotransmitter Release Cycle                                                                                              0
## Nostrin Mediated Enos Trafficking                                                                                                          0
## Notch Hlh Transcription Pathway                                                                                                            0
## Notch1 Intracellular Domain Regulates Transcription                                                                                        0
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Intracellular Domain Regulates Transcription                                                                                        0
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch4 Intracellular Domain Regulates Transcription                                                                                        0
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            0
## Nrage Signals Death Through Jnk                                                                                                            0
## Nrcam Interactions                                                                                                                         0
## Nrif Signals Cell Death From The Nucleus                                                                                                   0
## Ns1 Mediated Effects On Host Pathways                                                                                                      0
## Ntrk2 Activates Rac1                                                                                                                       0
## Nuclear Envelope Breakdown                                                                                                                 0
## Nuclear Envelope Ne Reassembly                                                                                                             0
## Nuclear Import Of Rev Protein                                                                                                              0
## Nuclear Pore Complex Npc Disassembly                                                                                                       0
## Nuclear Receptor Transcription Pathway                                                                                                     0
## Nuclear Signaling By Erbb4                                                                                                                 0
## Nucleobase Biosynthesis                                                                                                                    0
## Nucleobase Catabolism                                                                                                                      0
## Nucleotide Excision Repair                                                                                                                 0
## Nucleotide Like Purinergic Receptors                                                                                                       0
## Nucleotide Salvage                                                                                                                         0
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          0
## Oas Antiviral Response                                                                                                                     0
## Olfactory Signaling Pathway                                                                                                                0
## Oncogene Induced Senescence                                                                                                                0
## Oncogenic Mapk Signaling                                                                                                                   0
## Opsins                                                                                                                                     0
## Orc1 Removal From Chromatin                                                                                                                0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    0
## Organic Anion Transport                                                                                                                    0
## Organic Anion Transporters                                                                                                                 0
## Organic Cation Anion Zwitterion Transport                                                                                                  0
## Organic Cation Transport                                                                                                                   0
## Other Interleukin Signaling                                                                                                                0
## Other Semaphorin Interactions                                                                                                              0
## Ovarian Tumor Domain Proteases                                                                                                             0
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            0
## P2y Receptors                                                                                                                              0
## P38mapk Events                                                                                                                             0
## P75 Ntr Receptor Mediated Signalling                                                                                                       0
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             0
## P75ntr Recruits Signalling Complexes                                                                                                       0
## P75ntr Regulates Axonogenesis                                                                                                              0
## P75ntr Signals Via Nf Kb                                                                                                                   0
## Parasite Infection                                                                                                                         0
## Passive Transport By Aquaporins                                                                                                            0
## Pcna Dependent Long Patch Base Excision Repair                                                                                             0
## Pecam1 Interactions                                                                                                                        0
## Pentose Phosphate Pathway                                                                                                                  0
## Peptide Hormone Biosynthesis                                                                                                               0
## Peptide Hormone Metabolism                                                                                                                 0
## Peroxisomal Lipid Metabolism                                                                                                               0
## Peroxisomal Protein Import                                                                                                                 0
## Pexophagy                                                                                                                                  0
## Phase 0 Rapid Depolarisation                                                                                                               0
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   0
## Phase 2 Plateau Phase                                                                                                                      0
## Phase 3 Rapid Repolarisation                                                                                                               0
## Phase 4 Resting Membrane Potential                                                                                                         0
## Phase I Functionalization Of Compounds                                                                                                     0
## Phase Ii Conjugation Of Compounds                                                                                                          0
## Phenylalanine And Tyrosine Metabolism                                                                                                      0
## Phenylalanine Metabolism                                                                                                                   0
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              0
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 0
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     0
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     0
## Phospholipid Metabolism                                                                                                                    0
## Phosphorylation Of Emi1                                                                                                                    0
## Phosphorylation Of The Apc C                                                                                                               0
## Physiological Factors                                                                                                                      0
## Pi 3k Cascade Fgfr1                                                                                                                        0
## Pi 3k Cascade Fgfr2                                                                                                                        0
## Pi 3k Cascade Fgfr3                                                                                                                        0
## Pi 3k Cascade Fgfr4                                                                                                                        0
## Pi Metabolism                                                                                                                              0
## Pi3k Akt Activation                                                                                                                        0
## Pi3k Events In Erbb4 Signaling                                                                                                             0
## Pi5p Regulates Tp53 Acetylation                                                                                                            0
## Pink1 Prkn Mediated Mitophagy                                                                                                              0
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      0
## Pka Activation In Glucagon Signalling                                                                                                      0
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      0
## Pkmts Methylate Histone Lysines                                                                                                            0
## Plasma Lipoprotein Assembly                                                                                                                0
## Plasma Lipoprotein Remodeling                                                                                                              0
## Platelet Adhesion To Exposed Collagen                                                                                                      0
## Platelet Aggregation Plug Formation                                                                                                        0
## Platelet Calcium Homeostasis                                                                                                               0
## Platelet Homeostasis                                                                                                                       0
## Platelet Sensitization By Ldl                                                                                                              0
## Polb Dependent Long Patch Base Excision Repair                                                                                             0
## Polo Like Kinase Mediated Events                                                                                                           0
## Polymerase Switching                                                                                                                       0
## Polymerase Switching On The C Strand Of The Telomere                                                                                       0
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          0
## Post Chaperonin Tubulin Folding Pathway                                                                                                    0
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         0
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           0
## Potassium Channels                                                                                                                         0
## Potential Therapeutics For Sars                                                                                                            0
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             0
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   0
## Pre Notch Expression And Processing                                                                                                        0
## Pre Notch Processing In Golgi                                                                                                              0
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          0
## Pregnenolone Biosynthesis                                                                                                                  0
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     0
## Presynaptic Function Of Kainate Receptors                                                                                                  0
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  0
## Processing And Activation Of Sumo                                                                                                          0
## Processing Of Capped Intron Containing Pre Mrna                                                                                            0
## Processing Of Capped Intronless Pre Mrna                                                                                                   0
## Processing Of Dna Double Strand Break Ends                                                                                                 0
## Processing Of Intronless Pre Mrnas                                                                                                         0
## Processing Of Smdt1                                                                                                                        0
## Processive Synthesis On The C Strand Of The Telomere                                                                                       0
## Processive Synthesis On The Lagging Strand                                                                                                 0
## Prolactin Receptor Signaling                                                                                                               0
## Prolonged Erk Activation Events                                                                                                            0
## Propionyl Coa Catabolism                                                                                                                   0
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      0
## Prostanoid Ligand Receptors                                                                                                                0
## Protein Folding                                                                                                                            0
## Protein Localization                                                                                                                       0
## Protein Methylation                                                                                                                        0
## Protein Protein Interactions At Synapses                                                                                                   0
## Protein Repair                                                                                                                             0
## Protein Ubiquitination                                                                                                                     0
## Proton Coupled Monocarboxylate Transport                                                                                                   0
## Pten Regulation                                                                                                                            0
## Ptk6 Expression                                                                                                                            0
## Ptk6 Regulates Cell Cycle                                                                                                                  0
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      0
## Purine Catabolism                                                                                                                          0
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           0
## Purine Salvage                                                                                                                             0
## Pyrimidine Catabolism                                                                                                                      0
## Pyrimidine Salvage                                                                                                                         0
## Pyruvate Metabolism                                                                                                                        0
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              0
## Ra Biosynthesis Pathway                                                                                                                    0
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      0
## Rab Geranylgeranylation                                                                                                                    0
## Rab Regulation Of Trafficking                                                                                                              0
## Rac1 Gtpase Cycle                                                                                                                          0
## Rac2 Gtpase Cycle                                                                                                                          0
## Rac3 Gtpase Cycle                                                                                                                          0
## Raf Activation                                                                                                                             0
## Rap1 Signalling                                                                                                                            0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       0
## Ras Processing                                                                                                                             0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  0
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               0
## Receptor Mediated Mitophagy                                                                                                                0
## Receptor Type Tyrosine Protein Phosphatases                                                                                                0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     0
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           0
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   0
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 0
## Recycling Of Bile Acids And Salts                                                                                                          0
## Recycling Of Eif2 Gdp                                                                                                                      0
## Recycling Pathway Of L1                                                                                                                    0
## Reduction Of Cytosolic Ca Levels                                                                                                           0
## Reelin Signalling Pathway                                                                                                                  0
## Regulated Proteolysis Of P75ntr                                                                                                            0
## Regulation By C Flip                                                                                                                       0
## Regulation Of Bach1 Activity                                                                                                               0
## Regulation Of Beta Cell Development                                                                                                        0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         0
## Regulation Of Expression Of Slits And Robos                                                                                                0
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 0
## Regulation Of Fzd By Ubiquitination                                                                                                        0
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  0
## Regulation Of Gene Expression In Beta Cells                                                                                                0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           0
## Regulation Of Hmox1 Expression And Activity                                                                                                0
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            0
## Regulation Of Ifna Signaling                                                                                                               0
## Regulation Of Ifng Signaling                                                                                                               0
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     0
## Regulation Of Insulin Secretion                                                                                                            0
## Regulation Of Kit Signaling                                                                                                                0
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                0
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        0
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             0
## Regulation Of Pten Gene Transcription                                                                                                      0
## Regulation Of Pten Localization                                                                                                            0
## Regulation Of Pten Mrna Translation                                                                                                        0
## Regulation Of Pten Stability And Activity                                                                                                  0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           0
## Regulation Of Ras By Gaps                                                                                                                  0
## Regulation Of Runx1 Expression And Activity                                                                                                0
## Regulation Of Runx2 Expression And Activity                                                                                                0
## Regulation Of Runx3 Expression And Activity                                                                                                0
## Regulation Of Signaling By Cbl                                                                                                             0
## Regulation Of Signaling By Nodal                                                                                                           0
## Regulation Of Tlr By Endogenous Ligand                                                                                                     0
## Regulation Of Tp53 Activity                                                                                                                0
## Regulation Of Tp53 Activity Through Acetylation                                                                                            0
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            0
## Regulation Of Tp53 Activity Through Methylation                                                                                            0
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        0
## Regulation Of Tp53 Expression And Degradation                                                                                              0
## Relaxin Receptors                                                                                                                          0
## Release Of Apoptotic Factors From The Mitochondria                                                                                         0
## Release Of Hh Np From The Secreting Cell                                                                                                   0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      0
## Repression Of Wnt Target Genes                                                                                                             0
## Reproduction                                                                                                                               0
## Resolution Of Abasic Sites Ap Sites                                                                                                        0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               0
## Resolution Of D Loop Structures                                                                                                            0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          0
## Resolution Of Sister Chromatid Cohesion                                                                                                    0
## Respiratory Electron Transport                                                                                                             0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           0
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          0
## Response Of Mtb To Phagocytosis                                                                                                            0
## Response To Metal Ions                                                                                                                     0
## Ret Signaling                                                                                                                              0
## Retinoid Cycle Disease Events                                                                                                              0
## Retrograde Neurotrophin Signalling                                                                                                         0
## Retrograde Transport At The Trans Golgi Network                                                                                            0
## Reversible Hydration Of Carbon Dioxide                                                                                                     0
## Rho Gtpase Cycle                                                                                                                           0
## Rho Gtpase Effectors                                                                                                                       0
## Rho Gtpases Activate Cit                                                                                                                   0
## Rho Gtpases Activate Formins                                                                                                               0
## Rho Gtpases Activate Iqgaps                                                                                                                0
## Rho Gtpases Activate Ktn1                                                                                                                  0
## Rho Gtpases Activate Nadph Oxidases                                                                                                        0
## Rho Gtpases Activate Paks                                                                                                                  0
## Rho Gtpases Activate Pkns                                                                                                                  0
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               0
## Rho Gtpases Activate Rocks                                                                                                                 0
## Rho Gtpases Activate Wasps And Waves                                                                                                       0
## Rhoa Gtpase Cycle                                                                                                                          0
## Rhob Gtpase Cycle                                                                                                                          0
## Rhobtb Gtpase Cycle                                                                                                                        0
## Rhobtb1 Gtpase Cycle                                                                                                                       0
## Rhobtb2 Gtpase Cycle                                                                                                                       0
## Rhobtb3 Atpase Cycle                                                                                                                       0
## Rhoc Gtpase Cycle                                                                                                                          0
## Rhod Gtpase Cycle                                                                                                                          0
## Rhof Gtpase Cycle                                                                                                                          0
## Rhog Gtpase Cycle                                                                                                                          0
## Rhoh Gtpase Cycle                                                                                                                          0
## Rhoj Gtpase Cycle                                                                                                                          0
## Rhoq Gtpase Cycle                                                                                                                          0
## Rhot1 Gtpase Cycle                                                                                                                         0
## Rhou Gtpase Cycle                                                                                                                          0
## Rhov Gtpase Cycle                                                                                                                          0
## Rna Polymerase I Promoter Escape                                                                                                           0
## Rna Polymerase I Transcription                                                                                                             0
## Rna Polymerase I Transcription Initiation                                                                                                  0
## Rna Polymerase I Transcription Termination                                                                                                 0
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  0
## Rna Polymerase Ii Transcription Termination                                                                                                0
## Rna Polymerase Iii Chain Elongation                                                                                                        0
## Rna Polymerase Iii Transcription                                                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           0
## Rna Polymerase Iii Transcription Termination                                                                                               0
## Rnd1 Gtpase Cycle                                                                                                                          0
## Rnd2 Gtpase Cycle                                                                                                                          0
## Rnd3 Gtpase Cycle                                                                                                                          0
## Robo Receptors Bind Akap5                                                                                                                  0
## Role Of Abl In Robo Slit Signaling                                                                                                         0
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              0
## Role Of Phospholipids In Phagocytosis                                                                                                      0
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            0
## Rora Activates Gene Expression                                                                                                             0
## Ros And Rns Production In Phagocytes                                                                                                       0
## Rrna Modification In The Mitochondrion                                                                                                     0
## Rrna Modification In The Nucleus And Cytosol                                                                                               0
## Rrna Processing                                                                                                                            0
## Rrna Processing In The Mitochondrion                                                                                                       0
## Rsk Activation                                                                                                                             0
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         0
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   0
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           0
## Runx2 Regulates Bone Development                                                                                                           0
## Runx2 Regulates Chondrocyte Maturation                                                                                                     0
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           0
## Runx2 Regulates Osteoblast Differentiation                                                                                                 0
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  0
## Runx3 Regulates Cdkn1a Transcription                                                                                                       0
## Runx3 Regulates Immune Response And Cell Migration                                                                                         0
## Runx3 Regulates Notch Signaling                                                                                                            0
## Runx3 Regulates P14 Arf                                                                                                                    0
## Runx3 Regulates Wnt Signaling                                                                                                              0
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                0
## S Phase                                                                                                                                    0
## Sars Cov 1 Genome Replication And Transcription                                                                                            0
## Sars Cov 1 Infection                                                                                                                       0
## Sars Cov 2 Infection                                                                                                                       0
## Sars Cov Infections                                                                                                                        0
## Scavenging By Class A Receptors                                                                                                            0
## Scavenging By Class B Receptors                                                                                                            0
## Scavenging By Class F Receptors                                                                                                            0
## Scavenging Of Heme From Plasma                                                                                                             0
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            0
## Selective Autophagy                                                                                                                        0
## Selenoamino Acid Metabolism                                                                                                                0
## Sema3a Pak Dependent Axon Repulsion                                                                                                        0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          0
## Sema4d In Semaphorin Signaling                                                                                                             0
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                0
## Semaphorin Interactions                                                                                                                    0
## Sensing Of Dna Double Strand Breaks                                                                                                        0
## Sensory Perception                                                                                                                         0
## Sensory Processing Of Sound                                                                                                                0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             0
## Separation Of Sister Chromatids                                                                                                            0
## Serine Biosynthesis                                                                                                                        0
## Serotonin And Melatonin Biosynthesis                                                                                                       0
## Serotonin Neurotransmitter Release Cycle                                                                                                   0
## Serotonin Receptors                                                                                                                        0
## Shc Mediated Cascade Fgfr1                                                                                                                 0
## Shc Mediated Cascade Fgfr3                                                                                                                 0
## Shc Mediated Cascade Fgfr4                                                                                                                 0
## Shc Related Events Triggered By Igf1r                                                                                                      0
## Shc1 Events In Erbb4 Signaling                                                                                                             0
## Signal Amplification                                                                                                                       0
## Signal Attenuation                                                                                                                         0
## Signal Regulatory Protein Family Interactions                                                                                              0
## Signaling By Activin                                                                                                                       0
## Signaling By Bmp                                                                                                                           0
## Signaling By Braf And Raf Fusions                                                                                                          0
## Signaling By Csf3 G Csf                                                                                                                    0
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   0
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                0
## Signaling By Erythropoietin                                                                                                                0
## Signaling By Fgfr                                                                                                                          0
## Signaling By Fgfr In Disease                                                                                                               0
## Signaling By Fgfr1                                                                                                                         0
## Signaling By Fgfr1 In Disease                                                                                                              0
## Signaling By Fgfr2                                                                                                                         0
## Signaling By Fgfr2 Iiia Tm                                                                                                                 0
## Signaling By Fgfr2 In Disease                                                                                                              0
## Signaling By Fgfr3                                                                                                                         0
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       0
## Signaling By Fgfr4                                                                                                                         0
## Signaling By Fgfr4 In Disease                                                                                                              0
## Signaling By Flt3 Fusion Proteins                                                                                                          0
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      0
## Signaling By Hedgehog                                                                                                                      0
## Signaling By Hippo                                                                                                                         0
## Signaling By Insulin Receptor                                                                                                              0
## Signaling By Kit In Disease                                                                                                                0
## Signaling By Leptin                                                                                                                        0
## Signaling By Lrp5 Mutants                                                                                                                  0
## Signaling By Mapk Mutants                                                                                                                  0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 0
## Signaling By Met                                                                                                                           0
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         0
## Signaling By Mras Complex Mutants                                                                                                          0
## Signaling By Mst1                                                                                                                          0
## Signaling By Nodal                                                                                                                         0
## Signaling By Notch1                                                                                                                        0
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            0
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          0
## Signaling By Notch4                                                                                                                        0
## Signaling By Ntrk2 Trkb                                                                                                                    0
## Signaling By Ntrk3 Trkc                                                                                                                    0
## Signaling By Pdgf                                                                                                                          0
## Signaling By Pdgfr In Disease                                                                                                              0
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  0
## Signaling By Retinoic Acid                                                                                                                 0
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          0
## Signaling By Rnf43 Mutants                                                                                                                 0
## Signaling By Robo Receptors                                                                                                                0
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           0
## Signaling By The B Cell Receptor Bcr                                                                                                       0
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            0
## Signaling By Vegf                                                                                                                          0
## Signaling By Wnt In Cancer                                                                                                                 0
## Signalling To Erks                                                                                                                         0
## Signalling To P38 Via Rit And Rin                                                                                                          0
## Signalling To Ras                                                                                                                          0
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       0
## Slc Mediated Transmembrane Transport                                                                                                       0
## Slc Transporter Disorders                                                                                                                  0
## Smac Xiap Regulated Apoptotic Response                                                                                                     0
## Small Interfering Rna Sirna Biogenesis                                                                                                     0
## Smooth Muscle Contraction                                                                                                                  0
## Snrnp Assembly                                                                                                                             0
## Sodium Calcium Exchangers                                                                                                                  0
## Sodium Coupled Phosphate Cotransporters                                                                                                    0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                0
## Sodium Proton Exchangers                                                                                                                   0
## Sos Mediated Signalling                                                                                                                    0
## Sperm Motility And Taxes                                                                                                                   0
## Sphingolipid De Novo Biosynthesis                                                                                                          0
## Sphingolipid Metabolism                                                                                                                    0
## Spry Regulation Of Fgf Signaling                                                                                                           0
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                0
## Stabilization Of P53                                                                                                                       0
## Stat5 Activation                                                                                                                           0
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            0
## Striated Muscle Contraction                                                                                                                0
## Sulfide Oxidation To Sulfate                                                                                                               0
## Sulfur Amino Acid Metabolism                                                                                                               0
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         0
## Sumo Is Proteolytically Processed                                                                                                          0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               0
## Sumoylation Of Chromatin Organization Proteins                                                                                             0
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     0
## Sumoylation Of Dna Replication Proteins                                                                                                    0
## Sumoylation Of Immune Response Proteins                                                                                                    0
## Sumoylation Of Intracellular Receptors                                                                                                     0
## Sumoylation Of Rna Binding Proteins                                                                                                        0
## Sumoylation Of Sumoylation Proteins                                                                                                        0
## Sumoylation Of Transcription Factors                                                                                                       0
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   0
## Suppression Of Apoptosis                                                                                                                   0
## Suppression Of Phagosomal Maturation                                                                                                       0
## Surfactant Metabolism                                                                                                                      0
## Switching Of Origins To A Post Replicative State                                                                                           0
## Synaptic Adhesion Like Molecules                                                                                                           0
## Syndecan Interactions                                                                                                                      0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      0
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   0
## Synthesis Of Bile Acids And Bile Salts                                                                                                     0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       0
## Synthesis Of Diphthamide Eef2                                                                                                              0
## Synthesis Of Dolichyl Phosphate                                                                                                            0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              0
## Synthesis Of Gdp Mannose                                                                                                                   0
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              0
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 0
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    0
## Synthesis Of Ketone Bodies                                                                                                                 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 0
## Synthesis Of Lipoxins Lx                                                                                                                   0
## Synthesis Of Pa                                                                                                                            0
## Synthesis Of Pc                                                                                                                            0
## Synthesis Of Pe                                                                                                                            0
## Synthesis Of Pg                                                                                                                            0
## Synthesis Of Pi                                                                                                                            0
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           0
## Synthesis Of Pips At The Er Membrane                                                                                                       0
## Synthesis Of Pips At The Golgi Membrane                                                                                                    0
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            0
## Synthesis Of Pips At The Plasma Membrane                                                                                                   0
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         0
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 0
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      0
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               0
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 0
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             0
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      0
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   0
## Tachykinin Receptors Bind Tachykinins                                                                                                      0
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      0
## Tandem Pore Domain Potassium Channels                                                                                                      0
## Tbc Rabgaps                                                                                                                                0
## Telomere C Strand Lagging Strand Synthesis                                                                                                 0
## Telomere C Strand Synthesis Initiation                                                                                                     0
## Telomere Extension By Telomerase                                                                                                           0
## Telomere Maintenance                                                                                                                       0
## Terminal Pathway Of Complement                                                                                                             0
## Termination Of Translesion Dna Synthesis                                                                                                   0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         0
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               0
## Tgf Beta Receptor Signaling Activates Smads                                                                                                0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    0
## The Activation Of Arylsulfatases                                                                                                           0
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       0
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               0
## The Fatty Acid Cycling Model                                                                                                               0
## The Nlrp3 Inflammasome                                                                                                                     0
## The Phototransduction Cascade                                                                                                              0
## The Retinoid Cycle In Cones Daylight Vision                                                                                                0
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              0
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            0
## Thromboxane Signalling Through Tp Receptor                                                                                                 0
## Thyroxine Biosynthesis                                                                                                                     0
## Tie2 Signaling                                                                                                                             0
## Tight Junction Interactions                                                                                                                0
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       0
## Tnfr1 Mediated Ceramide Production                                                                                                         0
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    0
## Tp53 Regulates Metabolic Genes                                                                                                             0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           0
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            0
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           0
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           0
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       0
## Traf3 Dependent Irf Activation Pathway                                                                                                     0
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               0
## Traf6 Mediated Irf7 Activation                                                                                                             0
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    0
## Traf6 Mediated Nf Kb Activation                                                                                                            0
## Trafficking Of Ampa Receptors                                                                                                              0
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             0
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        0
## Trail Signaling                                                                                                                            0
## Trans Golgi Network Vesicle Budding                                                                                                        0
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    0
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       0
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       0
## Transcription Of The Hiv Genome                                                                                                            0
## Transcriptional Regulation By E2f6                                                                                                         0
## Transcriptional Regulation By Runx1                                                                                                        0
## Transcriptional Regulation By Runx2                                                                                                        0
## Transcriptional Regulation By Runx3                                                                                                        0
## Transcriptional Regulation By Small Rnas                                                                                                   0
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       0
## Transcriptional Regulation Of Testis Differentiation                                                                                       0
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              0
## Transferrin Endocytosis And Recycling                                                                                                      0
## Translation                                                                                                                                0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             0
## Translation Of Sars Cov 1 Structural Proteins                                                                                              0
## Translation Of Sars Cov 2 Structural Proteins                                                                                              0
## Translesion Synthesis By Polh                                                                                                              0
## Translesion Synthesis By Polk                                                                                                              0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       0
## Transport And Synthesis Of Paps                                                                                                            0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   0
## Transport Of Connexons To The Plasma Membrane                                                                                              0
## Transport Of Fatty Acids                                                                                                                   0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        0
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              0
## Transport Of Mature Transcript To Cytoplasm                                                                                                0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   0
## Transport Of Nucleotide Sugars                                                                                                             0
## Transport Of Organic Anions                                                                                                                0
## Transport Of The Slbp Dependant Mature Mrna                                                                                                0
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    0
## Transport To The Golgi And Subsequent Modification                                                                                         0
## Trif Mediated Programmed Cell Death                                                                                                        0
## Triglyceride Biosynthesis                                                                                                                  0
## Triglyceride Catabolism                                                                                                                    0
## Triglyceride Metabolism                                                                                                                    0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      0
## Trna Aminoacylation                                                                                                                        0
## Trna Modification In The Mitochondrion                                                                                                     0
## Trna Modification In The Nucleus And Cytosol                                                                                               0
## Trna Processing                                                                                                                            0
## Trna Processing In The Mitochondrion                                                                                                       0
## Trna Processing In The Nucleus                                                                                                             0
## Trp Channels                                                                                                                               0
## Tryptophan Catabolism                                                                                                                      0
## Type I Hemidesmosome Assembly                                                                                                              0
## Tyrosine Catabolism                                                                                                                        0
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        0
## Ubiquinol Biosynthesis                                                                                                                     0
## Uch Proteinases                                                                                                                            0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              0
## Unwinding Of Dna                                                                                                                           0
## Uptake And Actions Of Bacterial Toxins                                                                                                     0
## Uptake And Function Of Anthrax Toxins                                                                                                      0
## Uptake And Function Of Diphtheria Toxin                                                                                                    0
## Urea Cycle                                                                                                                                 0
## Vasopressin Like Receptors                                                                                                                 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               0
## Vegf Ligand Receptor Interactions                                                                                                          0
## Vegfr2 Mediated Cell Proliferation                                                                                                         0
## Vegfr2 Mediated Vascular Permeability                                                                                                      0
## Viral Messenger Rna Synthesis                                                                                                              0
## Visual Phototransduction                                                                                                                   0
## Vitamin B1 Thiamin Metabolism                                                                                                              0
## Vitamin B2 Riboflavin Metabolism                                                                                                           0
## Vitamin B5 Pantothenate Metabolism                                                                                                         0
## Vitamin C Ascorbate Metabolism                                                                                                             0
## Vitamin D Calciferol Metabolism                                                                                                            0
## Vitamins                                                                                                                                   0
## Vldl Assembly                                                                                                                              0
## Vldl Clearance                                                                                                                             0
## Voltage Gated Potassium Channels                                                                                                           0
## Vxpx Cargo Targeting To Cilium                                                                                                             0
## Wax And Plasmalogen Biosynthesis                                                                                                           0
## Wnt Mediated Activation Of Dvl                                                                                                             0
## Xenobiotics                                                                                                                                0
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              0
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   0
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            0
## Zinc Transporters                                                                                                                          0
##                                                                                                                                      background
## Cytokine Signaling In Immune System                                                                                                       23467
## Interleukin 10 Signaling                                                                                                                  23467
## Signaling By Interleukins                                                                                                                 23467
## Chemokine Receptors Bind Chemokines                                                                                                       23467
## Interleukin 4 And Interleukin 13 Signaling                                                                                                23467
## Innate Immune System                                                                                                                      23467
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                         23467
## G Alpha I Signalling Events                                                                                                               23467
## Peptide Ligand Binding Receptors                                                                                                          23467
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              23467
## Signaling By Gpcr                                                                                                                         23467
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    23467
## Extra Nuclear Estrogen Signaling                                                                                                          23467
## Tnfs Bind Their Physiological Receptors                                                                                                   23467
## Gpcr Ligand Binding                                                                                                                       23467
## Leishmania Infection                                                                                                                      23467
## Class A 1 Rhodopsin Like Receptors                                                                                                        23467
## Cd163 Mediating An Anti Inflammatory Response                                                                                             23467
## Interleukin 1 Processing                                                                                                                  23467
## Regulated Necrosis                                                                                                                        23467
## Toll Like Receptor Cascades                                                                                                               23467
## Costimulation By The Cd28 Family                                                                                                          23467
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          23467
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              23467
## Esr Mediated Signaling                                                                                                                    23467
## Myd88 Independent Tlr4 Cascade                                                                                                            23467
## Pi3k Akt Signaling In Cancer                                                                                                              23467
## Purinergic Signaling In Leishmaniasis Infection                                                                                           23467
## Pyroptosis                                                                                                                                23467
## Negative Regulation Of The Pi3k Akt Network                                                                                               23467
## Pd 1 Signaling                                                                                                                            23467
## Senescence Associated Secretory Phenotype Sasp                                                                                            23467
## Post Translational Protein Modification                                                                                                   23467
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       23467
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                   23467
## Infectious Disease                                                                                                                        23467
## Interleukin 1 Family Signaling                                                                                                            23467
## Ngf Stimulated Transcription                                                                                                              23467
## Signaling By Nuclear Receptors                                                                                                            23467
## Intracellular Signaling By Second Messengers                                                                                              23467
## Adaptive Immune System                                                                                                                    23467
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  23467
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                  23467
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 23467
## Cellular Senescence                                                                                                                       23467
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              23467
## Programmed Cell Death                                                                                                                     23467
## Circadian Clock                                                                                                                           23467
## Interleukin 17 Signaling                                                                                                                  23467
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                        23467
## Mecp2 Regulates Transcription Factors                                                                                                     23467
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         23467
## Clec7a Inflammasome Pathway                                                                                                               23467
## Fibronectin Matrix Formation                                                                                                              23467
## Ptk6 Promotes Hif1a Stabilization                                                                                                         23467
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                      23467
## Creb Phosphorylation                                                                                                                      23467
## Neutrophil Degranulation                                                                                                                  23467
## Fcgr3a Mediated Il10 Synthesis                                                                                                            23467
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         23467
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                              23467
## Interleukin 18 Signaling                                                                                                                  23467
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                         23467
## Signaling By Receptor Tyrosine Kinases                                                                                                    23467
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                       23467
## Egfr Interacts With Phospholipase C Gamma                                                                                                 23467
## Egfr Transactivation By Gastrin                                                                                                           23467
## Mapk1 Erk2 Activation                                                                                                                     23467
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                      23467
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    23467
## Akt Phosphorylates Targets In The Nucleus                                                                                                 23467
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  23467
## Mapk3 Erk1 Activation                                                                                                                     23467
## Extracellular Matrix Organization                                                                                                         23467
## Interleukin 6 Signaling                                                                                                                   23467
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          23467
## Cd28 Dependent Vav1 Pathway                                                                                                               23467
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         23467
## Killing Mechanisms                                                                                                                        23467
## Notch2 Intracellular Domain Regulates Transcription                                                                                       23467
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  23467
## Vldlr Internalisation And Degradation                                                                                                     23467
## Dissolution Of Fibrin Clot                                                                                                                23467
## Erbb2 Activates Ptk6 Signaling                                                                                                            23467
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     23467
## Trafficking And Processing Of Endosomal Tlr                                                                                               23467
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     23467
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                   23467
## Shc1 Events In Egfr Signaling                                                                                                             23467
## Signaling By Ntrks                                                                                                                        23467
## Constitutive Signaling By Egfrviii                                                                                                        23467
## Erbb2 Regulates Cell Motility                                                                                                             23467
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  23467
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           23467
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   23467
## Hcmv Early Events                                                                                                                         23467
## C Type Lectin Receptors Clrs                                                                                                              23467
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                23467
## Grb2 Events In Erbb2 Signaling                                                                                                            23467
## Pi3k Events In Erbb2 Signaling                                                                                                            23467
## Signaling By Erbb2 Ecd Mutants                                                                                                            23467
## Sting Mediated Induction Of Host Immune Responses                                                                                         23467
## Sumoylation Of Dna Methylation Proteins                                                                                                   23467
## Clathrin Mediated Endocytosis                                                                                                             23467
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             23467
## Gab1 Signalosome                                                                                                                          23467
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     23467
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           23467
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          23467
## Ldl Clearance                                                                                                                             23467
## Pka Mediated Phosphorylation Of Creb                                                                                                      23467
## Hcmv Infection                                                                                                                            23467
## Ctla4 Inhibitory Signaling                                                                                                                23467
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                          23467
## Inflammasomes                                                                                                                             23467
## Signal Transduction By L1                                                                                                                 23467
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                23467
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         23467
## Shc1 Events In Erbb2 Signaling                                                                                                            23467
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23467
## Raf Independent Mapk1 3 Activation                                                                                                        23467
## Termination Of O Glycan Biosynthesis                                                                                                      23467
## Interleukin 6 Family Signaling                                                                                                            23467
## Cellular Responses To External Stimuli                                                                                                    23467
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Signaling By Egfr In Cancer                                                                                                               23467
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             23467
## Dectin 2 Family                                                                                                                           23467
## Signaling By Erbb2 In Cancer                                                                                                              23467
## Wnt Ligand Biogenesis And Trafficking                                                                                                     23467
## Sumoylation                                                                                                                               23467
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          23467
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     23467
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          23467
## Cell Surface Interactions At The Vascular Wall                                                                                            23467
## Downregulation Of Erbb2 Signaling                                                                                                         23467
## Ripk1 Mediated Regulated Necrosis                                                                                                         23467
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  23467
## Diseases Of Immune System                                                                                                                 23467
## Egfr Downregulation                                                                                                                       23467
## Perk Regulates Gene Expression                                                                                                            23467
## Regulation Of Mecp2 Expression And Activity                                                                                               23467
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    23467
## Activation Of Matrix Metalloproteinases                                                                                                   23467
## Cd28 Co Stimulation                                                                                                                       23467
## Plasma Lipoprotein Clearance                                                                                                              23467
## Sialic Acid Metabolism                                                                                                                    23467
## Signaling By Notch2                                                                                                                       23467
## G Alpha Q Signalling Events                                                                                                               23467
## Regulation Of Tnfr1 Signaling                                                                                                             23467
## Nod1 2 Signaling Pathway                                                                                                                  23467
## Ub Specific Processing Proteases                                                                                                          23467
## Ca Dependent Events                                                                                                                       23467
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        23467
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              23467
## Generation Of Second Messenger Molecules                                                                                                  23467
## Dag And Ip3 Signaling                                                                                                                     23467
## Transcriptional Regulation By Ventx                                                                                                       23467
## Signaling By Scf Kit                                                                                                                      23467
## Sumoylation Of Transcription Cofactors                                                                                                    23467
## Signaling By Notch                                                                                                                        23467
## Tnf Signaling                                                                                                                             23467
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                23467
## Dap12 Interactions                                                                                                                        23467
## Interleukin 12 Signaling                                                                                                                  23467
## Heme Signaling                                                                                                                            23467
## Signaling By Notch3                                                                                                                       23467
## Signaling By Egfr                                                                                                                         23467
## Signaling By Erbb2                                                                                                                        23467
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    23467
## G Protein Mediated Events                                                                                                                 23467
## Signaling By Ptk6                                                                                                                         23467
## Interleukin 12 Family Signaling                                                                                                           23467
## Nervous System Development                                                                                                                23467
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    23467
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              23467
## Ca2 Pathway                                                                                                                               23467
## Deubiquitination                                                                                                                          23467
## Ncam Signaling For Neurite Out Growth                                                                                                     23467
## O Linked Glycosylation Of Mucins                                                                                                          23467
## Signaling By Erbb4                                                                                                                        23467
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           23467
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          23467
## Transcriptional Regulation By Mecp2                                                                                                       23467
## Asymmetric Localization Of Pcp Proteins                                                                                                   23467
## Collagen Degradation                                                                                                                      23467
## Diseases Associated With O Glycosylation Of Proteins                                                                                      23467
## Dna Methylation                                                                                                                           23467
## Rna Polymerase Ii Transcription                                                                                                           23467
## Mapk Family Signaling Cascades                                                                                                            23467
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      23467
## Prc2 Methylates Histones And Dna                                                                                                          23467
## Signaling By Tgf Beta Receptor Complex                                                                                                    23467
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        23467
## Ecm Proteoglycans                                                                                                                         23467
## Hemostasis                                                                                                                                23467
## Rmts Methylate Histone Arginines                                                                                                          23467
## Fceri Mediated Mapk Activation                                                                                                            23467
## Collagen Formation                                                                                                                        23467
## Eph Ephrin Signaling                                                                                                                      23467
## Interferon Gamma Signaling                                                                                                                23467
## Opioid Signalling                                                                                                                         23467
## Pcp Ce Pathway                                                                                                                            23467
## Transcriptional Regulation Of Granulopoiesis                                                                                              23467
## Unfolded Protein Response Upr                                                                                                             23467
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      23467
## Class B 2 Secretin Family Receptors                                                                                                       23467
## Clec7a Dectin 1 Signaling                                                                                                                 23467
## Mitochondrial Biogenesis                                                                                                                  23467
## Diseases Of Programmed Cell Death                                                                                                         23467
## Interleukin 1 Signaling                                                                                                                   23467
## Signaling By Tgfb Family Members                                                                                                          23467
## Stimuli Sensing Channels                                                                                                                  23467
## Amyloid Fiber Formation                                                                                                                   23467
## O Linked Glycosylation                                                                                                                    23467
## L1cam Interactions                                                                                                                        23467
## Tcr Signaling                                                                                                                             23467
## Mhc Class Ii Antigen Presentation                                                                                                         23467
## Oxidative Stress Induced Senescence                                                                                                       23467
## Response To Elevated Platelet Cytosolic Ca2                                                                                               23467
## Death Receptor Signalling                                                                                                                 23467
## Degradation Of The Extracellular Matrix                                                                                                   23467
## Diseases Of Glycosylation                                                                                                                 23467
## Beta Catenin Independent Wnt Signaling                                                                                                    23467
## Epigenetic Regulation Of Gene Expression                                                                                                  23467
## Estrogen Dependent Gene Expression                                                                                                        23467
## Fc Epsilon Receptor Fceri Signaling                                                                                                       23467
## Ion Channel Transport                                                                                                                     23467
## Interferon Signaling                                                                                                                      23467
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                           23467
## Membrane Trafficking                                                                                                                      23467
## Tcf Dependent Signaling In Response To Wnt                                                                                                23467
## Developmental Biology                                                                                                                     23467
## Diseases Of Metabolism                                                                                                                    23467
## Platelet Activation Signaling And Aggregation                                                                                             23467
## Chromatin Modifying Enzymes                                                                                                               23467
## Transmission Across Chemical Synapses                                                                                                     23467
## Transport Of Small Molecules                                                                                                              23467
## Vesicle Mediated Transport                                                                                                                23467
## Organelle Biogenesis And Maintenance                                                                                                      23467
## Asparagine N Linked Glycosylation                                                                                                         23467
## Signaling By Wnt                                                                                                                          23467
## Transcriptional Regulation By Tp53                                                                                                        23467
## Neuronal System                                                                                                                           23467
## 2 Ltr Circle Formation                                                                                                                    23467
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           23467
## Abacavir Metabolism                                                                                                                       23467
## Abacavir Transmembrane Transport                                                                                                          23467
## Abacavir Transport And Metabolism                                                                                                         23467
## Abc Family Proteins Mediated Transport                                                                                                    23467
## Abc Transporter Disorders                                                                                                                 23467
## Abc Transporters In Lipid Homeostasis                                                                                                     23467
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          23467
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               23467
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23467
## Acetylcholine Binding And Downstream Events                                                                                               23467
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                    23467
## Acetylcholine Neurotransmitter Release Cycle                                                                                              23467
## Acetylcholine Regulates Insulin Secretion                                                                                                 23467
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                       23467
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          23467
## Activated Ntrk2 Signals Through Cdk5                                                                                                      23467
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             23467
## Activated Ntrk2 Signals Through Fyn                                                                                                       23467
## Activated Ntrk2 Signals Through Pi3k                                                                                                      23467
## Activated Ntrk2 Signals Through Ras                                                                                                       23467
## Activated Ntrk3 Signals Through Pi3k                                                                                                      23467
## Activated Ntrk3 Signals Through Ras                                                                                                       23467
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             23467
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23467
## Activation Of Ampk Downstream Of Nmdars                                                                                                   23467
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                      23467
## Activation Of Atr In Response To Replication Stress                                                                                       23467
## Activation Of Bad And Translocation To Mitochondria                                                                                       23467
## Activation Of Bh3 Only Proteins                                                                                                           23467
## Activation Of C3 And C5                                                                                                                   23467
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                               23467
## Activation Of Gene Expression By Srebf Srebp                                                                                              23467
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      23467
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    23467
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                 23467
## Activation Of Noxa And Translocation To Mitochondria                                                                                      23467
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      23467
## Activation Of Puma And Translocation To Mitochondria                                                                                      23467
## Activation Of Rac1                                                                                                                        23467
## Activation Of Rac1 Downstream Of Nmdars                                                                                                   23467
## Activation Of Ras In B Cells                                                                                                              23467
## Activation Of Smo                                                                                                                         23467
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     23467
## Activation Of The Phototransduction Cascade                                                                                               23467
## Activation Of The Pre Replicative Complex                                                                                                 23467
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              23467
## Activation Of Trka Receptors                                                                                                              23467
## Acyl Chain Remodeling Of Cl                                                                                                               23467
## Acyl Chain Remodeling Of Dag And Tag                                                                                                      23467
## Acyl Chain Remodelling Of Pc                                                                                                              23467
## Acyl Chain Remodelling Of Pe                                                                                                              23467
## Acyl Chain Remodelling Of Pg                                                                                                              23467
## Acyl Chain Remodelling Of Pi                                                                                                              23467
## Acyl Chain Remodelling Of Ps                                                                                                              23467
## Adenylate Cyclase Activating Pathway                                                                                                      23467
## Adenylate Cyclase Inhibitory Pathway                                                                                                      23467
## Adherens Junctions Interactions                                                                                                           23467
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 23467
## Adp Signalling Through P2y Purinoceptor 12                                                                                                23467
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       23467
## Adrenoceptors                                                                                                                             23467
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      23467
## Aflatoxin Activation And Detoxification                                                                                                   23467
## Aggrephagy                                                                                                                                23467
## Akt Phosphorylates Targets In The Cytosol                                                                                                 23467
## Alpha Defensins                                                                                                                           23467
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                23467
## Alpha Oxidation Of Phytanate                                                                                                              23467
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  23467
## Alternative Complement Activation                                                                                                         23467
## Amine Ligand Binding Receptors                                                                                                            23467
## Amino Acid Conjugation                                                                                                                    23467
## Amino Acid Transport Across The Plasma Membrane                                                                                           23467
## Amino Acids Regulate Mtorc1                                                                                                               23467
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                  23467
## Anchoring Fibril Formation                                                                                                                23467
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        23467
## Androgen Biosynthesis                                                                                                                     23467
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          23467
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  23467
## Antigen Processing Cross Presentation                                                                                                     23467
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                  23467
## Antimicrobial Peptides                                                                                                                    23467
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               23467
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              23467
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  23467
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         23467
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   23467
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                    23467
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                           23467
## Apoptosis                                                                                                                                 23467
## Apoptosis Induced Dna Fragmentation                                                                                                       23467
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              23467
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   23467
## Apoptotic Execution Phase                                                                                                                 23467
## Apoptotic Factor Mediated Response                                                                                                        23467
## Aquaporin Mediated Transport                                                                                                              23467
## Arachidonate Production From Dag                                                                                                          23467
## Arachidonic Acid Metabolism                                                                                                               23467
## Arms Mediated Activation                                                                                                                  23467
## Aryl Hydrocarbon Receptor Signalling                                                                                                      23467
## Aspartate And Asparagine Metabolism                                                                                                       23467
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  23467
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          23467
## Assembly Of The Hiv Virion                                                                                                                23467
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                  23467
## Assembly Of The Pre Replicative Complex                                                                                                   23467
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          23467
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 23467
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      23467
## Attachment And Entry                                                                                                                      23467
## Attachment Of Gpi Anchor To Upar                                                                                                          23467
## Attenuation Phase                                                                                                                         23467
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 23467
## Aurka Activation By Tpx2                                                                                                                  23467
## Autophagy                                                                                                                                 23467
## B Wich Complex Positively Regulates Rrna Expression                                                                                       23467
## Base Excision Repair                                                                                                                      23467
## Base Excision Repair Ap Site Formation                                                                                                    23467
## Basigin Interactions                                                                                                                      23467
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23467
## Beta Catenin Phosphorylation Cascade                                                                                                      23467
## Beta Defensins                                                                                                                            23467
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                              23467
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                        23467
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                            23467
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                         23467
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                            23467
## Beta Oxidation Of Pristanoyl Coa                                                                                                          23467
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             23467
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                              23467
## Bicarbonate Transporters                                                                                                                  23467
## Bile Acid And Bile Salt Metabolism                                                                                                        23467
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      23467
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                        23467
## Biological Oxidations                                                                                                                     23467
## Biosynthesis Of Epa Derived Spms                                                                                                          23467
## Biosynthesis Of Maresin Like Spms                                                                                                         23467
## Biosynthesis Of Maresins                                                                                                                  23467
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   23467
## Biotin Transport And Metabolism                                                                                                           23467
## Blood Group Systems Biosynthesis                                                                                                          23467
## Branched Chain Amino Acid Catabolism                                                                                                      23467
## Budding And Maturation Of Hiv Virion                                                                                                      23467
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               23467
## Butyrophilin Btn Family Interactions                                                                                                      23467
## Ca2 Activated K Channels                                                                                                                  23467
## Calcineurin Activates Nfat                                                                                                                23467
## Calcitonin Like Ligand Receptors                                                                                                          23467
## Calnexin Calreticulin Cycle                                                                                                               23467
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               23467
## Cardiac Conduction                                                                                                                        23467
## Cargo Concentration In The Er                                                                                                             23467
## Cargo Trafficking To The Periciliary Membrane                                                                                             23467
## Carnitine Metabolism                                                                                                                      23467
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          23467
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      23467
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             23467
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        23467
## Cation Coupled Chloride Cotransporters                                                                                                    23467
## Cd209 Dc Sign Signaling                                                                                                                   23467
## Cd22 Mediated Bcr Regulation                                                                                                              23467
## Cdc42 Gtpase Cycle                                                                                                                        23467
## Cdc6 Association With The Orc Origin Complex                                                                                              23467
## Cell Cell Communication                                                                                                                   23467
## Cell Cell Junction Organization                                                                                                           23467
## Cell Cycle                                                                                                                                23467
## Cell Cycle Checkpoints                                                                                                                    23467
## Cell Cycle Mitotic                                                                                                                        23467
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             23467
## Cell Extracellular Matrix Interactions                                                                                                    23467
## Cell Junction Organization                                                                                                                23467
## Cellular Hexose Transport                                                                                                                 23467
## Cellular Response To Chemical Stress                                                                                                      23467
## Cellular Response To Heat Stress                                                                                                          23467
## Cellular Response To Hypoxia                                                                                                              23467
## Cellular Response To Starvation                                                                                                           23467
## Cgmp Effects                                                                                                                              23467
## Chaperone Mediated Autophagy                                                                                                              23467
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             23467
## Chl1 Interactions                                                                                                                         23467
## Cholesterol Biosynthesis                                                                                                                  23467
## Choline Catabolism                                                                                                                        23467
## Chondroitin Sulfate Biosynthesis                                                                                                          23467
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           23467
## Chrebp Activates Metabolic Gene Expression                                                                                                23467
## Chromosome Maintenance                                                                                                                    23467
## Chylomicron Assembly                                                                                                                      23467
## Chylomicron Clearance                                                                                                                     23467
## Chylomicron Remodeling                                                                                                                    23467
## Cilium Assembly                                                                                                                           23467
## Citric Acid Cycle Tca Cycle                                                                                                               23467
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      23467
## Class I Mhc Mediated Antigen Processing Presentation                                                                                      23467
## Class I Peroxisomal Membrane Protein Import                                                                                               23467
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   23467
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        23467
## Coenzyme A Biosynthesis                                                                                                                   23467
## Cohesin Loading Onto Chromatin                                                                                                            23467
## Collagen Biosynthesis And Modifying Enzymes                                                                                               23467
## Collagen Chain Trimerization                                                                                                              23467
## Common Pathway Of Fibrin Clot Formation                                                                                                   23467
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                23467
## Complement Cascade                                                                                                                        23467
## Complex I Biogenesis                                                                                                                      23467
## Condensation Of Prometaphase Chromosomes                                                                                                  23467
## Condensation Of Prophase Chromosomes                                                                                                      23467
## Conjugation Of Benzoate With Glycine                                                                                                      23467
## Constitutive Signaling By Overexpressed Erbb2                                                                                             23467
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                23467
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          23467
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        23467
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                             23467
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           23467
## Copi Mediated Anterograde Transport                                                                                                       23467
## Copii Mediated Vesicle Transport                                                                                                          23467
## Creatine Metabolism                                                                                                                       23467
## Creation Of C4 And C2 Activators                                                                                                          23467
## Creb3 Factors Activate Genes                                                                                                              23467
## Cristae Formation                                                                                                                         23467
## Crmps In Sema3a Signaling                                                                                                                 23467
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                           23467
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                23467
## Crosslinking Of Collagen Fibrils                                                                                                          23467
## Cs Ds Degradation                                                                                                                         23467
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   23467
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          23467
## Cyclin D Associated Events In G1                                                                                                          23467
## Cyp2e1 Reactions                                                                                                                          23467
## Cytochrome C Mediated Apoptotic Response                                                                                                  23467
## Cytochrome P450 Arranged By Substrate Type                                                                                                23467
## Cytoprotection By Hmox1                                                                                                                   23467
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    23467
## Cytosolic Sulfonation Of Small Molecules                                                                                                  23467
## Cytosolic Trna Aminoacylation                                                                                                             23467
## Dap12 Signaling                                                                                                                           23467
## Darpp 32 Events                                                                                                                           23467
## Dcc Mediated Attractive Signaling                                                                                                         23467
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   23467
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  23467
## Deadenylation Dependent Mrna Decay                                                                                                        23467
## Deadenylation Of Mrna                                                                                                                     23467
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            23467
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                               23467
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               23467
## Defective Cftr Causes Cystic Fibrosis                                                                                                     23467
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                      23467
## Defective Chst3 Causes Sedcjd                                                                                                             23467
## Defective Chst6 Causes Mcdc1                                                                                                              23467
## Defective Chsy1 Causes Tpbs                                                                                                               23467
## Defective Csf2rb Causes Smdp5                                                                                                             23467
## Defective Ext2 Causes Exostoses 2                                                                                                         23467
## Defective F9 Activation                                                                                                                   23467
## Defective Factor Ix Causes Hemophilia B                                                                                                   23467
## Defective Factor Viii Causes Hemophilia A                                                                                                 23467
## Defective Lfng Causes Scdo3                                                                                                               23467
## Defective Ripk1 Mediated Regulated Necrosis                                                                                               23467
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                 23467
## Defects In Biotin Btn Metabolism                                                                                                          23467
## Defects In Cobalamin B12 Metabolism                                                                                                       23467
## Defects In Vitamin And Cofactor Metabolism                                                                                                23467
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  23467
## Defensins                                                                                                                                 23467
## Degradation Of Axin                                                                                                                       23467
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    23467
## Degradation Of Cysteine And Homocysteine                                                                                                  23467
## Degradation Of Dvl                                                                                                                        23467
## Degradation Of Gli1 By The Proteasome                                                                                                     23467
## Depolymerisation Of The Nuclear Lamina                                                                                                    23467
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          23467
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               23467
## Dermatan Sulfate Biosynthesis                                                                                                             23467
## Detoxification Of Reactive Oxygen Species                                                                                                 23467
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                             23467
## Digestion                                                                                                                                 23467
## Digestion And Absorption                                                                                                                  23467
## Digestion Of Dietary Carbohydrate                                                                                                         23467
## Digestion Of Dietary Lipid                                                                                                                23467
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            23467
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     23467
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             23467
## Diseases Associated With N Glycosylation Of Proteins                                                                                      23467
## Diseases Associated With Surfactant Metabolism                                                                                            23467
## Diseases Of Base Excision Repair                                                                                                          23467
## Diseases Of Carbohydrate Metabolism                                                                                                       23467
## Diseases Of Dna Repair                                                                                                                    23467
## Diseases Of Mismatch Repair Mmr                                                                                                           23467
## Diseases Of Mitotic Cell Cycle                                                                                                            23467
## Disinhibition Of Snare Formation                                                                                                          23467
## Disorders Of Transmembrane Transporters                                                                                                   23467
## Displacement Of Dna Glycosylase By Apex1                                                                                                  23467
## Dna Damage Bypass                                                                                                                         23467
## Dna Damage Recognition In Gg Ner                                                                                                          23467
## Dna Damage Reversal                                                                                                                       23467
## Dna Damage Telomere Stress Induced Senescence                                                                                             23467
## Dna Double Strand Break Repair                                                                                                            23467
## Dna Double Strand Break Response                                                                                                          23467
## Dna Repair                                                                                                                                23467
## Dna Replication                                                                                                                           23467
## Dna Replication Initiation                                                                                                                23467
## Dna Replication Pre Initiation                                                                                                            23467
## Dna Strand Elongation                                                                                                                     23467
## Dopamine Neurotransmitter Release Cycle                                                                                                   23467
## Dopamine Receptors                                                                                                                        23467
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   23467
## Downregulation Of Erbb4 Signaling                                                                                                         23467
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23467
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             23467
## Downstream Signal Transduction                                                                                                            23467
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        23467
## Downstream Signaling Of Activated Fgfr1                                                                                                   23467
## Downstream Signaling Of Activated Fgfr2                                                                                                   23467
## Downstream Signaling Of Activated Fgfr3                                                                                                   23467
## Downstream Signaling Of Activated Fgfr4                                                                                                   23467
## Dscam Interactions                                                                                                                        23467
## Dual Incision In Gg Ner                                                                                                                   23467
## Dual Incision In Tc Ner                                                                                                                   23467
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                               23467
## E2f Mediated Regulation Of Dna Replication                                                                                                23467
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         23467
## Early Phase Of Hiv Life Cycle                                                                                                             23467
## Effects Of Pip2 Hydrolysis                                                                                                                23467
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            23467
## Eicosanoid Ligand Binding Receptors                                                                                                       23467
## Eicosanoids                                                                                                                               23467
## Elastic Fibre Formation                                                                                                                   23467
## Electric Transmission Across Gap Junctions                                                                                                23467
## Elevation Of Cytosolic Ca2 Levels                                                                                                         23467
## Endogenous Sterols                                                                                                                        23467
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    23467
## Endosomal Vacuolar Pathway                                                                                                                23467
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          23467
## Enos Activation                                                                                                                           23467
## Epha Mediated Growth Cone Collapse                                                                                                        23467
## Ephb Mediated Forward Signaling                                                                                                           23467
## Ephrin Signaling                                                                                                                          23467
## Er Quality Control Compartment Erqc                                                                                                       23467
## Er To Golgi Anterograde Transport                                                                                                         23467
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               23467
## Erk Mapk Targets                                                                                                                          23467
## Erks Are Inactivated                                                                                                                      23467
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    23467
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                    23467
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   23467
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                       23467
## Erythropoietin Activates Ras                                                                                                              23467
## Erythropoietin Activates Stat5                                                                                                            23467
## Establishment Of Sister Chromatid Cohesion                                                                                                23467
## Estrogen Biosynthesis                                                                                                                     23467
## Estrogen Stimulated Signaling Through Prkcz                                                                                               23467
## Ethanol Oxidation                                                                                                                         23467
## Eukaryotic Translation Elongation                                                                                                         23467
## Eukaryotic Translation Initiation                                                                                                         23467
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           23467
## Extension Of Telomeres                                                                                                                    23467
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                23467
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                     23467
## Fanconi Anemia Pathway                                                                                                                    23467
## Fasl Cd95l Signaling                                                                                                                      23467
## Fatty Acid Metabolism                                                                                                                     23467
## Fatty Acids                                                                                                                               23467
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                               23467
## Fatty Acyl Coa Biosynthesis                                                                                                               23467
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                        23467
## Fceri Mediated Ca 2 Mobilization                                                                                                          23467
## Fceri Mediated Nf Kb Activation                                                                                                           23467
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                              23467
## Fcgr Activation                                                                                                                           23467
## Fertilization                                                                                                                             23467
## Fgfr1 Ligand Binding And Activation                                                                                                       23467
## Fgfr1 Mutant Receptor Activation                                                                                                          23467
## Fgfr1b Ligand Binding And Activation                                                                                                      23467
## Fgfr1c Ligand Binding And Activation                                                                                                      23467
## Fgfr2 Alternative Splicing                                                                                                                23467
## Fgfr2 Ligand Binding And Activation                                                                                                       23467
## Fgfr2 Mutant Receptor Activation                                                                                                          23467
## Fgfr2b Ligand Binding And Activation                                                                                                      23467
## Fgfr2c Ligand Binding And Activation                                                                                                      23467
## Fgfr3 Ligand Binding And Activation                                                                                                       23467
## Fgfr3b Ligand Binding And Activation                                                                                                      23467
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      23467
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                            23467
## Flt3 Signaling                                                                                                                            23467
## Flt3 Signaling By Cbl Mutants                                                                                                             23467
## Flt3 Signaling In Disease                                                                                                                 23467
## Flt3 Signaling Through Src Family Kinases                                                                                                 23467
## Folding Of Actin By Cct Tric                                                                                                              23467
## Formation Of Apoptosome                                                                                                                   23467
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 23467
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 23467
## Formation Of Incision Complex In Gg Ner                                                                                                   23467
## Formation Of Rna Pol Ii Elongation Complex                                                                                                23467
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              23467
## Formation Of Tc Ner Pre Incision Complex                                                                                                  23467
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 23467
## Formation Of The Cornified Envelope                                                                                                       23467
## Formation Of The Early Elongation Complex                                                                                                 23467
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    23467
## Formation Of Xylulose 5 Phosphate                                                                                                         23467
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                      23467
## Foxo Mediated Transcription                                                                                                               23467
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           23467
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           23467
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              23467
## Free Fatty Acid Receptors                                                                                                                 23467
## Free Fatty Acids Regulate Insulin Secretion                                                                                               23467
## Frs Mediated Fgfr1 Signaling                                                                                                              23467
## Frs Mediated Fgfr2 Signaling                                                                                                              23467
## Frs Mediated Fgfr3 Signaling                                                                                                              23467
## Frs Mediated Fgfr4 Signaling                                                                                                              23467
## Fructose Catabolism                                                                                                                       23467
## Fructose Metabolism                                                                                                                       23467
## G Alpha 12 13 Signalling Events                                                                                                           23467
## G Alpha S Signalling Events                                                                                                               23467
## G Alpha Z Signalling Events                                                                                                               23467
## G Beta Gamma Signalling Through Cdc42                                                                                                     23467
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 23467
## G Protein Activation                                                                                                                      23467
## G Protein Beta Gamma Signalling                                                                                                           23467
## G0 And Early G1                                                                                                                           23467
## G1 S Dna Damage Checkpoints                                                                                                               23467
## G1 S Specific Transcription                                                                                                               23467
## G2 M Checkpoints                                                                                                                          23467
## G2 M Dna Damage Checkpoint                                                                                                                23467
## G2 M Dna Replication Checkpoint                                                                                                           23467
## G2 Phase                                                                                                                                  23467
## Gaba B Receptor Activation                                                                                                                23467
## Gaba Receptor Activation                                                                                                                  23467
## Gaba Synthesis Release Reuptake And Degradation                                                                                           23467
## Galactose Catabolism                                                                                                                      23467
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       23467
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     23467
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   23467
## Gap Junction Assembly                                                                                                                     23467
## Gap Junction Degradation                                                                                                                  23467
## Gap Junction Trafficking And Regulation                                                                                                   23467
## Gdp Fucose Biosynthesis                                                                                                                   23467
## Gene Silencing By Rna                                                                                                                     23467
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                               23467
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           23467
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  23467
## Glucagon Signaling In Metabolic Regulation                                                                                                23467
## Glucagon Type Ligand Receptors                                                                                                            23467
## Glucocorticoid Biosynthesis                                                                                                               23467
## Gluconeogenesis                                                                                                                           23467
## Glucose Metabolism                                                                                                                        23467
## Glucuronidation                                                                                                                           23467
## Glutamate And Glutamine Metabolism                                                                                                        23467
## Glutamate Neurotransmitter Release Cycle                                                                                                  23467
## Glutathione Conjugation                                                                                                                   23467
## Glutathione Synthesis And Recycling                                                                                                       23467
## Glycerophospholipid Biosynthesis                                                                                                          23467
## Glycerophospholipid Catabolism                                                                                                            23467
## Glycogen Breakdown Glycogenolysis                                                                                                         23467
## Glycogen Metabolism                                                                                                                       23467
## Glycogen Storage Diseases                                                                                                                 23467
## Glycogen Synthesis                                                                                                                        23467
## Glycolysis                                                                                                                                23467
## Glycosaminoglycan Metabolism                                                                                                              23467
## Glycosphingolipid Metabolism                                                                                                              23467
## Glyoxylate Metabolism And Glycine Degradation                                                                                             23467
## Golgi Associated Vesicle Biogenesis                                                                                                       23467
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       23467
## Golgi To Er Retrograde Transport                                                                                                          23467
## Gp1b Ix V Activation Signalling                                                                                                           23467
## Gpvi Mediated Activation Cascade                                                                                                          23467
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 23467
## Grb7 Events In Erbb2 Signaling                                                                                                            23467
## Growth Hormone Receptor Signaling                                                                                                         23467
## Hats Acetylate Histones                                                                                                                   23467
## Hcmv Late Events                                                                                                                          23467
## Hdacs Deacetylate Histones                                                                                                                23467
## Hdl Assembly                                                                                                                              23467
## Hdl Clearance                                                                                                                             23467
## Hdl Remodeling                                                                                                                            23467
## Hdms Demethylate Histones                                                                                                                 23467
## Hdr Through Homologous Recombination Hrr                                                                                                  23467
## Hdr Through Mmej Alt Nhej                                                                                                                 23467
## Hdr Through Single Strand Annealing Ssa                                                                                                   23467
## Hedgehog Ligand Biogenesis                                                                                                                23467
## Hedgehog Off State                                                                                                                        23467
## Hedgehog On State                                                                                                                         23467
## Heme Biosynthesis                                                                                                                         23467
## Heme Degradation                                                                                                                          23467
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 23467
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                23467
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   23467
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                    23467
## Histidine Catabolism                                                                                                                      23467
## Hiv Elongation Arrest And Recovery                                                                                                        23467
## Hiv Infection                                                                                                                             23467
## Hiv Life Cycle                                                                                                                            23467
## Hiv Transcription Elongation                                                                                                              23467
## Hiv Transcription Initiation                                                                                                              23467
## Homologous Dna Pairing And Strand Exchange                                                                                                23467
## Homology Directed Repair                                                                                                                  23467
## Hormone Ligand Binding Receptors                                                                                                          23467
## Host Interactions Of Hiv Factors                                                                                                          23467
## Hs Gag Biosynthesis                                                                                                                       23467
## Hs Gag Degradation                                                                                                                        23467
## Hsf1 Activation                                                                                                                           23467
## Hsf1 Dependent Transactivation                                                                                                            23467
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   23467
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                      23467
## Hyaluronan Biosynthesis And Export                                                                                                        23467
## Hyaluronan Metabolism                                                                                                                     23467
## Hyaluronan Uptake And Degradation                                                                                                         23467
## Hydrolysis Of Lpc                                                                                                                         23467
## Ikba Variant Leads To Eda Id                                                                                                              23467
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           23467
## Inactivation Of Cdc42 And Rac1                                                                                                            23467
## Inactivation Of Csf3 G Csf Signaling                                                                                                      23467
## Incretin Synthesis Secretion And Inactivation                                                                                             23467
## Infection With Mycobacterium Tuberculosis                                                                                                 23467
## Influenza Infection                                                                                                                       23467
## Inhibition Of Dna Recombination At Telomere                                                                                               23467
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           23467
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               23467
## Initial Triggering Of Complement                                                                                                          23467
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             23467
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                             23467
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              23467
## Inositol Phosphate Metabolism                                                                                                             23467
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               23467
## Insulin Processing                                                                                                                        23467
## Insulin Receptor Recycling                                                                                                                23467
## Insulin Receptor Signalling Cascade                                                                                                       23467
## Integration Of Energy Metabolism                                                                                                          23467
## Integration Of Provirus                                                                                                                   23467
## Integrin Cell Surface Interactions                                                                                                        23467
## Integrin Signaling                                                                                                                        23467
## Interaction Between L1 And Ankyrins                                                                                                       23467
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     23467
## Interactions Of Rev With Host Cellular Proteins                                                                                           23467
## Interactions Of Vpr With Host Cellular Proteins                                                                                           23467
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        23467
## Interferon Alpha Beta Signaling                                                                                                           23467
## Interleukin 15 Signaling                                                                                                                  23467
## Interleukin 2 Family Signaling                                                                                                            23467
## Interleukin 2 Signaling                                                                                                                   23467
## Interleukin 20 Family Signaling                                                                                                           23467
## Interleukin 21 Signaling                                                                                                                  23467
## Interleukin 23 Signaling                                                                                                                  23467
## Interleukin 27 Signaling                                                                                                                  23467
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          23467
## Interleukin 35 Signalling                                                                                                                 23467
## Interleukin 36 Pathway                                                                                                                    23467
## Interleukin 37 Signaling                                                                                                                  23467
## Interleukin 7 Signaling                                                                                                                   23467
## Interleukin 9 Signaling                                                                                                                   23467
## Interleukin Receptor Shc Signaling                                                                                                        23467
## Intestinal Absorption                                                                                                                     23467
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                            23467
## Intra Golgi Traffic                                                                                                                       23467
## Intraflagellar Transport                                                                                                                  23467
## Intrinsic Pathway For Apoptosis                                                                                                           23467
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23467
## Inwardly Rectifying K Channels                                                                                                            23467
## Ion Homeostasis                                                                                                                           23467
## Ion Transport By P Type Atpases                                                                                                           23467
## Ionotropic Activity Of Kainate Receptors                                                                                                  23467
## Irak1 Recruits Ikk Complex                                                                                                                23467
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 23467
## Irak4 Deficiency Tlr2 4                                                                                                                   23467
## Ire1alpha Activates Chaperones                                                                                                            23467
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                    23467
## Iron Uptake And Transport                                                                                                                 23467
## Irs Activation                                                                                                                            23467
## Irs Mediated Signalling                                                                                                                   23467
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         23467
## Josephin Domain Dubs                                                                                                                      23467
## Keratan Sulfate Biosynthesis                                                                                                              23467
## Keratan Sulfate Degradation                                                                                                               23467
## Keratan Sulfate Keratin Metabolism                                                                                                        23467
## Keratinization                                                                                                                            23467
## Ketone Body Metabolism                                                                                                                    23467
## Kinesins                                                                                                                                  23467
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    23467
## Lagging Strand Synthesis                                                                                                                  23467
## Laminin Interactions                                                                                                                      23467
## Late Endosomal Microautophagy                                                                                                             23467
## Lectin Pathway Of Complement Activation                                                                                                   23467
## Leukotriene Receptors                                                                                                                     23467
## Lgi Adam Interactions                                                                                                                     23467
## Ligand Receptor Interactions                                                                                                              23467
## Linoleic Acid La Metabolism                                                                                                               23467
## Lipid Particle Organization                                                                                                               23467
## Lipophagy                                                                                                                                 23467
## Listeria Monocytogenes Entry Into Host Cells                                                                                              23467
## Long Term Potentiation                                                                                                                    23467
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                23467
## Loss Of Function Of Smad2 3 In Cancer                                                                                                     23467
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                    23467
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                    23467
## Ltc4 Cysltr Mediated Il4 Production                                                                                                       23467
## Lysine Catabolism                                                                                                                         23467
## Lysosome Vesicle Biogenesis                                                                                                               23467
## Lysosphingolipid And Lpa Receptors                                                                                                        23467
## M Phase                                                                                                                                   23467
## Map2k And Mapk Activation                                                                                                                 23467
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  23467
## Mapk6 Mapk4 Signaling                                                                                                                     23467
## Mastl Facilitates Mitotic Progression                                                                                                     23467
## Maturation Of Nucleoprotein                                                                                                               23467
## Maturation Of Protein 3a                                                                                                                  23467
## Maturation Of Sars Cov 1 Spike Protein                                                                                                    23467
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    23467
## Meiosis                                                                                                                                   23467
## Meiotic Recombination                                                                                                                     23467
## Meiotic Synapsis                                                                                                                          23467
## Melanin Biosynthesis                                                                                                                      23467
## Met Activates Pi3k Akt Signaling                                                                                                          23467
## Met Activates Ptk2 Signaling                                                                                                              23467
## Met Activates Ptpn11                                                                                                                      23467
## Met Activates Rap1 And Rac1                                                                                                               23467
## Met Activates Ras Signaling                                                                                                               23467
## Met Interacts With Tns Proteins                                                                                                           23467
## Met Promotes Cell Motility                                                                                                                23467
## Met Receptor Activation                                                                                                                   23467
## Met Receptor Recycling                                                                                                                    23467
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       23467
## Metabolism Of Amine Derived Hormones                                                                                                      23467
## Metabolism Of Amino Acids And Derivatives                                                                                                 23467
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             23467
## Metabolism Of Carbohydrates                                                                                                               23467
## Metabolism Of Cofactors                                                                                                                   23467
## Metabolism Of Fat Soluble Vitamins                                                                                                        23467
## Metabolism Of Folate And Pterines                                                                                                         23467
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                          23467
## Metabolism Of Lipids                                                                                                                      23467
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 23467
## Metabolism Of Nucleotides                                                                                                                 23467
## Metabolism Of Polyamines                                                                                                                  23467
## Metabolism Of Porphyrins                                                                                                                  23467
## Metabolism Of Rna                                                                                                                         23467
## Metabolism Of Steroid Hormones                                                                                                            23467
## Metabolism Of Steroids                                                                                                                    23467
## Metabolism Of Vitamins And Cofactors                                                                                                      23467
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                        23467
## Metal Ion Slc Transporters                                                                                                                23467
## Metal Sequestration By Antimicrobial Proteins                                                                                             23467
## Metalloprotease Dubs                                                                                                                      23467
## Metallothioneins Bind Metals                                                                                                              23467
## Methionine Salvage Pathway                                                                                                                23467
## Methylation                                                                                                                               23467
## Microrna Mirna Biogenesis                                                                                                                 23467
## Mineralocorticoid Biosynthesis                                                                                                            23467
## Miro Gtpase Cycle                                                                                                                         23467
## Miscellaneous Substrates                                                                                                                  23467
## Miscellaneous Transport And Binding Events                                                                                                23467
## Mismatch Repair                                                                                                                           23467
## Mitochondrial Calcium Ion Transport                                                                                                       23467
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   23467
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          23467
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                        23467
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              23467
## Mitochondrial Protein Import                                                                                                              23467
## Mitochondrial Translation                                                                                                                 23467
## Mitochondrial Trna Aminoacylation                                                                                                         23467
## Mitochondrial Uncoupling                                                                                                                  23467
## Mitophagy                                                                                                                                 23467
## Mitotic G1 Phase And G1 S Transition                                                                                                      23467
## Mitotic G2 G2 M Phases                                                                                                                    23467
## Mitotic Metaphase And Anaphase                                                                                                            23467
## Mitotic Prometaphase                                                                                                                      23467
## Mitotic Prophase                                                                                                                          23467
## Mitotic Spindle Checkpoint                                                                                                                23467
## Mitotic Telophase Cytokinesis                                                                                                             23467
## Modulation By Mtb Of Host Immune System                                                                                                   23467
## Molecules Associated With Elastic Fibres                                                                                                  23467
## Molybdenum Cofactor Biosynthesis                                                                                                          23467
## Mrna Capping                                                                                                                              23467
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      23467
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      23467
## Mrna Editing                                                                                                                              23467
## Mrna Editing C To U Conversion                                                                                                            23467
## Mrna Splicing                                                                                                                             23467
## Mrna Splicing Minor Pathway                                                                                                               23467
## Mtor Signalling                                                                                                                           23467
## Mtorc1 Mediated Signalling                                                                                                                23467
## Mucopolysaccharidoses                                                                                                                     23467
## Multifunctional Anion Exchangers                                                                                                          23467
## Muscarinic Acetylcholine Receptors                                                                                                        23467
## Muscle Contraction                                                                                                                        23467
## Myoclonic Epilepsy Of Lafora                                                                                                              23467
## Myogenesis                                                                                                                                23467
## N Glycan Antennae Elongation                                                                                                              23467
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    23467
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                         23467
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               23467
## Na Cl Dependent Neurotransmitter Transporters                                                                                             23467
## Nade Modulates Death Signalling                                                                                                           23467
## Ncam1 Interactions                                                                                                                        23467
## Nectin Necl Trans Heterodimerization                                                                                                      23467
## Neddylation                                                                                                                               23467
## Nef And Signal Transduction                                                                                                               23467
## Nef Mediated Cd4 Down Regulation                                                                                                          23467
## Nef Mediated Cd8 Down Regulation                                                                                                          23467
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                23467
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            23467
## Negative Epigenetic Regulation Of Rrna Expression                                                                                         23467
## Negative Feedback Regulation Of Mapk Pathway                                                                                              23467
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                23467
## Negative Regulation Of Fgfr1 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr2 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr3 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr4 Signaling                                                                                                    23467
## Negative Regulation Of Flt3                                                                                                               23467
## Negative Regulation Of Mapk Pathway                                                                                                       23467
## Negative Regulation Of Met Activity                                                                                                       23467
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       23467
## Negative Regulation Of Notch4 Signaling                                                                                                   23467
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                23467
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              23467
## Nephrin Family Interactions                                                                                                               23467
## Netrin 1 Signaling                                                                                                                        23467
## Netrin Mediated Repulsion Signals                                                                                                         23467
## Neurexins And Neuroligins                                                                                                                 23467
## Neurofascin Interactions                                                                                                                  23467
## Neurotoxicity Of Clostridium Toxins                                                                                                       23467
## Neurotransmitter Clearance                                                                                                                23467
## Neurotransmitter Release Cycle                                                                                                            23467
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  23467
## Nf Kb Is Activated And Signals Survival                                                                                                   23467
## Ngf Independant Trka Activation                                                                                                           23467
## Nicotinamide Salvaging                                                                                                                    23467
## Nicotinate Metabolism                                                                                                                     23467
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 23467
## Non Integrin Membrane Ecm Interactions                                                                                                    23467
## Noncanonical Activation Of Notch3                                                                                                         23467
## Nonhomologous End Joining Nhej                                                                                                            23467
## Nonsense Mediated Decay Nmd                                                                                                               23467
## Norepinephrine Neurotransmitter Release Cycle                                                                                             23467
## Nostrin Mediated Enos Trafficking                                                                                                         23467
## Notch Hlh Transcription Pathway                                                                                                           23467
## Notch1 Intracellular Domain Regulates Transcription                                                                                       23467
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Notch3 Intracellular Domain Regulates Transcription                                                                                       23467
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Notch4 Intracellular Domain Regulates Transcription                                                                                       23467
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                            23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                          23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                     23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                          23467
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           23467
## Nrage Signals Death Through Jnk                                                                                                           23467
## Nrcam Interactions                                                                                                                        23467
## Nrif Signals Cell Death From The Nucleus                                                                                                  23467
## Ns1 Mediated Effects On Host Pathways                                                                                                     23467
## Ntrk2 Activates Rac1                                                                                                                      23467
## Nuclear Envelope Breakdown                                                                                                                23467
## Nuclear Envelope Ne Reassembly                                                                                                            23467
## Nuclear Import Of Rev Protein                                                                                                             23467
## Nuclear Pore Complex Npc Disassembly                                                                                                      23467
## Nuclear Receptor Transcription Pathway                                                                                                    23467
## Nuclear Signaling By Erbb4                                                                                                                23467
## Nucleobase Biosynthesis                                                                                                                   23467
## Nucleobase Catabolism                                                                                                                     23467
## Nucleotide Excision Repair                                                                                                                23467
## Nucleotide Like Purinergic Receptors                                                                                                      23467
## Nucleotide Salvage                                                                                                                        23467
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         23467
## Oas Antiviral Response                                                                                                                    23467
## Olfactory Signaling Pathway                                                                                                               23467
## Oncogene Induced Senescence                                                                                                               23467
## Oncogenic Mapk Signaling                                                                                                                  23467
## Opsins                                                                                                                                    23467
## Orc1 Removal From Chromatin                                                                                                               23467
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                   23467
## Organic Anion Transport                                                                                                                   23467
## Organic Anion Transporters                                                                                                                23467
## Organic Cation Anion Zwitterion Transport                                                                                                 23467
## Organic Cation Transport                                                                                                                  23467
## Other Interleukin Signaling                                                                                                               23467
## Other Semaphorin Interactions                                                                                                             23467
## Ovarian Tumor Domain Proteases                                                                                                            23467
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           23467
## P2y Receptors                                                                                                                             23467
## P38mapk Events                                                                                                                            23467
## P75 Ntr Receptor Mediated Signalling                                                                                                      23467
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                            23467
## P75ntr Recruits Signalling Complexes                                                                                                      23467
## P75ntr Regulates Axonogenesis                                                                                                             23467
## P75ntr Signals Via Nf Kb                                                                                                                  23467
## Parasite Infection                                                                                                                        23467
## Passive Transport By Aquaporins                                                                                                           23467
## Pcna Dependent Long Patch Base Excision Repair                                                                                            23467
## Pecam1 Interactions                                                                                                                       23467
## Pentose Phosphate Pathway                                                                                                                 23467
## Peptide Hormone Biosynthesis                                                                                                              23467
## Peptide Hormone Metabolism                                                                                                                23467
## Peroxisomal Lipid Metabolism                                                                                                              23467
## Peroxisomal Protein Import                                                                                                                23467
## Pexophagy                                                                                                                                 23467
## Phase 0 Rapid Depolarisation                                                                                                              23467
## Phase 1 Inactivation Of Fast Na Channels                                                                                                  23467
## Phase 2 Plateau Phase                                                                                                                     23467
## Phase 3 Rapid Repolarisation                                                                                                              23467
## Phase 4 Resting Membrane Potential                                                                                                        23467
## Phase I Functionalization Of Compounds                                                                                                    23467
## Phase Ii Conjugation Of Compounds                                                                                                         23467
## Phenylalanine And Tyrosine Metabolism                                                                                                     23467
## Phenylalanine Metabolism                                                                                                                  23467
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                             23467
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                23467
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    23467
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    23467
## Phospholipid Metabolism                                                                                                                   23467
## Phosphorylation Of Emi1                                                                                                                   23467
## Phosphorylation Of The Apc C                                                                                                              23467
## Physiological Factors                                                                                                                     23467
## Pi 3k Cascade Fgfr1                                                                                                                       23467
## Pi 3k Cascade Fgfr2                                                                                                                       23467
## Pi 3k Cascade Fgfr3                                                                                                                       23467
## Pi 3k Cascade Fgfr4                                                                                                                       23467
## Pi Metabolism                                                                                                                             23467
## Pi3k Akt Activation                                                                                                                       23467
## Pi3k Events In Erbb4 Signaling                                                                                                            23467
## Pi5p Regulates Tp53 Acetylation                                                                                                           23467
## Pink1 Prkn Mediated Mitophagy                                                                                                             23467
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     23467
## Pka Activation In Glucagon Signalling                                                                                                     23467
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                     23467
## Pkmts Methylate Histone Lysines                                                                                                           23467
## Plasma Lipoprotein Assembly                                                                                                               23467
## Plasma Lipoprotein Remodeling                                                                                                             23467
## Platelet Adhesion To Exposed Collagen                                                                                                     23467
## Platelet Aggregation Plug Formation                                                                                                       23467
## Platelet Calcium Homeostasis                                                                                                              23467
## Platelet Homeostasis                                                                                                                      23467
## Platelet Sensitization By Ldl                                                                                                             23467
## Polb Dependent Long Patch Base Excision Repair                                                                                            23467
## Polo Like Kinase Mediated Events                                                                                                          23467
## Polymerase Switching                                                                                                                      23467
## Polymerase Switching On The C Strand Of The Telomere                                                                                      23467
## Positive Epigenetic Regulation Of Rrna Expression                                                                                         23467
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23467
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        23467
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          23467
## Potassium Channels                                                                                                                        23467
## Potential Therapeutics For Sars                                                                                                           23467
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            23467
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           23467
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                  23467
## Pre Notch Expression And Processing                                                                                                       23467
## Pre Notch Processing In Golgi                                                                                                             23467
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                         23467
## Pregnenolone Biosynthesis                                                                                                                 23467
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    23467
## Presynaptic Function Of Kainate Receptors                                                                                                 23467
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                 23467
## Processing And Activation Of Sumo                                                                                                         23467
## Processing Of Capped Intron Containing Pre Mrna                                                                                           23467
## Processing Of Capped Intronless Pre Mrna                                                                                                  23467
## Processing Of Dna Double Strand Break Ends                                                                                                23467
## Processing Of Intronless Pre Mrnas                                                                                                        23467
## Processing Of Smdt1                                                                                                                       23467
## Processive Synthesis On The C Strand Of The Telomere                                                                                      23467
## Processive Synthesis On The Lagging Strand                                                                                                23467
## Prolactin Receptor Signaling                                                                                                              23467
## Prolonged Erk Activation Events                                                                                                           23467
## Propionyl Coa Catabolism                                                                                                                  23467
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     23467
## Prostanoid Ligand Receptors                                                                                                               23467
## Protein Folding                                                                                                                           23467
## Protein Localization                                                                                                                      23467
## Protein Methylation                                                                                                                       23467
## Protein Protein Interactions At Synapses                                                                                                  23467
## Protein Repair                                                                                                                            23467
## Protein Ubiquitination                                                                                                                    23467
## Proton Coupled Monocarboxylate Transport                                                                                                  23467
## Pten Regulation                                                                                                                           23467
## Ptk6 Expression                                                                                                                           23467
## Ptk6 Regulates Cell Cycle                                                                                                                 23467
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                        23467
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     23467
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                     23467
## Purine Catabolism                                                                                                                         23467
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          23467
## Purine Salvage                                                                                                                            23467
## Pyrimidine Catabolism                                                                                                                     23467
## Pyrimidine Salvage                                                                                                                        23467
## Pyruvate Metabolism                                                                                                                       23467
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             23467
## Ra Biosynthesis Pathway                                                                                                                   23467
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     23467
## Rab Geranylgeranylation                                                                                                                   23467
## Rab Regulation Of Trafficking                                                                                                             23467
## Rac1 Gtpase Cycle                                                                                                                         23467
## Rac2 Gtpase Cycle                                                                                                                         23467
## Rac3 Gtpase Cycle                                                                                                                         23467
## Raf Activation                                                                                                                            23467
## Rap1 Signalling                                                                                                                           23467
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      23467
## Ras Processing                                                                                                                            23467
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                 23467
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              23467
## Receptor Mediated Mitophagy                                                                                                               23467
## Receptor Type Tyrosine Protein Phosphatases                                                                                               23467
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    23467
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          23467
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  23467
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                23467
## Recycling Of Bile Acids And Salts                                                                                                         23467
## Recycling Of Eif2 Gdp                                                                                                                     23467
## Recycling Pathway Of L1                                                                                                                   23467
## Reduction Of Cytosolic Ca Levels                                                                                                          23467
## Reelin Signalling Pathway                                                                                                                 23467
## Regulated Proteolysis Of P75ntr                                                                                                           23467
## Regulation By C Flip                                                                                                                      23467
## Regulation Of Bach1 Activity                                                                                                              23467
## Regulation Of Beta Cell Development                                                                                                       23467
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     23467
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               23467
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                        23467
## Regulation Of Expression Of Slits And Robos                                                                                               23467
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                23467
## Regulation Of Fzd By Ubiquitination                                                                                                       23467
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 23467
## Regulation Of Gene Expression In Beta Cells                                                                                               23467
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                         23467
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                             23467
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        23467
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               23467
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          23467
## Regulation Of Hmox1 Expression And Activity                                                                                               23467
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           23467
## Regulation Of Ifna Signaling                                                                                                              23467
## Regulation Of Ifng Signaling                                                                                                              23467
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    23467
## Regulation Of Insulin Secretion                                                                                                           23467
## Regulation Of Kit Signaling                                                                                                               23467
## Regulation Of Lipid Metabolism By Pparalpha                                                                                               23467
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  23467
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       23467
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            23467
## Regulation Of Pten Gene Transcription                                                                                                     23467
## Regulation Of Pten Localization                                                                                                           23467
## Regulation Of Pten Mrna Translation                                                                                                       23467
## Regulation Of Pten Stability And Activity                                                                                                 23467
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          23467
## Regulation Of Ras By Gaps                                                                                                                 23467
## Regulation Of Runx1 Expression And Activity                                                                                               23467
## Regulation Of Runx2 Expression And Activity                                                                                               23467
## Regulation Of Runx3 Expression And Activity                                                                                               23467
## Regulation Of Signaling By Cbl                                                                                                            23467
## Regulation Of Signaling By Nodal                                                                                                          23467
## Regulation Of Tlr By Endogenous Ligand                                                                                                    23467
## Regulation Of Tp53 Activity                                                                                                               23467
## Regulation Of Tp53 Activity Through Acetylation                                                                                           23467
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           23467
## Regulation Of Tp53 Activity Through Methylation                                                                                           23467
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       23467
## Regulation Of Tp53 Expression And Degradation                                                                                             23467
## Relaxin Receptors                                                                                                                         23467
## Release Of Apoptotic Factors From The Mitochondria                                                                                        23467
## Release Of Hh Np From The Secreting Cell                                                                                                  23467
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     23467
## Repression Of Wnt Target Genes                                                                                                            23467
## Reproduction                                                                                                                              23467
## Resolution Of Abasic Sites Ap Sites                                                                                                       23467
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              23467
## Resolution Of D Loop Structures                                                                                                           23467
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         23467
## Resolution Of Sister Chromatid Cohesion                                                                                                   23467
## Respiratory Electron Transport                                                                                                            23467
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                          23467
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                23467
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                         23467
## Response Of Mtb To Phagocytosis                                                                                                           23467
## Response To Metal Ions                                                                                                                    23467
## Ret Signaling                                                                                                                             23467
## Retinoid Cycle Disease Events                                                                                                             23467
## Retrograde Neurotrophin Signalling                                                                                                        23467
## Retrograde Transport At The Trans Golgi Network                                                                                           23467
## Reversible Hydration Of Carbon Dioxide                                                                                                    23467
## Rho Gtpase Cycle                                                                                                                          23467
## Rho Gtpase Effectors                                                                                                                      23467
## Rho Gtpases Activate Cit                                                                                                                  23467
## Rho Gtpases Activate Formins                                                                                                              23467
## Rho Gtpases Activate Iqgaps                                                                                                               23467
## Rho Gtpases Activate Ktn1                                                                                                                 23467
## Rho Gtpases Activate Nadph Oxidases                                                                                                       23467
## Rho Gtpases Activate Paks                                                                                                                 23467
## Rho Gtpases Activate Pkns                                                                                                                 23467
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                              23467
## Rho Gtpases Activate Rocks                                                                                                                23467
## Rho Gtpases Activate Wasps And Waves                                                                                                      23467
## Rhoa Gtpase Cycle                                                                                                                         23467
## Rhob Gtpase Cycle                                                                                                                         23467
## Rhobtb Gtpase Cycle                                                                                                                       23467
## Rhobtb1 Gtpase Cycle                                                                                                                      23467
## Rhobtb2 Gtpase Cycle                                                                                                                      23467
## Rhobtb3 Atpase Cycle                                                                                                                      23467
## Rhoc Gtpase Cycle                                                                                                                         23467
## Rhod Gtpase Cycle                                                                                                                         23467
## Rhof Gtpase Cycle                                                                                                                         23467
## Rhog Gtpase Cycle                                                                                                                         23467
## Rhoh Gtpase Cycle                                                                                                                         23467
## Rhoj Gtpase Cycle                                                                                                                         23467
## Rhoq Gtpase Cycle                                                                                                                         23467
## Rhot1 Gtpase Cycle                                                                                                                        23467
## Rhou Gtpase Cycle                                                                                                                         23467
## Rhov Gtpase Cycle                                                                                                                         23467
## Rna Polymerase I Promoter Escape                                                                                                          23467
## Rna Polymerase I Transcription                                                                                                            23467
## Rna Polymerase I Transcription Initiation                                                                                                 23467
## Rna Polymerase I Transcription Termination                                                                                                23467
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 23467
## Rna Polymerase Ii Transcription Termination                                                                                               23467
## Rna Polymerase Iii Chain Elongation                                                                                                       23467
## Rna Polymerase Iii Transcription                                                                                                          23467
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          23467
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          23467
## Rna Polymerase Iii Transcription Termination                                                                                              23467
## Rnd1 Gtpase Cycle                                                                                                                         23467
## Rnd2 Gtpase Cycle                                                                                                                         23467
## Rnd3 Gtpase Cycle                                                                                                                         23467
## Robo Receptors Bind Akap5                                                                                                                 23467
## Role Of Abl In Robo Slit Signaling                                                                                                        23467
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             23467
## Role Of Phospholipids In Phagocytosis                                                                                                     23467
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           23467
## Rora Activates Gene Expression                                                                                                            23467
## Ros And Rns Production In Phagocytes                                                                                                      23467
## Rrna Modification In The Mitochondrion                                                                                                    23467
## Rrna Modification In The Nucleus And Cytosol                                                                                              23467
## Rrna Processing                                                                                                                           23467
## Rrna Processing In The Mitochondrion                                                                                                      23467
## Rsk Activation                                                                                                                            23467
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 23467
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        23467
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                  23467
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                               23467
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     23467
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                          23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                       23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                       23467
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                  23467
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                          23467
## Runx2 Regulates Bone Development                                                                                                          23467
## Runx2 Regulates Chondrocyte Maturation                                                                                                    23467
## Runx2 Regulates Genes Involved In Cell Migration                                                                                          23467
## Runx2 Regulates Osteoblast Differentiation                                                                                                23467
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                 23467
## Runx3 Regulates Cdkn1a Transcription                                                                                                      23467
## Runx3 Regulates Immune Response And Cell Migration                                                                                        23467
## Runx3 Regulates Notch Signaling                                                                                                           23467
## Runx3 Regulates P14 Arf                                                                                                                   23467
## Runx3 Regulates Wnt Signaling                                                                                                             23467
## Runx3 Regulates Yap1 Mediated Transcription                                                                                               23467
## S Phase                                                                                                                                   23467
## Sars Cov 1 Genome Replication And Transcription                                                                                           23467
## Sars Cov 1 Infection                                                                                                                      23467
## Sars Cov 2 Infection                                                                                                                      23467
## Sars Cov Infections                                                                                                                       23467
## Scavenging By Class A Receptors                                                                                                           23467
## Scavenging By Class B Receptors                                                                                                           23467
## Scavenging By Class F Receptors                                                                                                           23467
## Scavenging Of Heme From Plasma                                                                                                            23467
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  23467
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           23467
## Selective Autophagy                                                                                                                       23467
## Selenoamino Acid Metabolism                                                                                                               23467
## Sema3a Pak Dependent Axon Repulsion                                                                                                       23467
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         23467
## Sema4d In Semaphorin Signaling                                                                                                            23467
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    23467
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                               23467
## Semaphorin Interactions                                                                                                                   23467
## Sensing Of Dna Double Strand Breaks                                                                                                       23467
## Sensory Perception                                                                                                                        23467
## Sensory Processing Of Sound                                                                                                               23467
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            23467
## Separation Of Sister Chromatids                                                                                                           23467
## Serine Biosynthesis                                                                                                                       23467
## Serotonin And Melatonin Biosynthesis                                                                                                      23467
## Serotonin Neurotransmitter Release Cycle                                                                                                  23467
## Serotonin Receptors                                                                                                                       23467
## Shc Mediated Cascade Fgfr1                                                                                                                23467
## Shc Mediated Cascade Fgfr3                                                                                                                23467
## Shc Mediated Cascade Fgfr4                                                                                                                23467
## Shc Related Events Triggered By Igf1r                                                                                                     23467
## Shc1 Events In Erbb4 Signaling                                                                                                            23467
## Signal Amplification                                                                                                                      23467
## Signal Attenuation                                                                                                                        23467
## Signal Regulatory Protein Family Interactions                                                                                             23467
## Signaling By Activin                                                                                                                      23467
## Signaling By Bmp                                                                                                                          23467
## Signaling By Braf And Raf Fusions                                                                                                         23467
## Signaling By Csf3 G Csf                                                                                                                   23467
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  23467
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               23467
## Signaling By Erythropoietin                                                                                                               23467
## Signaling By Fgfr                                                                                                                         23467
## Signaling By Fgfr In Disease                                                                                                              23467
## Signaling By Fgfr1                                                                                                                        23467
## Signaling By Fgfr1 In Disease                                                                                                             23467
## Signaling By Fgfr2                                                                                                                        23467
## Signaling By Fgfr2 Iiia Tm                                                                                                                23467
## Signaling By Fgfr2 In Disease                                                                                                             23467
## Signaling By Fgfr3                                                                                                                        23467
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      23467
## Signaling By Fgfr4                                                                                                                        23467
## Signaling By Fgfr4 In Disease                                                                                                             23467
## Signaling By Flt3 Fusion Proteins                                                                                                         23467
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     23467
## Signaling By Hedgehog                                                                                                                     23467
## Signaling By Hippo                                                                                                                        23467
## Signaling By Insulin Receptor                                                                                                             23467
## Signaling By Kit In Disease                                                                                                               23467
## Signaling By Leptin                                                                                                                       23467
## Signaling By Lrp5 Mutants                                                                                                                 23467
## Signaling By Mapk Mutants                                                                                                                 23467
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                23467
## Signaling By Met                                                                                                                          23467
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        23467
## Signaling By Mras Complex Mutants                                                                                                         23467
## Signaling By Mst1                                                                                                                         23467
## Signaling By Nodal                                                                                                                        23467
## Signaling By Notch1                                                                                                                       23467
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           23467
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         23467
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                         23467
## Signaling By Notch4                                                                                                                       23467
## Signaling By Ntrk2 Trkb                                                                                                                   23467
## Signaling By Ntrk3 Trkc                                                                                                                   23467
## Signaling By Pdgf                                                                                                                         23467
## Signaling By Pdgfr In Disease                                                                                                             23467
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 23467
## Signaling By Retinoic Acid                                                                                                                23467
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                         23467
## Signaling By Rnf43 Mutants                                                                                                                23467
## Signaling By Robo Receptors                                                                                                               23467
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                          23467
## Signaling By The B Cell Receptor Bcr                                                                                                      23467
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           23467
## Signaling By Vegf                                                                                                                         23467
## Signaling By Wnt In Cancer                                                                                                                23467
## Signalling To Erks                                                                                                                        23467
## Signalling To P38 Via Rit And Rin                                                                                                         23467
## Signalling To Ras                                                                                                                         23467
## Sirt1 Negatively Regulates Rrna Expression                                                                                                23467
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      23467
## Slc Mediated Transmembrane Transport                                                                                                      23467
## Slc Transporter Disorders                                                                                                                 23467
## Smac Xiap Regulated Apoptotic Response                                                                                                    23467
## Small Interfering Rna Sirna Biogenesis                                                                                                    23467
## Smooth Muscle Contraction                                                                                                                 23467
## Snrnp Assembly                                                                                                                            23467
## Sodium Calcium Exchangers                                                                                                                 23467
## Sodium Coupled Phosphate Cotransporters                                                                                                   23467
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                               23467
## Sodium Proton Exchangers                                                                                                                  23467
## Sos Mediated Signalling                                                                                                                   23467
## Sperm Motility And Taxes                                                                                                                  23467
## Sphingolipid De Novo Biosynthesis                                                                                                         23467
## Sphingolipid Metabolism                                                                                                                   23467
## Spry Regulation Of Fgf Signaling                                                                                                          23467
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                               23467
## Stabilization Of P53                                                                                                                      23467
## Stat5 Activation                                                                                                                          23467
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           23467
## Striated Muscle Contraction                                                                                                               23467
## Sulfide Oxidation To Sulfate                                                                                                              23467
## Sulfur Amino Acid Metabolism                                                                                                              23467
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                        23467
## Sumo Is Proteolytically Processed                                                                                                         23467
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                              23467
## Sumoylation Of Chromatin Organization Proteins                                                                                            23467
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    23467
## Sumoylation Of Dna Replication Proteins                                                                                                   23467
## Sumoylation Of Immune Response Proteins                                                                                                   23467
## Sumoylation Of Intracellular Receptors                                                                                                    23467
## Sumoylation Of Rna Binding Proteins                                                                                                       23467
## Sumoylation Of Sumoylation Proteins                                                                                                       23467
## Sumoylation Of Transcription Factors                                                                                                      23467
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  23467
## Suppression Of Apoptosis                                                                                                                  23467
## Suppression Of Phagosomal Maturation                                                                                                      23467
## Surfactant Metabolism                                                                                                                     23467
## Switching Of Origins To A Post Replicative State                                                                                          23467
## Synaptic Adhesion Like Molecules                                                                                                          23467
## Syndecan Interactions                                                                                                                     23467
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                         23467
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                         23467
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                     23467
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                     23467
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  23467
## Synthesis Of Bile Acids And Bile Salts                                                                                                    23467
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          23467
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          23467
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      23467
## Synthesis Of Diphthamide Eef2                                                                                                             23467
## Synthesis Of Dolichyl Phosphate                                                                                                           23467
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                             23467
## Synthesis Of Gdp Mannose                                                                                                                  23467
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             23467
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                23467
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   23467
## Synthesis Of Ketone Bodies                                                                                                                23467
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                23467
## Synthesis Of Lipoxins Lx                                                                                                                  23467
## Synthesis Of Pa                                                                                                                           23467
## Synthesis Of Pc                                                                                                                           23467
## Synthesis Of Pe                                                                                                                           23467
## Synthesis Of Pg                                                                                                                           23467
## Synthesis Of Pi                                                                                                                           23467
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          23467
## Synthesis Of Pips At The Er Membrane                                                                                                      23467
## Synthesis Of Pips At The Golgi Membrane                                                                                                   23467
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           23467
## Synthesis Of Pips At The Plasma Membrane                                                                                                  23467
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        23467
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                23467
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                     23467
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              23467
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                23467
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            23467
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     23467
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  23467
## Tachykinin Receptors Bind Tachykinins                                                                                                     23467
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     23467
## Tandem Pore Domain Potassium Channels                                                                                                     23467
## Tbc Rabgaps                                                                                                                               23467
## Telomere C Strand Lagging Strand Synthesis                                                                                                23467
## Telomere C Strand Synthesis Initiation                                                                                                    23467
## Telomere Extension By Telomerase                                                                                                          23467
## Telomere Maintenance                                                                                                                      23467
## Terminal Pathway Of Complement                                                                                                            23467
## Termination Of Translesion Dna Synthesis                                                                                                  23467
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        23467
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                           23467
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                              23467
## Tgf Beta Receptor Signaling Activates Smads                                                                                               23467
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   23467
## The Activation Of Arylsulfatases                                                                                                          23467
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23467
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                              23467
## The Fatty Acid Cycling Model                                                                                                              23467
## The Nlrp3 Inflammasome                                                                                                                    23467
## The Phototransduction Cascade                                                                                                             23467
## The Retinoid Cycle In Cones Daylight Vision                                                                                               23467
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 23467
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             23467
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           23467
## Thromboxane Signalling Through Tp Receptor                                                                                                23467
## Thyroxine Biosynthesis                                                                                                                    23467
## Tie2 Signaling                                                                                                                            23467
## Tight Junction Interactions                                                                                                               23467
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      23467
## Tnfr1 Mediated Ceramide Production                                                                                                        23467
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                   23467
## Tp53 Regulates Metabolic Genes                                                                                                            23467
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          23467
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           23467
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          23467
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          23467
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               23467
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    23467
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    23467
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    23467
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      23467
## Traf3 Dependent Irf Activation Pathway                                                                                                    23467
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              23467
## Traf6 Mediated Irf7 Activation                                                                                                            23467
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   23467
## Traf6 Mediated Nf Kb Activation                                                                                                           23467
## Trafficking Of Ampa Receptors                                                                                                             23467
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            23467
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                       23467
## Trail Signaling                                                                                                                           23467
## Trans Golgi Network Vesicle Budding                                                                                                       23467
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   23467
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      23467
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      23467
## Transcription Of The Hiv Genome                                                                                                           23467
## Transcriptional Regulation By E2f6                                                                                                        23467
## Transcriptional Regulation By Runx1                                                                                                       23467
## Transcriptional Regulation By Runx2                                                                                                       23467
## Transcriptional Regulation By Runx3                                                                                                       23467
## Transcriptional Regulation By Small Rnas                                                                                                  23467
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      23467
## Transcriptional Regulation Of Testis Differentiation                                                                                      23467
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             23467
## Transferrin Endocytosis And Recycling                                                                                                     23467
## Translation                                                                                                                               23467
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            23467
## Translation Of Sars Cov 1 Structural Proteins                                                                                             23467
## Translation Of Sars Cov 2 Structural Proteins                                                                                             23467
## Translesion Synthesis By Polh                                                                                                             23467
## Translesion Synthesis By Polk                                                                                                             23467
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        23467
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      23467
## Transport And Synthesis Of Paps                                                                                                           23467
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  23467
## Transport Of Connexons To The Plasma Membrane                                                                                             23467
## Transport Of Fatty Acids                                                                                                                  23467
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                       23467
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             23467
## Transport Of Mature Transcript To Cytoplasm                                                                                               23467
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  23467
## Transport Of Nucleotide Sugars                                                                                                            23467
## Transport Of Organic Anions                                                                                                               23467
## Transport Of The Slbp Dependant Mature Mrna                                                                                               23467
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   23467
## Transport To The Golgi And Subsequent Modification                                                                                        23467
## Trif Mediated Programmed Cell Death                                                                                                       23467
## Triglyceride Biosynthesis                                                                                                                 23467
## Triglyceride Catabolism                                                                                                                   23467
## Triglyceride Metabolism                                                                                                                   23467
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     23467
## Trna Aminoacylation                                                                                                                       23467
## Trna Modification In The Mitochondrion                                                                                                    23467
## Trna Modification In The Nucleus And Cytosol                                                                                              23467
## Trna Processing                                                                                                                           23467
## Trna Processing In The Mitochondrion                                                                                                      23467
## Trna Processing In The Nucleus                                                                                                            23467
## Trp Channels                                                                                                                              23467
## Tryptophan Catabolism                                                                                                                     23467
## Type I Hemidesmosome Assembly                                                                                                             23467
## Tyrosine Catabolism                                                                                                                       23467
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                       23467
## Ubiquinol Biosynthesis                                                                                                                    23467
## Uch Proteinases                                                                                                                           23467
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             23467
## Unwinding Of Dna                                                                                                                          23467
## Uptake And Actions Of Bacterial Toxins                                                                                                    23467
## Uptake And Function Of Anthrax Toxins                                                                                                     23467
## Uptake And Function Of Diphtheria Toxin                                                                                                   23467
## Urea Cycle                                                                                                                                23467
## Vasopressin Like Receptors                                                                                                                23467
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              23467
## Vegf Ligand Receptor Interactions                                                                                                         23467
## Vegfr2 Mediated Cell Proliferation                                                                                                        23467
## Vegfr2 Mediated Vascular Permeability                                                                                                     23467
## Viral Messenger Rna Synthesis                                                                                                             23467
## Visual Phototransduction                                                                                                                  23467
## Vitamin B1 Thiamin Metabolism                                                                                                             23467
## Vitamin B2 Riboflavin Metabolism                                                                                                          23467
## Vitamin B5 Pantothenate Metabolism                                                                                                        23467
## Vitamin C Ascorbate Metabolism                                                                                                            23467
## Vitamin D Calciferol Metabolism                                                                                                           23467
## Vitamins                                                                                                                                  23467
## Vldl Assembly                                                                                                                             23467
## Vldl Clearance                                                                                                                            23467
## Voltage Gated Potassium Channels                                                                                                          23467
## Vxpx Cargo Targeting To Cilium                                                                                                            23467
## Wax And Plasmalogen Biosynthesis                                                                                                          23467
## Wnt Mediated Activation Of Dvl                                                                                                            23467
## Xenobiotics                                                                                                                               23467
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             23467
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                  23467
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           23467
## Zinc Transporters                                                                                                                         23467
##                                                                                                                                                                                                                                           hits
## Cytokine Signaling In Immune System                                                                                                  BIRC3,CCL20,CD40,CD70,CD86,CREB1,CXCL10,CXCL8,FOS,HLA-DQB1,IL10,IL18,IL1B,IL33,IL6,MMP9,TNFRSF11B,TNFSF11
## Interleukin 10 Signaling                                                                                                                                                                            CCL20,CD86,CXCL10,CXCL8,IL10,IL18,IL1B,IL6
## Signaling By Interleukins                                                                                                                                                       CCL20,CD86,CREB1,CXCL10,CXCL8,FOS,IL10,IL18,IL1B,IL33,IL6,MMP9
## Chemokine Receptors Bind Chemokines                                                                                                                                                                       CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                   CXCL8,FOS,IL10,IL18,IL1B,IL6,MMP9
## Innate Immune System                                                                                                                                                   AIM2,BIRC3,CEACAM8,CREB1,CST3,FOS,IFI16,IL1B,MMP9,MUC5B,SLPI,TLR3,TREM1
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                            BIRC3,CD40,CD70,TNFRSF11B,TNFSF11
## G Alpha I Signalling Events                                                                                                                                                                         CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL8
## Peptide Ligand Binding Receptors                                                                                                                                                                          CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                                                BIRC3,CD40,TNFSF11
## Signaling By Gpcr                                                                                                                                                                        CCL20,CCL25,CCR9,CREB1,CXCL10,CXCL11,CXCL8,EGFR,WNT5A
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                                                          CREB1,EGFR,FOS
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                           CREB1,EGFR,FOS,MMP9
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                 CD70,TNFRSF11B,TNFSF11
## Gpcr Ligand Binding                                                                                                                                                                                 CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8,WNT5A
## Leishmania Infection                                                                                                                                                                                            CREB1,IL10,IL18,IL1B,IL6,WNT5A
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                        CCL20,CCL25,CCR9,CXCL10,CXCL11,CXCL8
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                                         IL10,IL6
## Interleukin 1 Processing                                                                                                                                                                                                             IL18,IL1B
## Regulated Necrosis                                                                                                                                                                                                             BIRC3,IL18,IL1B
## Toll Like Receptor Cascades                                                                                                                                                                                               BIRC3,CREB1,FOS,TLR3
## Costimulation By The Cd28 Family                                                                                                                                                                                        CD86,HLA-DQB1,PDCD1LG2
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                                    CREB1,EGFR
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                        BIRC3,TLR3
## Esr Mediated Signaling                                                                                                                                                                                                     CREB1,EGFR,FOS,MMP9
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                 BIRC3,CREB1,FOS
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                   CD86,CREB1,EGFR
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                                      IL18,IL1B
## Pyroptosis                                                                                                                                                                                                                           IL18,IL1B
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                     CD86,EGFR,IL33
## Pd 1 Signaling                                                                                                                                                                                                               HLA-DQB1,PDCD1LG2
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                                   CXCL8,FOS,IL6
## Post Translational Protein Modification                                                                                                                                                      BIRC3,CST3,DNMT3A,IL33,IL6,MUC5B,NANP,PCSK9,UHRF2
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                                  CREB1,FOS
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                                                                                                         CST3,IL6,PCSK9
## Infectious Disease                                                                                                                                                                                         CREB1,EGFR,IL10,IL18,IL1B,IL6,WNT5A
## Interleukin 1 Family Signaling                                                                                                                                                                                                  IL18,IL1B,IL33
## Ngf Stimulated Transcription                                                                                                                                                                                                         CREB1,FOS
## Signaling By Nuclear Receptors                                                                                                                                                                                             CREB1,EGFR,FOS,MMP9
## Intracellular Signaling By Second Messengers                                                                                                                                                                              CD86,CREB1,EGFR,IL33
## Adaptive Immune System                                                                                                                                                                                CD40,CD86,FCGR2B,HLA-DQB1,PDCD1LG2,TREM1
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                                                                            AIM2,BIRC3
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                                                     CD40,FCGR2B,TREM1
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                                            CREB1,FOS
## Cellular Senescence                                                                                                                                                                                                              CXCL8,FOS,IL6
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                        IFI16,TLR3
## Programmed Cell Death                                                                                                                                                                                                          BIRC3,IL18,IL1B
## Circadian Clock                                                                                                                                                                                                                 CREB1,SERPINE1
## Interleukin 17 Signaling                                                                                                                                                                                                             CREB1,FOS
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                                              CREB1,IL10,IL6
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                                    CREB1
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                                    CD86,EGFR
## Clec7a Inflammasome Pathway                                                                                                                                                                                                               IL1B
## Fibronectin Matrix Formation                                                                                                                                                                                                           CEACAM8
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                         EGFR
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                                      TLR3
## Creb Phosphorylation                                                                                                                                                                                                                     CREB1
## Neutrophil Degranulation                                                                                                                                                                                                CEACAM8,CST3,MMP9,SLPI
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                      CREB1,IL10
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                    CREB1,FOS
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                                                             CREB1
## Interleukin 18 Signaling                                                                                                                                                                                                                  IL18
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                                        CREB1
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                     CREB1,EGFR,FOS,MMP9
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                                 EGFR,WNT5A
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                                 EGFR
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           EGFR
## Mapk1 Erk2 Activation                                                                                                                                                                                                                      IL6
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 CREB1,FOS
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                                                     FOS
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                                CREB1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                                 CREB1
## Mapk3 Erk1 Activation                                                                                                                                                                                                                      IL6
## Extracellular Matrix Organization                                                                                                                                                                                        CEACAM8,MMP9,SERPINE1
## Interleukin 6 Signaling                                                                                                                                                                                                                    IL6
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                                          TLR3
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                               CD86
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                                                        CREB1
## Killing Mechanisms                                                                                                                                                                                                                       WNT5A
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                                      CREB1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                                  TLR3
## Vldlr Internalisation And Degradation                                                                                                                                                                                                    PCSK9
## Dissolution Of Fibrin Clot                                                                                                                                                                                                            SERPINE1
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                            EGFR
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                                    IFI16
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                               TLR3
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                                                    WNT5A
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                                              CREB1,IL6
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                             EGFR
## Signaling By Ntrks                                                                                                                                                                                                                   CREB1,FOS
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                        EGFR
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                             EGFR
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                                                                 WNT5A
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                                                                           EGFR
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                                  WNT5A
## Hcmv Early Events                                                                                                                                                                                                                   CREB1,EGFR
## C Type Lectin Receptors Clrs                                                                                                                                                                                                        IL1B,MUC5B
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                                                               MUC5B
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                            EGFR
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                                        IFI16
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                                 DNMT3A
## Clathrin Mediated Endocytosis                                                                                                                                                                                                       EGFR,WNT5A
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                                                            MUC5B
## Gab1 Signalosome                                                                                                                                                                                                                          EGFR
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                                     TLR3
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                                          CREB1
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                                                          EGFR
## Ldl Clearance                                                                                                                                                                                                                            PCSK9
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                     CREB1
## Hcmv Infection                                                                                                                                                                                                                      CREB1,EGFR
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                CD86
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                                                               CD86,CREB1,EGFR
## Inflammasomes                                                                                                                                                                                                                             AIM2
## Signal Transduction By L1                                                                                                                                                                                                                 EGFR
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                                TLR3
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                         CD86
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                            EGFR
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                                 BIRC3
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                         IL6
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                     MUC5B
## Interleukin 6 Family Signaling                                                                                                                                                                                                             IL6
## Cellular Responses To External Stimuli                                                                                                                                                                                     CREB1,CXCL8,FOS,IL6
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                               EGFR
## Signaling By Egfr In Cancer                                                                                                                                                                                                               EGFR
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                                            CREB1
## Dectin 2 Family                                                                                                                                                                                                                          MUC5B
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                              EGFR
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                                    WNT5A
## Sumoylation                                                                                                                                                                                                                       DNMT3A,UHRF2
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                                                         CXCL8
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                                                 SERPINE1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                                                                         CREB1
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                                   CEACAM8,TREM1
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                         EGFR
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                        BIRC3
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                                 BIRC3
## Diseases Of Immune System                                                                                                                                                                                                                 TLR3
## Egfr Downregulation                                                                                                                                                                                                                       EGFR
## Perk Regulates Gene Expression                                                                                                                                                                                                           CXCL8
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                              CREB1
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                                                SERPINE1
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                                   MMP9
## Cd28 Co Stimulation                                                                                                                                                                                                                       CD86
## Plasma Lipoprotein Clearance                                                                                                                                                                                                             PCSK9
## Sialic Acid Metabolism                                                                                                                                                                                                                    NANP
## Signaling By Notch2                                                                                                                                                                                                                      CREB1
## G Alpha Q Signalling Events                                                                                                                                                                                                         CREB1,EGFR
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                            BIRC3
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                 BIRC3
## Ub Specific Processing Proteases                                                                                                                                                                                                    BIRC3,IL33
## Ca Dependent Events                                                                                                                                                                                                                      CREB1
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                                                                        IL10
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                                                              EGFR
## Generation Of Second Messenger Molecules                                                                                                                                                                                              HLA-DQB1
## Dag And Ip3 Signaling                                                                                                                                                                                                                    CREB1
## Transcriptional Regulation By Ventx                                                                                                                                                                                                        IL6
## Signaling By Scf Kit                                                                                                                                                                                                                      MMP9
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                                   UHRF2
## Signaling By Notch                                                                                                                                                                                                                  CREB1,EGFR
## Tnf Signaling                                                                                                                                                                                                                            BIRC3
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                                            SERPINE1
## Dap12 Interactions                                                                                                                                                                                                                       TREM1
## Interleukin 12 Signaling                                                                                                                                                                                                                  IL10
## Heme Signaling                                                                                                                                                                                                                           CREB1
## Signaling By Notch3                                                                                                                                                                                                                       EGFR
## Signaling By Egfr                                                                                                                                                                                                                         EGFR
## Signaling By Erbb2                                                                                                                                                                                                                        EGFR
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                                    MMP9
## G Protein Mediated Events                                                                                                                                                                                                                CREB1
## Signaling By Ptk6                                                                                                                                                                                                                         EGFR
## Interleukin 12 Family Signaling                                                                                                                                                                                                           IL10
## Nervous System Development                                                                                                                                                                                                     CREB1,EGFR,MMP9
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                                                   CREB1
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                                              MMP9
## Ca2 Pathway                                                                                                                                                                                                                              WNT5A
## Deubiquitination                                                                                                                                                                                                                    BIRC3,IL33
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                                    CREB1
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         MUC5B
## Signaling By Erbb4                                                                                                                                                                                                                        EGFR
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                                           NANP
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                                           FOS
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                      CREB1
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                                  WNT5A
## Collagen Degradation                                                                                                                                                                                                                      MMP9
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                                     MUC5B
## Dna Methylation                                                                                                                                                                                                                         DNMT3A
## Rna Polymerase Ii Transcription                                                                                                                                                                                    CREB1,EGFR,FOS,IL6,SERPINE1
## Mapk Family Signaling Cascades                                                                                                                                                                                                        EGFR,IL6
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                                     PCSK9
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                        DNMT3A
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                                SERPINE1
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                                                                                                        NANP
## Ecm Proteoglycans                                                                                                                                                                                                                     SERPINE1
## Hemostasis                                                                                                                                                                                                              CEACAM8,SERPINE1,TREM1
## Rmts Methylate Histone Arginines                                                                                                                                                                                                        DNMT3A
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             FOS
## Collagen Formation                                                                                                                                                                                                                        MMP9
## Eph Ephrin Signaling                                                                                                                                                                                                                      MMP9
## Interferon Gamma Signaling                                                                                                                                                                                                            HLA-DQB1
## Opioid Signalling                                                                                                                                                                                                                        CREB1
## Pcp Ce Pathway                                                                                                                                                                                                                           WNT5A
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                             CREB1
## Unfolded Protein Response Upr                                                                                                                                                                                                            CXCL8
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                                     CREB1
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                      WNT5A
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                 IL1B
## Mitochondrial Biogenesis                                                                                                                                                                                                                 CREB1
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       DNMT3A
## Interleukin 1 Signaling                                                                                                                                                                                                                   IL1B
## Signaling By Tgfb Family Members                                                                                                                                                                                                      SERPINE1
## Stimuli Sensing Channels                                                                                                                                                                                                                 BEST2
## Amyloid Fiber Formation                                                                                                                                                                                                                   CST3
## O Linked Glycosylation                                                                                                                                                                                                                   MUC5B
## L1cam Interactions                                                                                                                                                                                                                        EGFR
## Tcr Signaling                                                                                                                                                                                                                         HLA-DQB1
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                     HLA-DQB1
## Oxidative Stress Induced Senescence                                                                                                                                                                                                        FOS
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                           SERPINE1
## Death Receptor Signalling                                                                                                                                                                                                                BIRC3
## Degradation Of The Extracellular Matrix                                                                                                                                                                                                   MMP9
## Diseases Of Glycosylation                                                                                                                                                                                                                MUC5B
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                                   WNT5A
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                                DNMT3A
## Estrogen Dependent Gene Expression                                                                                                                                                                                                         FOS
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                        FOS
## Ion Channel Transport                                                                                                                                                                                                                    BEST2
## Interferon Signaling                                                                                                                                                                                                                  HLA-DQB1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                                                          CREB1
## Membrane Trafficking                                                                                                                                                                                                                EGFR,WNT5A
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                               WNT5A
## Developmental Biology                                                                                                                                                                                                          CREB1,EGFR,MMP9
## Diseases Of Metabolism                                                                                                                                                                                                                   MUC5B
## Platelet Activation Signaling And Aggregation                                                                                                                                                                                         SERPINE1
## Chromatin Modifying Enzymes                                                                                                                                                                                                             DNMT3A
## Transmission Across Chemical Synapses                                                                                                                                                                                                    CREB1
## Transport Of Small Molecules                                                                                                                                                                                                       BEST2,PCSK9
## Vesicle Mediated Transport                                                                                                                                                                                                          EGFR,WNT5A
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                     CREB1
## Asparagine N Linked Glycosylation                                                                                                                                                                                                         NANP
## Signaling By Wnt                                                                                                                                                                                                                         WNT5A
## Transcriptional Regulation By Tp53                                                                                                                                                                                                         FOS
## Neuronal System                                                                                                                                                                                                                          CREB1
## 2 Ltr Circle Formation                                                                                                                                                                                                                        
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                                                               
## Abacavir Metabolism                                                                                                                                                                                                                           
## Abacavir Transmembrane Transport                                                                                                                                                                                                              
## Abacavir Transport And Metabolism                                                                                                                                                                                                             
## Abc Family Proteins Mediated Transport                                                                                                                                                                                                        
## Abc Transporter Disorders                                                                                                                                                                                                                     
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                                         
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                                                              
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                                                                   
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                                                                 
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                                   
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                                                        
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                                  
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                                     
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                                           
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                                              
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                          
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                                                 
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                           
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                          
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                           
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                          
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                           
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                                                                                                 
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                                   
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                                       
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                                                                          
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                                           
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                                           
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                               
## Activation Of C3 And C5                                                                                                                                                                                                                       
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                                                   
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                                  
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                                          
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                                                        
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                                     
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                                          
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                                          
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                                          
## Activation Of Rac1                                                                                                                                                                                                                            
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                                       
## Activation Of Ras In B Cells                                                                                                                                                                                                                  
## Activation Of Smo                                                                                                                                                                                                                             
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                                                                                                         
## Activation Of The Phototransduction Cascade                                                                                                                                                                                                   
## Activation Of The Pre Replicative Complex                                                                                                                                                                                                     
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                                                  
## Activation Of Trka Receptors                                                                                                                                                                                                                  
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                          
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                  
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                  
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                          
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                          
## Adherens Junctions Interactions                                                                                                                                                                                                               
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                                     
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                                    
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                                           
## Adrenoceptors                                                                                                                                                                                                                                 
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                                          
## Aflatoxin Activation And Detoxification                                                                                                                                                                                                       
## Aggrephagy                                                                                                                                                                                                                                    
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                                     
## Alpha Defensins                                                                                                                                                                                                                               
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                                                    
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                  
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                                      
## Alternative Complement Activation                                                                                                                                                                                                             
## Amine Ligand Binding Receptors                                                                                                                                                                                                                
## Amino Acid Conjugation                                                                                                                                                                                                                        
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                                               
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                                                      
## Anchoring Fibril Formation                                                                                                                                                                                                                    
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                                            
## Androgen Biosynthesis                                                                                                                                                                                                                         
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                                                                              
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                                                                      
## Antigen Processing Cross Presentation                                                                                                                                                                                                         
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                                                      
## Antimicrobial Peptides                                                                                                                                                                                                                        
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                                   
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                                  
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                                                                                                      
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                                             
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                                       
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                                                                                        
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                                               
## Apoptosis                                                                                                                                                                                                                                     
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                           
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                                  
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                                       
## Apoptotic Execution Phase                                                                                                                                                                                                                     
## Apoptotic Factor Mediated Response                                                                                                                                                                                                            
## Aquaporin Mediated Transport                                                                                                                                                                                                                  
## Arachidonate Production From Dag                                                                                                                                                                                                              
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   
## Arms Mediated Activation                                                                                                                                                                                                                      
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                          
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                           
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                                                      
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                                              
## Assembly Of The Hiv Virion                                                                                                                                                                                                                    
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                                                      
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                                       
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                                                              
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                                     
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                          
## Attachment And Entry                                                                                                                                                                                                                          
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                              
## Attenuation Phase                                                                                                                                                                                                                             
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                                     
## Aurka Activation By Tpx2                                                                                                                                                                                                                      
## Autophagy                                                                                                                                                                                                                                     
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                                           
## Base Excision Repair                                                                                                                                                                                                                          
## Base Excision Repair Ap Site Formation                                                                                                                                                                                                        
## Basigin Interactions                                                                                                                                                                                                                          
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                                     
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                          
## Beta Defensins                                                                                                                                                                                                                                
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                                  
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                                            
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                                                
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                                             
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                                                
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                              
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                                                 
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                                                                  
## Bicarbonate Transporters                                                                                                                                                                                                                      
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                            
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                                          
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                                            
## Biological Oxidations                                                                                                                                                                                                                         
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                              
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                             
## Biosynthesis Of Maresins                                                                                                                                                                                                                      
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                                                       
## Biotin Transport And Metabolism                                                                                                                                                                                                               
## Blood Group Systems Biosynthesis                                                                                                                                                                                                              
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                          
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                          
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                                                   
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                          
## Ca2 Activated K Channels                                                                                                                                                                                                                      
## Calcineurin Activates Nfat                                                                                                                                                                                                                    
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                              
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                                                   
## Cardiac Conduction                                                                                                                                                                                                                            
## Cargo Concentration In The Er                                                                                                                                                                                                                 
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                                                 
## Carnitine Metabolism                                                                                                                                                                                                                          
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                                                              
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                                                          
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                                                                 
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                                            
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                                        
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                       
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                  
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                            
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                                  
## Cell Cell Communication                                                                                                                                                                                                                       
## Cell Cell Junction Organization                                                                                                                                                                                                               
## Cell Cycle                                                                                                                                                                                                                                    
## Cell Cycle Checkpoints                                                                                                                                                                                                                        
## Cell Cycle Mitotic                                                                                                                                                                                                                            
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                                                 
## Cell Extracellular Matrix Interactions                                                                                                                                                                                                        
## Cell Junction Organization                                                                                                                                                                                                                    
## Cellular Hexose Transport                                                                                                                                                                                                                     
## Cellular Response To Chemical Stress                                                                                                                                                                                                          
## Cellular Response To Heat Stress                                                                                                                                                                                                              
## Cellular Response To Hypoxia                                                                                                                                                                                                                  
## Cellular Response To Starvation                                                                                                                                                                                                               
## Cgmp Effects                                                                                                                                                                                                                                  
## Chaperone Mediated Autophagy                                                                                                                                                                                                                  
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                                                                 
## Chl1 Interactions                                                                                                                                                                                                                             
## Cholesterol Biosynthesis                                                                                                                                                                                                                      
## Choline Catabolism                                                                                                                                                                                                                            
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                              
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                                               
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                                    
## Chromosome Maintenance                                                                                                                                                                                                                        
## Chylomicron Assembly                                                                                                                                                                                                                          
## Chylomicron Clearance                                                                                                                                                                                                                         
## Chylomicron Remodeling                                                                                                                                                                                                                        
## Cilium Assembly                                                                                                                                                                                                                               
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                                          
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                                          
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                                   
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                                       
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                                            
## Coenzyme A Biosynthesis                                                                                                                                                                                                                       
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                                
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                                   
## Collagen Chain Trimerization                                                                                                                                                                                                                  
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                                       
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                                                    
## Complement Cascade                                                                                                                                                                                                                            
## Complex I Biogenesis                                                                                                                                                                                                                          
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                                      
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                          
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                          
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                                                 
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                                                    
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                                                              
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                                                            
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                                                 
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                                               
## Copi Mediated Anterograde Transport                                                                                                                                                                                                           
## Copii Mediated Vesicle Transport                                                                                                                                                                                                              
## Creatine Metabolism                                                                                                                                                                                                                           
## Creation Of C4 And C2 Activators                                                                                                                                                                                                              
## Creb3 Factors Activate Genes                                                                                                                                                                                                                  
## Cristae Formation                                                                                                                                                                                                                             
## Crmps In Sema3a Signaling                                                                                                                                                                                                                     
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                                                               
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                                                    
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                              
## Cs Ds Degradation                                                                                                                                                                                                                             
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                                                       
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                                              
## Cyclin D Associated Events In G1                                                                                                                                                                                                              
## Cyp2e1 Reactions                                                                                                                                                                                                                              
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                                      
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                                    
## Cytoprotection By Hmox1                                                                                                                                                                                                                       
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                                        
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                                      
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                                 
## Dap12 Signaling                                                                                                                                                                                                                               
## Darpp 32 Events                                                                                                                                                                                                                               
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                             
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                                                       
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                                                      
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                            
## Deadenylation Of Mrna                                                                                                                                                                                                                         
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                                                
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                                   
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                                   
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                                         
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                                          
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                                 
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                  
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                                 
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                             
## Defective F9 Activation                                                                                                                                                                                                                       
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                                       
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                                     
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                   
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                                     
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                              
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                           
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                                    
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                                                                      
## Defensins                                                                                                                                                                                                                                     
## Degradation Of Axin                                                                                                                                                                                                                           
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                                                        
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                                      
## Degradation Of Dvl                                                                                                                                                                                                                            
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                                         
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                                        
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                                                              
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                                                                                   
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                                 
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                                     
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                                                                                 
## Digestion                                                                                                                                                                                                                                     
## Digestion And Absorption                                                                                                                                                                                                                      
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                             
## Digestion Of Dietary Lipid                                                                                                                                                                                                                    
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                                                                                
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                                                         
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                                                                 
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                                          
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                                                
## Diseases Of Base Excision Repair                                                                                                                                                                                                              
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                           
## Diseases Of Dna Repair                                                                                                                                                                                                                        
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                               
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                                
## Disinhibition Of Snare Formation                                                                                                                                                                                                              
## Disorders Of Transmembrane Transporters                                                                                                                                                                                                       
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                                      
## Dna Damage Bypass                                                                                                                                                                                                                             
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                              
## Dna Damage Reversal                                                                                                                                                                                                                           
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                                                 
## Dna Double Strand Break Repair                                                                                                                                                                                                                
## Dna Double Strand Break Response                                                                                                                                                                                                              
## Dna Repair                                                                                                                                                                                                                                    
## Dna Replication                                                                                                                                                                                                                               
## Dna Replication Initiation                                                                                                                                                                                                                    
## Dna Replication Pre Initiation                                                                                                                                                                                                                
## Dna Strand Elongation                                                                                                                                                                                                                         
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                                       
## Dopamine Receptors                                                                                                                                                                                                                            
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                                       
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                             
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                                                      
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                                                 
## Downstream Signal Transduction                                                                                                                                                                                                                
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                                            
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                                       
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                                       
## Dscam Interactions                                                                                                                                                                                                                            
## Dual Incision In Gg Ner                                                                                                                                                                                                                       
## Dual Incision In Tc Ner                                                                                                                                                                                                                       
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                                                   
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                                    
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                                             
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                                 
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                    
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                                                                
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                           
## Eicosanoids                                                                                                                                                                                                                                   
## Elastic Fibre Formation                                                                                                                                                                                                                       
## Electric Transmission Across Gap Junctions                                                                                                                                                                                                    
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                             
## Endogenous Sterols                                                                                                                                                                                                                            
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                                                        
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                    
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                                              
## Enos Activation                                                                                                                                                                                                                               
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                            
## Ephb Mediated Forward Signaling                                                                                                                                                                                                               
## Ephrin Signaling                                                                                                                                                                                                                              
## Er Quality Control Compartment Erqc                                                                                                                                                                                                           
## Er To Golgi Anterograde Transport                                                                                                                                                                                                             
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                                                   
## Erk Mapk Targets                                                                                                                                                                                                                              
## Erks Are Inactivated                                                                                                                                                                                                                          
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                                                        
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                                                        
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                                                       
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                                           
## Erythropoietin Activates Ras                                                                                                                                                                                                                  
## Erythropoietin Activates Stat5                                                                                                                                                                                                                
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                                    
## Estrogen Biosynthesis                                                                                                                                                                                                                         
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                                   
## Ethanol Oxidation                                                                                                                                                                                                                             
## Eukaryotic Translation Elongation                                                                                                                                                                                                             
## Eukaryotic Translation Initiation                                                                                                                                                                                                             
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                                               
## Extension Of Telomeres                                                                                                                                                                                                                        
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                    
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                                                                         
## Fanconi Anemia Pathway                                                                                                                                                                                                                        
## Fasl Cd95l Signaling                                                                                                                                                                                                                          
## Fatty Acid Metabolism                                                                                                                                                                                                                         
## Fatty Acids                                                                                                                                                                                                                                   
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                                                   
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                            
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                              
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                               
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                                  
## Fcgr Activation                                                                                                                                                                                                                               
## Fertilization                                                                                                                                                                                                                                 
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                              
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                    
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                              
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                           
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                          
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                          
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                                                                                
## Flt3 Signaling                                                                                                                                                                                                                                
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                                 
## Flt3 Signaling In Disease                                                                                                                                                                                                                     
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                                     
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                  
## Formation Of Apoptosome                                                                                                                                                                                                                       
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                                     
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                                     
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                                       
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                                    
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                                                  
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                                      
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                                                     
## Formation Of The Cornified Envelope                                                                                                                                                                                                           
## Formation Of The Early Elongation Complex                                                                                                                                                                                                     
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                                                        
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                             
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                                                          
## Foxo Mediated Transcription                                                                                                                                                                                                                   
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                                               
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                                               
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                                                                  
## Free Fatty Acid Receptors                                                                                                                                                                                                                     
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                                   
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                  
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                  
## Fructose Catabolism                                                                                                                                                                                                                           
## Fructose Metabolism                                                                                                                                                                                                                           
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                               
## G Alpha S Signalling Events                                                                                                                                                                                                                   
## G Alpha Z Signalling Events                                                                                                                                                                                                                   
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                                         
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                                     
## G Protein Activation                                                                                                                                                                                                                          
## G Protein Beta Gamma Signalling                                                                                                                                                                                                               
## G0 And Early G1                                                                                                                                                                                                                               
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   
## G1 S Specific Transcription                                                                                                                                                                                                                   
## G2 M Checkpoints                                                                                                                                                                                                                              
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                    
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                               
## G2 Phase                                                                                                                                                                                                                                      
## Gaba B Receptor Activation                                                                                                                                                                                                                    
## Gaba Receptor Activation                                                                                                                                                                                                                      
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                                               
## Galactose Catabolism                                                                                                                                                                                                                          
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                                                           
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                                                                         
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                                                       
## Gap Junction Assembly                                                                                                                                                                                                                         
## Gap Junction Degradation                                                                                                                                                                                                                      
## Gap Junction Trafficking And Regulation                                                                                                                                                                                                       
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                       
## Gene Silencing By Rna                                                                                                                                                                                                                         
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                                                                   
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                                               
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                                                      
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                                    
## Glucagon Type Ligand Receptors                                                                                                                                                                                                                
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   
## Gluconeogenesis                                                                                                                                                                                                                               
## Glucose Metabolism                                                                                                                                                                                                                            
## Glucuronidation                                                                                                                                                                                                                               
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                            
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                                      
## Glutathione Conjugation                                                                                                                                                                                                                       
## Glutathione Synthesis And Recycling                                                                                                                                                                                                           
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                              
## Glycerophospholipid Catabolism                                                                                                                                                                                                                
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                             
## Glycogen Metabolism                                                                                                                                                                                                                           
## Glycogen Storage Diseases                                                                                                                                                                                                                     
## Glycogen Synthesis                                                                                                                                                                                                                            
## Glycolysis                                                                                                                                                                                                                                    
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                  
## Glycosphingolipid Metabolism                                                                                                                                                                                                                  
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                                                 
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                           
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                                           
## Golgi To Er Retrograde Transport                                                                                                                                                                                                              
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                               
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                              
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                                                     
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                                
## Growth Hormone Receptor Signaling                                                                                                                                                                                                             
## Hats Acetylate Histones                                                                                                                                                                                                                       
## Hcmv Late Events                                                                                                                                                                                                                              
## Hdacs Deacetylate Histones                                                                                                                                                                                                                    
## Hdl Assembly                                                                                                                                                                                                                                  
## Hdl Clearance                                                                                                                                                                                                                                 
## Hdl Remodeling                                                                                                                                                                                                                                
## Hdms Demethylate Histones                                                                                                                                                                                                                     
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                                      
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                     
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                                       
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                    
## Hedgehog Off State                                                                                                                                                                                                                            
## Hedgehog On State                                                                                                                                                                                                                             
## Heme Biosynthesis                                                                                                                                                                                                                             
## Heme Degradation                                                                                                                                                                                                                              
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                                     
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                                                    
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                                                                       
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                                                                        
## Histidine Catabolism                                                                                                                                                                                                                          
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                            
## Hiv Infection                                                                                                                                                                                                                                 
## Hiv Life Cycle                                                                                                                                                                                                                                
## Hiv Transcription Elongation                                                                                                                                                                                                                  
## Hiv Transcription Initiation                                                                                                                                                                                                                  
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                                    
## Homology Directed Repair                                                                                                                                                                                                                      
## Hormone Ligand Binding Receptors                                                                                                                                                                                                              
## Host Interactions Of Hiv Factors                                                                                                                                                                                                              
## Hs Gag Biosynthesis                                                                                                                                                                                                                           
## Hs Gag Degradation                                                                                                                                                                                                                            
## Hsf1 Activation                                                                                                                                                                                                                               
## Hsf1 Dependent Transactivation                                                                                                                                                                                                                
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                                                       
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                          
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                            
## Hyaluronan Metabolism                                                                                                                                                                                                                         
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                             
## Hydrolysis Of Lpc                                                                                                                                                                                                                             
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                  
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                                               
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                                
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                          
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                                                 
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                                     
## Influenza Infection                                                                                                                                                                                                                           
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                                   
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                                                               
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                                                                                                                   
## Initial Triggering Of Complement                                                                                                                                                                                                              
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                                                 
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                                                                 
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                                                  
## Inositol Phosphate Metabolism                                                                                                                                                                                                                 
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                                                                   
## Insulin Processing                                                                                                                                                                                                                            
## Insulin Receptor Recycling                                                                                                                                                                                                                    
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                           
## Integration Of Energy Metabolism                                                                                                                                                                                                              
## Integration Of Provirus                                                                                                                                                                                                                       
## Integrin Cell Surface Interactions                                                                                                                                                                                                            
## Integrin Signaling                                                                                                                                                                                                                            
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                           
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                                                         
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                                               
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                                               
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                                            
## Interferon Alpha Beta Signaling                                                                                                                                                                                                               
## Interleukin 15 Signaling                                                                                                                                                                                                                      
## Interleukin 2 Family Signaling                                                                                                                                                                                                                
## Interleukin 2 Signaling                                                                                                                                                                                                                       
## Interleukin 20 Family Signaling                                                                                                                                                                                                               
## Interleukin 21 Signaling                                                                                                                                                                                                                      
## Interleukin 23 Signaling                                                                                                                                                                                                                      
## Interleukin 27 Signaling                                                                                                                                                                                                                      
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                                              
## Interleukin 35 Signalling                                                                                                                                                                                                                     
## Interleukin 36 Pathway                                                                                                                                                                                                                        
## Interleukin 37 Signaling                                                                                                                                                                                                                      
## Interleukin 7 Signaling                                                                                                                                                                                                                       
## Interleukin 9 Signaling                                                                                                                                                                                                                       
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                            
## Intestinal Absorption                                                                                                                                                                                                                         
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                                                
## Intra Golgi Traffic                                                                                                                                                                                                                           
## Intraflagellar Transport                                                                                                                                                                                                                      
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                               
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                    
## Inwardly Rectifying K Channels                                                                                                                                                                                                                
## Ion Homeostasis                                                                                                                                                                                                                               
## Ion Transport By P Type Atpases                                                                                                                                                                                                               
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                                      
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                    
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                                     
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                       
## Ire1alpha Activates Chaperones                                                                                                                                                                                                                
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                                        
## Iron Uptake And Transport                                                                                                                                                                                                                     
## Irs Activation                                                                                                                                                                                                                                
## Irs Mediated Signalling                                                                                                                                                                                                                       
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                                                                             
## Josephin Domain Dubs                                                                                                                                                                                                                          
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                  
## Keratan Sulfate Degradation                                                                                                                                                                                                                   
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                            
## Keratinization                                                                                                                                                                                                                                
## Ketone Body Metabolism                                                                                                                                                                                                                        
## Kinesins                                                                                                                                                                                                                                      
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                                        
## Lagging Strand Synthesis                                                                                                                                                                                                                      
## Laminin Interactions                                                                                                                                                                                                                          
## Late Endosomal Microautophagy                                                                                                                                                                                                                 
## Lectin Pathway Of Complement Activation                                                                                                                                                                                                       
## Leukotriene Receptors                                                                                                                                                                                                                         
## Lgi Adam Interactions                                                                                                                                                                                                                         
## Ligand Receptor Interactions                                                                                                                                                                                                                  
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   
## Lipid Particle Organization                                                                                                                                                                                                                   
## Lipophagy                                                                                                                                                                                                                                     
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                                  
## Long Term Potentiation                                                                                                                                                                                                                        
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                                    
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                                         
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                                                        
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                                                                        
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                           
## Lysine Catabolism                                                                                                                                                                                                                             
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                            
## M Phase                                                                                                                                                                                                                                       
## Map2k And Mapk Activation                                                                                                                                                                                                                     
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                                      
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                         
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                                         
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   
## Maturation Of Protein 3a                                                                                                                                                                                                                      
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                                        
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                                        
## Meiosis                                                                                                                                                                                                                                       
## Meiotic Recombination                                                                                                                                                                                                                         
## Meiotic Synapsis                                                                                                                                                                                                                              
## Melanin Biosynthesis                                                                                                                                                                                                                          
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                              
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                  
## Met Activates Ptpn11                                                                                                                                                                                                                          
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   
## Met Activates Ras Signaling                                                                                                                                                                                                                   
## Met Interacts With Tns Proteins                                                                                                                                                                                                               
## Met Promotes Cell Motility                                                                                                                                                                                                                    
## Met Receptor Activation                                                                                                                                                                                                                       
## Met Receptor Recycling                                                                                                                                                                                                                        
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                                           
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                          
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                                     
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                                                 
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   
## Metabolism Of Cofactors                                                                                                                                                                                                                       
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                            
## Metabolism Of Folate And Pterines                                                                                                                                                                                                             
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                                              
## Metabolism Of Lipids                                                                                                                                                                                                                          
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                                                     
## Metabolism Of Nucleotides                                                                                                                                                                                                                     
## Metabolism Of Polyamines                                                                                                                                                                                                                      
## Metabolism Of Porphyrins                                                                                                                                                                                                                      
## Metabolism Of Rna                                                                                                                                                                                                                             
## Metabolism Of Steroid Hormones                                                                                                                                                                                                                
## Metabolism Of Steroids                                                                                                                                                                                                                        
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                          
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                                            
## Metal Ion Slc Transporters                                                                                                                                                                                                                    
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                                                 
## Metalloprotease Dubs                                                                                                                                                                                                                          
## Metallothioneins Bind Metals                                                                                                                                                                                                                  
## Methionine Salvage Pathway                                                                                                                                                                                                                    
## Methylation                                                                                                                                                                                                                                   
## Microrna Mirna Biogenesis                                                                                                                                                                                                                     
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                                
## Miro Gtpase Cycle                                                                                                                                                                                                                             
## Miscellaneous Substrates                                                                                                                                                                                                                      
## Miscellaneous Transport And Binding Events                                                                                                                                                                                                    
## Mismatch Repair                                                                                                                                                                                                                               
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                           
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                                       
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                                                              
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                                                            
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                                  
## Mitochondrial Protein Import                                                                                                                                                                                                                  
## Mitochondrial Translation                                                                                                                                                                                                                     
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                             
## Mitochondrial Uncoupling                                                                                                                                                                                                                      
## Mitophagy                                                                                                                                                                                                                                     
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                          
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                        
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                                
## Mitotic Prometaphase                                                                                                                                                                                                                          
## Mitotic Prophase                                                                                                                                                                                                                              
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                    
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                                 
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                                       
## Molecules Associated With Elastic Fibres                                                                                                                                                                                                      
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                              
## Mrna Capping                                                                                                                                                                                                                                  
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                          
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                          
## Mrna Editing                                                                                                                                                                                                                                  
## Mrna Editing C To U Conversion                                                                                                                                                                                                                
## Mrna Splicing                                                                                                                                                                                                                                 
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   
## Mtor Signalling                                                                                                                                                                                                                               
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                    
## Mucopolysaccharidoses                                                                                                                                                                                                                         
## Multifunctional Anion Exchangers                                                                                                                                                                                                              
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                            
## Muscle Contraction                                                                                                                                                                                                                            
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                  
## Myogenesis                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation                                                                                                                                                                                                                  
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                                                        
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                                             
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                                                   
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                                                 
## Nade Modulates Death Signalling                                                                                                                                                                                                               
## Ncam1 Interactions                                                                                                                                                                                                                            
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                          
## Neddylation                                                                                                                                                                                                                                   
## Nef And Signal Transduction                                                                                                                                                                                                                   
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                              
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                              
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                                                                    
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                                                                                                
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                             
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                                  
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                                                                    
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                                        
## Negative Regulation Of Flt3                                                                                                                                                                                                                   
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                           
## Negative Regulation Of Met Activity                                                                                                                                                                                                           
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                                                           
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                                       
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                                                                    
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                                  
## Nephrin Family Interactions                                                                                                                                                                                                                   
## Netrin 1 Signaling                                                                                                                                                                                                                            
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                             
## Neurexins And Neuroligins                                                                                                                                                                                                                     
## Neurofascin Interactions                                                                                                                                                                                                                      
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                           
## Neurotransmitter Clearance                                                                                                                                                                                                                    
## Neurotransmitter Release Cycle                                                                                                                                                                                                                
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                                                                      
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                                       
## Ngf Independant Trka Activation                                                                                                                                                                                                               
## Nicotinamide Salvaging                                                                                                                                                                                                                        
## Nicotinate Metabolism                                                                                                                                                                                                                         
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                                     
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                                        
## Noncanonical Activation Of Notch3                                                                                                                                                                                                             
## Nonhomologous End Joining Nhej                                                                                                                                                                                                                
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                                                 
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                             
## Notch Hlh Transcription Pathway                                                                                                                                                                                                               
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                   
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                   
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                                           
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                            
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                                                                
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                                                    
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                                                                              
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                                                                         
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                                                              
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                                                                               
## Nrage Signals Death Through Jnk                                                                                                                                                                                                               
## Nrcam Interactions                                                                                                                                                                                                                            
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                                      
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                                         
## Ntrk2 Activates Rac1                                                                                                                                                                                                                          
## Nuclear Envelope Breakdown                                                                                                                                                                                                                    
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                                
## Nuclear Import Of Rev Protein                                                                                                                                                                                                                 
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                          
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                                        
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                    
## Nucleobase Biosynthesis                                                                                                                                                                                                                       
## Nucleobase Catabolism                                                                                                                                                                                                                         
## Nucleotide Excision Repair                                                                                                                                                                                                                    
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                          
## Nucleotide Salvage                                                                                                                                                                                                                            
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                                             
## Oas Antiviral Response                                                                                                                                                                                                                        
## Olfactory Signaling Pathway                                                                                                                                                                                                                   
## Oncogene Induced Senescence                                                                                                                                                                                                                   
## Oncogenic Mapk Signaling                                                                                                                                                                                                                      
## Opsins                                                                                                                                                                                                                                        
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                                                                       
## Organic Anion Transport                                                                                                                                                                                                                       
## Organic Anion Transporters                                                                                                                                                                                                                    
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                                     
## Organic Cation Transport                                                                                                                                                                                                                      
## Other Interleukin Signaling                                                                                                                                                                                                                   
## Other Semaphorin Interactions                                                                                                                                                                                                                 
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                                
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                                               
## P2y Receptors                                                                                                                                                                                                                                 
## P38mapk Events                                                                                                                                                                                                                                
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                          
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                                                
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                          
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                                 
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                      
## Parasite Infection                                                                                                                                                                                                                            
## Passive Transport By Aquaporins                                                                                                                                                                                                               
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                                                
## Pecam1 Interactions                                                                                                                                                                                                                           
## Pentose Phosphate Pathway                                                                                                                                                                                                                     
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                  
## Peptide Hormone Metabolism                                                                                                                                                                                                                    
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                  
## Peroxisomal Protein Import                                                                                                                                                                                                                    
## Pexophagy                                                                                                                                                                                                                                     
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                  
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                                      
## Phase 2 Plateau Phase                                                                                                                                                                                                                         
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                  
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                            
## Phase I Functionalization Of Compounds                                                                                                                                                                                                        
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                             
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                                         
## Phenylalanine Metabolism                                                                                                                                                                                                                      
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                                                 
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                                    
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                                        
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                                        
## Phospholipid Metabolism                                                                                                                                                                                                                       
## Phosphorylation Of Emi1                                                                                                                                                                                                                       
## Phosphorylation Of The Apc C                                                                                                                                                                                                                  
## Physiological Factors                                                                                                                                                                                                                         
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                           
## Pi Metabolism                                                                                                                                                                                                                                 
## Pi3k Akt Activation                                                                                                                                                                                                                           
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                                
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                               
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                                 
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                                         
## Pka Activation In Glucagon Signalling                                                                                                                                                                                                         
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                                                         
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                               
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                                 
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                                         
## Platelet Aggregation Plug Formation                                                                                                                                                                                                           
## Platelet Calcium Homeostasis                                                                                                                                                                                                                  
## Platelet Homeostasis                                                                                                                                                                                                                          
## Platelet Sensitization By Ldl                                                                                                                                                                                                                 
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                                                
## Polo Like Kinase Mediated Events                                                                                                                                                                                                              
## Polymerase Switching                                                                                                                                                                                                                          
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                                          
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                             
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                                       
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                                                            
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                                              
## Potassium Channels                                                                                                                                                                                                                            
## Potential Therapeutics For Sars                                                                                                                                                                                                               
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                                                                
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                                                               
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                                                      
## Pre Notch Expression And Processing                                                                                                                                                                                                           
## Pre Notch Processing In Golgi                                                                                                                                                                                                                 
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                                             
## Pregnenolone Biosynthesis                                                                                                                                                                                                                     
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                                                        
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                                     
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                                     
## Processing And Activation Of Sumo                                                                                                                                                                                                             
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                                               
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                                      
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                                    
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                            
## Processing Of Smdt1                                                                                                                                                                                                                           
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                                          
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                                    
## Prolactin Receptor Signaling                                                                                                                                                                                                                  
## Prolonged Erk Activation Events                                                                                                                                                                                                               
## Propionyl Coa Catabolism                                                                                                                                                                                                                      
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                                                         
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   
## Protein Folding                                                                                                                                                                                                                               
## Protein Localization                                                                                                                                                                                                                          
## Protein Methylation                                                                                                                                                                                                                           
## Protein Protein Interactions At Synapses                                                                                                                                                                                                      
## Protein Repair                                                                                                                                                                                                                                
## Protein Ubiquitination                                                                                                                                                                                                                        
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                                      
## Pten Regulation                                                                                                                                                                                                                               
## Ptk6 Expression                                                                                                                                                                                                                               
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                     
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                                            
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                                                         
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                                                         
## Purine Catabolism                                                                                                                                                                                                                             
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                                              
## Purine Salvage                                                                                                                                                                                                                                
## Pyrimidine Catabolism                                                                                                                                                                                                                         
## Pyrimidine Salvage                                                                                                                                                                                                                            
## Pyruvate Metabolism                                                                                                                                                                                                                           
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                                                 
## Ra Biosynthesis Pathway                                                                                                                                                                                                                       
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                                         
## Rab Geranylgeranylation                                                                                                                                                                                                                       
## Rab Regulation Of Trafficking                                                                                                                                                                                                                 
## Rac1 Gtpase Cycle                                                                                                                                                                                                                             
## Rac2 Gtpase Cycle                                                                                                                                                                                                                             
## Rac3 Gtpase Cycle                                                                                                                                                                                                                             
## Raf Activation                                                                                                                                                                                                                                
## Rap1 Signalling                                                                                                                                                                                                                               
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                                          
## Ras Processing                                                                                                                                                                                                                                
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                                                     
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                                                  
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                                   
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                                                                                        
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                                                              
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                                                      
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                                    
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                             
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                         
## Recycling Pathway Of L1                                                                                                                                                                                                                       
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                              
## Reelin Signalling Pathway                                                                                                                                                                                                                     
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                               
## Regulation By C Flip                                                                                                                                                                                                                          
## Regulation Of Bach1 Activity                                                                                                                                                                                                                  
## Regulation Of Beta Cell Development                                                                                                                                                                                                           
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                                                         
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                                                   
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                                                                            
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                                   
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                                                    
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                           
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                                                     
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                                   
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                                                             
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                                                                                 
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                                                                                            
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                                                   
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                                                              
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                                               
## Regulation Of Ifna Signaling                                                                                                                                                                                                                  
## Regulation Of Ifng Signaling                                                                                                                                                                                                                  
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                                                        
## Regulation Of Insulin Secretion                                                                                                                                                                                                               
## Regulation Of Kit Signaling                                                                                                                                                                                                                   
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                                   
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                                                      
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                                                           
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                                                
## Regulation Of Pten Gene Transcription                                                                                                                                                                                                         
## Regulation Of Pten Localization                                                                                                                                                                                                               
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                           
## Regulation Of Pten Stability And Activity                                                                                                                                                                                                     
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                                              
## Regulation Of Ras By Gaps                                                                                                                                                                                                                     
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                                   
## Regulation Of Signaling By Cbl                                                                                                                                                                                                                
## Regulation Of Signaling By Nodal                                                                                                                                                                                                              
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                                        
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                                               
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                                           
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                                                 
## Relaxin Receptors                                                                                                                                                                                                                             
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                                            
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                                      
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                                                                         
## Repression Of Wnt Target Genes                                                                                                                                                                                                                
## Reproduction                                                                                                                                                                                                                                  
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                           
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                                                                  
## Resolution Of D Loop Structures                                                                                                                                                                                                               
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                                                                             
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                                       
## Respiratory Electron Transport                                                                                                                                                                                                                
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                                                                                                              
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                                    
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                                             
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                               
## Response To Metal Ions                                                                                                                                                                                                                        
## Ret Signaling                                                                                                                                                                                                                                 
## Retinoid Cycle Disease Events                                                                                                                                                                                                                 
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                            
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                                               
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                                        
## Rho Gtpase Cycle                                                                                                                                                                                                                              
## Rho Gtpase Effectors                                                                                                                                                                                                                          
## Rho Gtpases Activate Cit                                                                                                                                                                                                                      
## Rho Gtpases Activate Formins                                                                                                                                                                                                                  
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                     
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                           
## Rho Gtpases Activate Paks                                                                                                                                                                                                                     
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                     
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                                  
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                    
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                          
## Rhoa Gtpase Cycle                                                                                                                                                                                                                             
## Rhob Gtpase Cycle                                                                                                                                                                                                                             
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                           
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                          
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                          
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                          
## Rhoc Gtpase Cycle                                                                                                                                                                                                                             
## Rhod Gtpase Cycle                                                                                                                                                                                                                             
## Rhof Gtpase Cycle                                                                                                                                                                                                                             
## Rhog Gtpase Cycle                                                                                                                                                                                                                             
## Rhoh Gtpase Cycle                                                                                                                                                                                                                             
## Rhoj Gtpase Cycle                                                                                                                                                                                                                             
## Rhoq Gtpase Cycle                                                                                                                                                                                                                             
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                            
## Rhou Gtpase Cycle                                                                                                                                                                                                                             
## Rhov Gtpase Cycle                                                                                                                                                                                                                             
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                              
## Rna Polymerase I Transcription                                                                                                                                                                                                                
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                                     
## Rna Polymerase I Transcription Termination                                                                                                                                                                                                    
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                                     
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                                   
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                           
## Rna Polymerase Iii Transcription                                                                                                                                                                                                              
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                                                              
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                                                              
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                                  
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                             
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                             
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                             
## Robo Receptors Bind Akap5                                                                                                                                                                                                                     
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                            
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                                                 
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                                         
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                                               
## Rora Activates Gene Expression                                                                                                                                                                                                                
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                          
## Rrna Modification In The Mitochondrion                                                                                                                                                                                                        
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                                  
## Rrna Processing                                                                                                                                                                                                                               
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                          
## Rsk Activation                                                                                                                                                                                                                                
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                                                                     
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                                                                            
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                                                      
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                                                   
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                                                                                         
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                                                              
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                                                                    
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                                                                      
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                                                              
## Runx2 Regulates Bone Development                                                                                                                                                                                                              
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                                        
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                                              
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                                    
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                                     
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                          
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                                            
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                               
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                       
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                                 
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                                   
## S Phase                                                                                                                                                                                                                                       
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                                               
## Sars Cov 1 Infection                                                                                                                                                                                                                          
## Sars Cov 2 Infection                                                                                                                                                                                                                          
## Sars Cov Infections                                                                                                                                                                                                                           
## Scavenging By Class A Receptors                                                                                                                                                                                                               
## Scavenging By Class B Receptors                                                                                                                                                                                                               
## Scavenging By Class F Receptors                                                                                                                                                                                                               
## Scavenging Of Heme From Plasma                                                                                                                                                                                                                
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                                      
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                                               
## Selective Autophagy                                                                                                                                                                                                                           
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                           
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                                                             
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                                
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                                                        
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                                                   
## Semaphorin Interactions                                                                                                                                                                                                                       
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                           
## Sensory Perception                                                                                                                                                                                                                            
## Sensory Processing Of Sound                                                                                                                                                                                                                   
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                                                                
## Separation Of Sister Chromatids                                                                                                                                                                                                               
## Serine Biosynthesis                                                                                                                                                                                                                           
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                          
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                                      
## Serotonin Receptors                                                                                                                                                                                                                           
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                    
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                    
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                    
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                                         
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                                
## Signal Amplification                                                                                                                                                                                                                          
## Signal Attenuation                                                                                                                                                                                                                            
## Signal Regulatory Protein Family Interactions                                                                                                                                                                                                 
## Signaling By Activin                                                                                                                                                                                                                          
## Signaling By Bmp                                                                                                                                                                                                                              
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                             
## Signaling By Csf3 G Csf                                                                                                                                                                                                                       
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                                      
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                                   
## Signaling By Erythropoietin                                                                                                                                                                                                                   
## Signaling By Fgfr                                                                                                                                                                                                                             
## Signaling By Fgfr In Disease                                                                                                                                                                                                                  
## Signaling By Fgfr1                                                                                                                                                                                                                            
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                                 
## Signaling By Fgfr2                                                                                                                                                                                                                            
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                    
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                                 
## Signaling By Fgfr3                                                                                                                                                                                                                            
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                          
## Signaling By Fgfr4                                                                                                                                                                                                                            
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                                 
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                             
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                                         
## Signaling By Hedgehog                                                                                                                                                                                                                         
## Signaling By Hippo                                                                                                                                                                                                                            
## Signaling By Insulin Receptor                                                                                                                                                                                                                 
## Signaling By Kit In Disease                                                                                                                                                                                                                   
## Signaling By Leptin                                                                                                                                                                                                                           
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                     
## Signaling By Mapk Mutants                                                                                                                                                                                                                     
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                                                    
## Signaling By Met                                                                                                                                                                                                                              
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                                            
## Signaling By Mras Complex Mutants                                                                                                                                                                                                             
## Signaling By Mst1                                                                                                                                                                                                                             
## Signaling By Nodal                                                                                                                                                                                                                            
## Signaling By Notch1                                                                                                                                                                                                                           
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                                               
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                                             
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                                                             
## Signaling By Notch4                                                                                                                                                                                                                           
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                       
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                       
## Signaling By Pdgf                                                                                                                                                                                                                             
## Signaling By Pdgfr In Disease                                                                                                                                                                                                                 
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                                                                     
## Signaling By Retinoic Acid                                                                                                                                                                                                                    
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                                             
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                    
## Signaling By Robo Receptors                                                                                                                                                                                                                   
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                                              
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                          
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                                                               
## Signaling By Vegf                                                                                                                                                                                                                             
## Signaling By Wnt In Cancer                                                                                                                                                                                                                    
## Signalling To Erks                                                                                                                                                                                                                            
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                             
## Signalling To Ras                                                                                                                                                                                                                             
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                                    
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                                                          
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                          
## Slc Transporter Disorders                                                                                                                                                                                                                     
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                                        
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                                        
## Smooth Muscle Contraction                                                                                                                                                                                                                     
## Snrnp Assembly                                                                                                                                                                                                                                
## Sodium Calcium Exchangers                                                                                                                                                                                                                     
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                                       
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                                                   
## Sodium Proton Exchangers                                                                                                                                                                                                                      
## Sos Mediated Signalling                                                                                                                                                                                                                       
## Sperm Motility And Taxes                                                                                                                                                                                                                      
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                             
## Sphingolipid Metabolism                                                                                                                                                                                                                       
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                              
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                                                   
## Stabilization Of P53                                                                                                                                                                                                                          
## Stat5 Activation                                                                                                                                                                                                                              
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                                               
## Striated Muscle Contraction                                                                                                                                                                                                                   
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                  
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                  
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                            
## Sumo Is Proteolytically Processed                                                                                                                                                                                                             
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                                  
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                                                
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                                                        
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                                       
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                                       
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                                        
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                           
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                           
## Sumoylation Of Transcription Factors                                                                                                                                                                                                          
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                                      
## Suppression Of Apoptosis                                                                                                                                                                                                                      
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                          
## Surfactant Metabolism                                                                                                                                                                                                                         
## Switching Of Origins To A Post Replicative State                                                                                                                                                                                              
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                              
## Syndecan Interactions                                                                                                                                                                                                                         
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                             
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                             
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                                                         
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                                         
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                                                      
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                                        
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                                                              
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                                                              
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                                                          
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                                 
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                               
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                                                                 
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                      
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                                                 
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                                    
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                                       
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                    
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                                    
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                      
## Synthesis Of Pa                                                                                                                                                                                                                               
## Synthesis Of Pc                                                                                                                                                                                                                               
## Synthesis Of Pe                                                                                                                                                                                                                               
## Synthesis Of Pg                                                                                                                                                                                                                               
## Synthesis Of Pi                                                                                                                                                                                                                               
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                                              
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                          
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                                       
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                                               
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                                      
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                                            
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                                    
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                                         
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                                  
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                                    
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                                                
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                                                                         
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                                                                                      
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                                         
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                                                                         
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                                         
## Tbc Rabgaps                                                                                                                                                                                                                                   
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                                    
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                                        
## Telomere Extension By Telomerase                                                                                                                                                                                                              
## Telomere Maintenance                                                                                                                                                                                                                          
## Terminal Pathway Of Complement                                                                                                                                                                                                                
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                                      
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                                                            
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                                                               
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                                                                                  
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                                   
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                                                                       
## The Activation Of Arylsulfatases                                                                                                                                                                                                              
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                                          
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                                                  
## The Fatty Acid Cycling Model                                                                                                                                                                                                                  
## The Nlrp3 Inflammasome                                                                                                                                                                                                                        
## The Phototransduction Cascade                                                                                                                                                                                                                 
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                                   
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                                                     
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                                                                 
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                                                               
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                                    
## Thyroxine Biosynthesis                                                                                                                                                                                                                        
## Tie2 Signaling                                                                                                                                                                                                                                
## Tight Junction Interactions                                                                                                                                                                                                                   
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                          
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                            
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                                       
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                                                                                                              
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                                                               
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                                              
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                                              
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                                                   
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                                                                        
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                                                                        
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                                                                        
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain                                                                                                          
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                                        
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                                                  
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                                
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                                                       
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                               
## Trafficking Of Ampa Receptors                                                                                                                                                                                                                 
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                                                
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                                           
## Trail Signaling                                                                                                                                                                                                                               
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                           
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                                                       
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                                                          
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                                                                                          
## Transcription Of The Hiv Genome                                                                                                                                                                                                               
## Transcriptional Regulation By E2f6                                                                                                                                                                                                            
## Transcriptional Regulation By Runx1                                                                                                                                                                                                           
## Transcriptional Regulation By Runx2                                                                                                                                                                                                           
## Transcriptional Regulation By Runx3                                                                                                                                                                                                           
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                                      
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                                          
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                                          
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                                                                 
## Transferrin Endocytosis And Recycling                                                                                                                                                                                                         
## Translation                                                                                                                                                                                                                                   
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                                                                                
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                                                 
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                                                 
## Translesion Synthesis By Polh                                                                                                                                                                                                                 
## Translesion Synthesis By Polk                                                                                                                                                                                                                 
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                                                                            
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                                          
## Transport And Synthesis Of Paps                                                                                                                                                                                                               
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                                                                      
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                                                 
## Transport Of Fatty Acids                                                                                                                                                                                                                      
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                                                           
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                                                                 
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                                   
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                                                                                      
## Transport Of Nucleotide Sugars                                                                                                                                                                                                                
## Transport Of Organic Anions                                                                                                                                                                                                                   
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                                   
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                                                       
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                                            
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                           
## Triglyceride Biosynthesis                                                                                                                                                                                                                     
## Triglyceride Catabolism                                                                                                                                                                                                                       
## Triglyceride Metabolism                                                                                                                                                                                                                       
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                                                         
## Trna Aminoacylation                                                                                                                                                                                                                           
## Trna Modification In The Mitochondrion                                                                                                                                                                                                        
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                                  
## Trna Processing                                                                                                                                                                                                                               
## Trna Processing In The Mitochondrion                                                                                                                                                                                                          
## Trna Processing In The Nucleus                                                                                                                                                                                                                
## Trp Channels                                                                                                                                                                                                                                  
## Tryptophan Catabolism                                                                                                                                                                                                                         
## Type I Hemidesmosome Assembly                                                                                                                                                                                                                 
## Tyrosine Catabolism                                                                                                                                                                                                                           
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                           
## Ubiquinol Biosynthesis                                                                                                                                                                                                                        
## Uch Proteinases                                                                                                                                                                                                                               
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                                                                 
## Unwinding Of Dna                                                                                                                                                                                                                              
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                                        
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                                         
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                                       
## Urea Cycle                                                                                                                                                                                                                                    
## Vasopressin Like Receptors                                                                                                                                                                                                                    
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                                                  
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                             
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                            
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                                         
## Viral Messenger Rna Synthesis                                                                                                                                                                                                                 
## Visual Phototransduction                                                                                                                                                                                                                      
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                                 
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                              
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                            
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                                
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                               
## Vitamins                                                                                                                                                                                                                                      
## Vldl Assembly                                                                                                                                                                                                                                 
## Vldl Clearance                                                                                                                                                                                                                                
## Voltage Gated Potassium Channels                                                                                                                                                                                                              
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                                
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                              
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                                
## Xenobiotics                                                                                                                                                                                                                                   
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                                                 
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                                                      
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                                               
## Zinc Transporters                                                                                                                                                                                                                             
## 
## $pml
##                                                                                                                                                                                                                                                                     label
## Cytokine Signaling In Immune System                                                                                                                                                                                                   Cytokine Signaling In Immune System
## Signaling By Interleukins                                                                                                                                                                                                                       Signaling By Interleukins
## Innate Immune System                                                                                                                                                                                                                                 Innate Immune System
## Interleukin 10 Signaling                                                                                                                                                                                                                         Interleukin 10 Signaling
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                     Interleukin 4 And Interleukin 13 Signaling
## Toll Like Receptor Cascades                                                                                                                                                                                                                   Toll Like Receptor Cascades
## Peptide Ligand Binding Receptors                                                                                                                                                                                                         Peptide Ligand Binding Receptors
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                   Chemokine Receptors Bind Chemokines
## Neutrophil Degranulation                                                                                                                                                                                                                         Neutrophil Degranulation
## Interleukin 1 Family Signaling                                                                                                                                                                                                             Interleukin 1 Family Signaling
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                       Toll Like Receptor 9 Tlr9 Cascade
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                             Myd88 Independent Tlr4 Cascade
## Gpcr Ligand Binding                                                                                                                                                                                                                                   Gpcr Ligand Binding
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                     Class A 1 Rhodopsin Like Receptors
## Signaling By Gpcr                                                                                                                                                                                                                                       Signaling By Gpcr
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                 Toll Like Receptor Tlr1 Tlr2 Cascade
## Adaptive Immune System                                                                                                                                                                                                                             Adaptive Immune System
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                         Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                       Tnfr2 Non Canonical Nf Kb Pathway
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                               Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex
## Interleukin 17 Signaling                                                                                                                                                                                                                         Interleukin 17 Signaling
## G Alpha I Signalling Events                                                                                                                                                                                                                   G Alpha I Signalling Events
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                 Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway
## Death Receptor Signalling                                                                                                                                                                                                                       Death Receptor Signalling
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                       Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1
## Programmed Cell Death                                                                                                                                                                                                                               Programmed Cell Death
## Regulated Necrosis                                                                                                                                                                                                                                     Regulated Necrosis
## Interleukin 1 Signaling                                                                                                                                                                                                                           Interleukin 1 Signaling
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                           Purinergic Signaling In Leishmaniasis Infection
## Interleukin 18 Signaling                                                                                                                                                                                                                         Interleukin 18 Signaling
## Leishmania Infection                                                                                                                                                                                                                                 Leishmania Infection
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                           Tnfs Bind Their Physiological Receptors
## Diseases Of Immune System                                                                                                                                                                                                                       Diseases Of Immune System
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                         Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell
## Costimulation By The Cd28 Family                                                                                                                                                                                                         Costimulation By The Cd28 Family
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                         Nod1 2 Signaling Pathway
## Interleukin 2 Family Signaling                                                                                                                                                                                                             Interleukin 2 Family Signaling
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                         P75ntr Signals Via Nf Kb
## Heme Signaling                                                                                                                                                                                                                                             Heme Signaling
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                             Regulation Of Tlr By Endogenous Ligand
## Complement Cascade                                                                                                                                                                                                                                     Complement Cascade
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                   Activated Tak1 Mediates P38 Mapk Activation
## Post Translational Protein Modification                                                                                                                                                                                           Post Translational Protein Modification
## Pyroptosis                                                                                                                                                                                                                                                     Pyroptosis
## Deubiquitination                                                                                                                                                                                                                                         Deubiquitination
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                             Ovarian Tumor Domain Proteases
## Interleukin 1 Processing                                                                                                                                                                                                                         Interleukin 1 Processing
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                 P75 Ntr Receptor Mediated Signalling
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                 Binding And Uptake Of Ligands By Scavenger Receptors
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                       Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs
## Apoptosis                                                                                                                                                                                                                                                       Apoptosis
## Dap12 Interactions                                                                                                                                                                                                                                     Dap12 Interactions
## Infectious Disease                                                                                                                                                                                                                                     Infectious Disease
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                   Cd28 Dependent Vav1 Pathway
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                             Cell Surface Interactions At The Vascular Wall
## Killing Mechanisms                                                                                                                                                                                                                                     Killing Mechanisms
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                           Nf Kb Is Activated And Signals Survival
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                 P75ntr Recruits Signalling Complexes
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                           Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                   Trafficking And Processing Of Endosomal Tlr
## Hemostasis                                                                                                                                                                                                                                                     Hemostasis
## Interleukin 15 Signaling                                                                                                                                                                                                                         Interleukin 15 Signaling
## Interleukin 12 Family Signaling                                                                                                                                                                                                           Interleukin 12 Family Signaling
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                         Caspase Activation Via Death Receptors In The Presence Of Ligand
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                           Sumoylation Of Dna Methylation Proteins
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                               Rip Mediated Nfkb Activation Via Zbp1
## Foxo Mediated Transcription                                                                                                                                                                                                                   Foxo Mediated Transcription
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                           Irak4 Deficiency Tlr2 4
## Scavenging By Class A Receptors                                                                                                                                                                                                           Scavenging By Class A Receptors
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                 Ticam1 Rip1 Mediated Ikk Complex Recruitment
## Scavenging Of Heme From Plasma                                                                                                                                                                                                             Scavenging Of Heme From Plasma
## Circadian Clock                                                                                                                                                                                                                                           Circadian Clock
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                     Ctla4 Inhibitory Signaling
## Inflammasomes                                                                                                                                                                                                                                               Inflammasomes
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                     Zbp1 Dai Mediated Induction Of Type I Ifns
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                         Ikk Complex Recruitment Mediated By Rip1
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                           Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                           Traf6 Mediated Nf Kb Activation
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                               Caspase Activation Via Extrinsic Apoptotic Signalling Pathway
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                         Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress
## G0 And Early G1                                                                                                                                                                                                                                           G0 And Early G1
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                     Interleukin Receptor Shc Signaling
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                 Transcriptional Regulation Of Granulopoiesis
## Pd 1 Signaling                                                                                                                                                                                                                                             Pd 1 Signaling
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                       Ripk1 Mediated Regulated Necrosis
## Interferon Gamma Signaling                                                                                                                                                                                                                     Interferon Gamma Signaling
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                               Mapk6 Mapk4 Signaling
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                         Tnfr1 Induced Nfkappab Signaling Pathway
## Cellular Responses To External Stimuli                                                                                                                                                                                             Cellular Responses To External Stimuli
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                   Mapk Targets Nuclear Events Mediated By Map Kinases
## Nicotinate Metabolism                                                                                                                                                                                                                               Nicotinate Metabolism
## Perk Regulates Gene Expression                                                                                                                                                                                                             Perk Regulates Gene Expression
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                             Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                       Clec7a Dectin 1 Signaling
## Vesicle Mediated Transport                                                                                                                                                                                                                     Vesicle Mediated Transport
## Cargo Concentration In The Er                                                                                                                                                                                                               Cargo Concentration In The Er
## Cd28 Co Stimulation                                                                                                                                                                                                                                   Cd28 Co Stimulation
## Diseases Of Programmed Cell Death                                                                                                                                                                                                       Diseases Of Programmed Cell Death
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                               Regulation Of Tnfr1 Signaling
## Antigen Processing Cross Presentation                                                                                                                                                                                               Antigen Processing Cross Presentation
## Mapk Family Signaling Cascades                                                                                                                                                                                                             Mapk Family Signaling Cascades
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                     Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                           Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps
## Tcr Signaling                                                                                                                                                                                                                                               Tcr Signaling
## Tnf Signaling                                                                                                                                                                                                                                               Tnf Signaling
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                     Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer
## Interleukin 12 Signaling                                                                                                                                                                                                                         Interleukin 12 Signaling
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                         Interleukin 3 Interleukin 5 And Gm Csf Signaling
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                   Response To Elevated Platelet Cytosolic Ca2
## Netrin 1 Signaling                                                                                                                                                                                                                                     Netrin 1 Signaling
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                 C Type Lectin Receptors Clrs
## Rna Polymerase Ii Transcription                                                                                                                                                                                                           Rna Polymerase Ii Transcription
## Alternative Complement Activation                                                                                                                                                                                                       Alternative Complement Activation
## Fasl Cd95l Signaling                                                                                                                                                                                                                                 Fasl Cd95l Signaling
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                           G2 M Dna Replication Checkpoint
## Galactose Catabolism                                                                                                                                                                                                                                 Galactose Catabolism
## Hdl Clearance                                                                                                                                                                                                                                               Hdl Clearance
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                           Intrinsic Pathway For Apoptosis
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                               Mecp2 Regulates Transcription Factors
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                       Nostrin Mediated Enos Trafficking
## Platelet Activation Signaling And Aggregation                                                                                                                                                                               Platelet Activation Signaling And Aggregation
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                       Rhoj Gtpase Cycle
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                         Epigenetic Regulation Of Gene Expression
## Er To Golgi Anterograde Transport                                                                                                                                                                                                       Er To Golgi Anterograde Transport
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                       Rhoq Gtpase Cycle
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                         Biosynthesis Of Epa Derived Spms
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                   Clec7a Inflammasome Pathway
## Fibronectin Matrix Formation                                                                                                                                                                                                                 Fibronectin Matrix Formation
## Phosphorylation Of Emi1                                                                                                                                                                                                                           Phosphorylation Of Emi1
## Scavenging By Class B Receptors                                                                                                                                                                                                           Scavenging By Class B Receptors
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 15 Eicosatetraenoic Acid Derivatives
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                 Tlr3 Mediated Ticam1 Dependent Programmed Cell Death
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                     Tnfr1 Mediated Ceramide Production
## Ca2 Pathway                                                                                                                                                                                                                                                   Ca2 Pathway
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                 Cytosolic Sensors Of Pathogen Associated Dna
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                   Transcriptional Regulation By Mecp2
## Dna Methylation                                                                                                                                                                                                                                           Dna Methylation
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                       Activation Of Nima Kinases Nek9 Nek6 Nek7
## Creb Phosphorylation                                                                                                                                                                                                                                 Creb Phosphorylation
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                 Ikba Variant Leads To Eda Id
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells
## Copii Mediated Vesicle Transport                                                                                                                                                                                                         Copii Mediated Vesicle Transport
## Activation Of C3 And C5                                                                                                                                                                                                                           Activation Of C3 And C5
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                     Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                 Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde
## Hdl Assembly                                                                                                                                                                                                                                                 Hdl Assembly
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                             Inactivation Of Cdc42 And Rac1
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                       Mecp2 Regulates Transcription Of Neuronal Ligands
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                               Runx3 Regulates Wnt Signaling
## Interferon Alpha Beta Signaling                                                                                                                                                                                                           Interferon Alpha Beta Signaling
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                         Prc2 Methylates Histones And Dna
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                             Signaling By Tgf Beta Receptor Complex
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                 Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                               Cd163 Mediating An Anti Inflammatory Response
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                   E2f Enabled Inhibition Of Pre Replication Complex Formation
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                         Extra Nuclear Estrogen Signaling
## Interleukin 23 Signaling                                                                                                                                                                                                                         Interleukin 23 Signaling
## Interleukin 9 Signaling                                                                                                                                                                                                                           Interleukin 9 Signaling
## Rhog Gtpase Cycle                                                                                                                                                                                                                                       Rhog Gtpase Cycle
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                   Trif Mediated Programmed Cell Death
## Sumoylation                                                                                                                                                                                                                                                   Sumoylation
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                     Transport To The Golgi And Subsequent Modification
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                 Metabolism Of Vitamins And Cofactors
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                             Activation Of The Ap 1 Family Of Transcription Factors
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                       Akt Phosphorylates Targets In The Nucleus
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                         Camk Iv Mediated Phosphorylation Of Creb
## Chylomicron Assembly                                                                                                                                                                                                                                 Chylomicron Assembly
## Chylomicron Remodeling                                                                                                                                                                                                                             Chylomicron Remodeling
## Hdl Remodeling                                                                                                                                                                                                                                             Hdl Remodeling
## Interleukin 21 Signaling                                                                                                                                                                                                                         Interleukin 21 Signaling
## Mapk3 Erk1 Activation                                                                                                                                                                                                                               Mapk3 Erk1 Activation
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                               Mastl Facilitates Mitotic Progression
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                     Regulation Of Foxo Transcriptional Activity By Acetylation
## Initial Triggering Of Complement                                                                                                                                                                                                         Initial Triggering Of Complement
## Cellular Senescence                                                                                                                                                                                                                                   Cellular Senescence
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                         Condensation Of Prometaphase Chromosomes
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                               Dermatan Sulfate Biosynthesis
## Dscam Interactions                                                                                                                                                                                                                                     Dscam Interactions
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                     Endosomal Vacuolar Pathway
## Enos Activation                                                                                                                                                                                                                                           Enos Activation
## Interleukin 27 Signaling                                                                                                                                                                                                                         Interleukin 27 Signaling
## Interleukin 6 Signaling                                                                                                                                                                                                                           Interleukin 6 Signaling
## Receptor Mediated Mitophagy                                                                                                                                                                                                                   Receptor Mediated Mitophagy
## Regulation By C Flip                                                                                                                                                                                                                                 Regulation By C Flip
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                       Rho Gtpases Activate Ktn1
## Signaling By Leptin                                                                                                                                                                                                                                   Signaling By Leptin
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                           Sumoylation Of Immune Response Proteins
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                         Ticam1 Traf6 Dependent Induction Of Tak1 Complex
## Interferon Signaling                                                                                                                                                                                                                                 Interferon Signaling
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                       Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase
## Interleukin 2 Signaling                                                                                                                                                                                                                           Interleukin 2 Signaling
## Interleukin 35 Signalling                                                                                                                                                                                                                       Interleukin 35 Signalling
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch2 Intracellular Domain Regulates Transcription
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                       Rac2 Gtpase Cycle
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                       Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                             Signaling By Receptor Tyrosine Kinases
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                               Tandem Pore Domain Potassium Channels
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                         Ticam1 Dependent Activation Of Irf3 Irf7
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                 Advanced Glycosylation Endproduct Receptor Signaling
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                   Apoptosis Induced Dna Fragmentation
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                               Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                     Dissolution Of Fibrin Clot
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                             Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                         Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                 Tnfr1 Induced Proapoptotic Signaling
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                               Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2
## Unfolded Protein Response Upr                                                                                                                                                                                                               Unfolded Protein Response Upr
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                   Class B 2 Secretin Family Receptors
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                       Rac3 Gtpase Cycle
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                       Dcc Mediated Attractive Signaling
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                               Early Phase Of Hiv Life Cycle
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                   Golgi Cisternae Pericentriolar Stack Reorganization
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                     Irak1 Recruits Ikk Complex
## Repression Of Wnt Target Genes                                                                                                                                                                                                             Repression Of Wnt Target Genes
## Antimicrobial Peptides                                                                                                                                                                                                                             Antimicrobial Peptides
## Esr Mediated Signaling                                                                                                                                                                                                                             Esr Mediated Signaling
## Ub Specific Processing Proteases                                                                                                                                                                                                         Ub Specific Processing Proteases
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                             Depolymerisation Of The Nuclear Lamina
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                       Metabolism Of Nitric Oxide Nos3 Activation And Regulation
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                         Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                     Synthesis Of Prostaglandins Pg And Thromboxanes Tx
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                           Wnt5a Dependent Internalization Of Fzd4
## Copi Mediated Anterograde Transport                                                                                                                                                                                                   Copi Mediated Anterograde Transport
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Death Genes
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                         Nrif Signals Cell Death From The Nucleus
## Signaling By Tgfb Family Members                                                                                                                                                                                                         Signaling By Tgfb Family Members
## The Nlrp3 Inflammasome                                                                                                                                                                                                                             The Nlrp3 Inflammasome
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                 Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                 Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                 Pi3k Akt Signaling In Cancer
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                     Tcf Dependent Signaling In Response To Wnt
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                 Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                           Foxo Mediated Transcription Of Cell Cycle Genes
## Signaling By Vegf                                                                                                                                                                                                                                       Signaling By Vegf
## Transcriptional Regulation By Runx1                                                                                                                                                                                                   Transcriptional Regulation By Runx1
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                         Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Negative Epigenetic Regulation Of Rrna Expression
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                               Abc Transporters In Lipid Homeostasis
## Amyloid Fiber Formation                                                                                                                                                                                                                           Amyloid Fiber Formation
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                               Diseases Associated With Glycosylation Precursor Biosynthesis
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                         Gastrin Creb Signalling Pathway Via Pkc And Mapk
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                           Mecp2 Regulates Neuronal Receptors And Channels
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                   Signaling By Cytosolic Fgfr1 Fusion Mutants
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                             Senescence Associated Secretory Phenotype Sasp
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                           Biosynthesis Of Specialized Proresolving Mediators Spms
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                               Initiation Of Nuclear Envelope Ne Reformation
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                   Negative Regulation Of The Pi3k Akt Network
## Nicotinamide Salvaging                                                                                                                                                                                                                             Nicotinamide Salvaging
## Other Semaphorin Interactions                                                                                                                                                                                                               Other Semaphorin Interactions
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                     Phase 4 Resting Membrane Potential
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                   Plasma Lipoprotein Assembly
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                 Transcription Of E2f Targets Under Negative Control By Dream Complex
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                               G Beta Gamma Signalling Through Cdc42
## Phosphorylation Of The Apc C                                                                                                                                                                                                                 Phosphorylation Of The Apc C
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                 Pka Mediated Phosphorylation Of Creb
## Signaling By Kit In Disease                                                                                                                                                                                                                   Signaling By Kit In Disease
## Signaling By Pdgfr In Disease                                                                                                                                                                                                               Signaling By Pdgfr In Disease
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                               Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                 Branched Chain Amino Acid Catabolism
## Interleukin 37 Signaling                                                                                                                                                                                                                         Interleukin 37 Signaling
## Rho Gtpases Activate Paks                                                                                                                                                                                                                       Rho Gtpases Activate Paks
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                       Cd28 Dependent Pi3k Akt Signaling
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                   Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                     E2f Mediated Regulation Of Dna Replication
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                               Pink1 Prkn Mediated Mitophagy
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                     Metabolism Of Water Soluble Vitamins And Cofactors
## Cytoprotection By Hmox1                                                                                                                                                                                                                           Cytoprotection By Hmox1
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                               Incretin Synthesis Secretion And Inactivation
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                       Mhc Class Ii Antigen Presentation
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                     Raf Independent Mapk1 3 Activation
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                 Apc C Cdc20 Mediated Degradation Of Cyclin B
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                             Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling
## Growth Hormone Receptor Signaling                                                                                                                                                                                                       Growth Hormone Receptor Signaling
## Interleukin 6 Family Signaling                                                                                                                                                                                                             Interleukin 6 Family Signaling
## Triglyceride Catabolism                                                                                                                                                                                                                           Triglyceride Catabolism
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                         Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc
## Basigin Interactions                                                                                                                                                                                                                                 Basigin Interactions
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                           Cyclin A B1 B2 Associated Events During G2 M Transition
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                 Inactivation Of Csf3 G Csf Signaling
## Signaling By Ntrks                                                                                                                                                                                                                                     Signaling By Ntrks
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                               Constitutive Signaling By Akt1 E17k In Cancer
## Interleukin 20 Family Signaling                                                                                                                                                                                                           Interleukin 20 Family Signaling
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                               Wnt Ligand Biogenesis And Trafficking
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                               Bmal1 Clock Npas2 Activates Circadian Gene Expression
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                         Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                               Vegfr2 Mediated Vascular Permeability
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                           Activation Of Bh3 Only Proteins
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                             Beta Catenin Independent Wnt Signaling
## Dap12 Signaling                                                                                                                                                                                                                                           Dap12 Signaling
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                             Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane
## Downstream Signal Transduction                                                                                                                                                                                                             Downstream Signal Transduction
## Egfr Downregulation                                                                                                                                                                                                                                   Egfr Downregulation
## Extracellular Matrix Organization                                                                                                                                                                                                       Extracellular Matrix Organization
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr1 Mutant Receptor Activation
## G1 S Specific Transcription                                                                                                                                                                                                                   G1 S Specific Transcription
## Mitophagy                                                                                                                                                                                                                                                       Mitophagy
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                 Mitotic G1 Phase And G1 S Transition
## Myogenesis                                                                                                                                                                                                                                                     Myogenesis
## Signaling By Csf3 G Csf                                                                                                                                                                                                                           Signaling By Csf3 G Csf
## Signaling By Nuclear Receptors                                                                                                                                                                                                             Signaling By Nuclear Receptors
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                 Transcriptional Regulation Of Pluripotent Stem Cells
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                           Activation Of Matrix Metalloproteinases
## Asparagine N Linked Glycosylation                                                                                                                                                                                                       Asparagine N Linked Glycosylation
## G Protein Beta Gamma Signalling                                                                                                                                                                                                           G Protein Beta Gamma Signalling
## Intracellular Signaling By Second Messengers                                                                                                                                                                                 Intracellular Signaling By Second Messengers
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                 Negative Regulators Of Ddx58 Ifih1 Signaling
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                 Plasma Lipoprotein Clearance
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                               Plasma Lipoprotein Remodeling
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                   Regulation Of Mecp2 Expression And Activity
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                   Rho Gtpases Activate Iqgaps
## Rhou Gtpase Cycle                                                                                                                                                                                                                                       Rhou Gtpase Cycle
## Rhov Gtpase Cycle                                                                                                                                                                                                                                       Rhov Gtpase Cycle
## Signaling By Notch2                                                                                                                                                                                                                                   Signaling By Notch2
## Ca Dependent Events                                                                                                                                                                                                                                   Ca Dependent Events
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                     Cdc42 Gtpase Cycle
## Cellular Response To Chemical Stress                                                                                                                                                                                                 Cellular Response To Chemical Stress
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                         Gpvi Mediated Activation Cascade
## Interleukin 7 Signaling                                                                                                                                                                                                                           Interleukin 7 Signaling
## Metalloprotease Dubs                                                                                                                                                                                                                                 Metalloprotease Dubs
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                 Nuclear Pore Complex Npc Disassembly
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                               Regulation Of Tp53 Expression And Degradation
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                 Rho Gtpases Activate Wasps And Waves
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                       Rhoh Gtpase Cycle
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                 Ros And Rns Production In Phagocytes
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                         Association Of Tric Cct With Target Proteins During Biosynthesis
## Generation Of Second Messenger Molecules                                                                                                                                                                                         Generation Of Second Messenger Molecules
## Ngf Stimulated Transcription                                                                                                                                                                                                                 Ngf Stimulated Transcription
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                               Signaling By Fgfr1 In Disease
## Signaling By Wnt                                                                                                                                                                                                                                         Signaling By Wnt
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                 Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors
## Triglyceride Metabolism                                                                                                                                                                                                                           Triglyceride Metabolism
## Beta Defensins                                                                                                                                                                                                                                             Beta Defensins
## Dag And Ip3 Signaling                                                                                                                                                                                                                               Dag And Ip3 Signaling
## Ephb Mediated Forward Signaling                                                                                                                                                                                                           Ephb Mediated Forward Signaling
## Rhof Gtpase Cycle                                                                                                                                                                                                                                       Rhof Gtpase Cycle
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                       Rnd1 Gtpase Cycle
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                       Rnd2 Gtpase Cycle
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                       Rnd3 Gtpase Cycle
## Signaling By Scf Kit                                                                                                                                                                                                                                 Signaling By Scf Kit
## Developmental Biology                                                                                                                                                                                                                               Developmental Biology
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                   Fc Epsilon Receptor Fceri Signaling
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                       Rac1 Gtpase Cycle
## Irs Mediated Signalling                                                                                                                                                                                                                           Irs Mediated Signalling
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                     Metabolism Of Fat Soluble Vitamins
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch1 Intracellular Domain Regulates Transcription
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Cycle Genes
## Apoptotic Execution Phase                                                                                                                                                                                                                       Apoptotic Execution Phase
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                           Chondroitin Sulfate Dermatan Sulfate Metabolism
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                 Class I Mhc Mediated Antigen Processing Presentation
## Defensins                                                                                                                                                                                                                                                       Defensins
## Rhod Gtpase Cycle                                                                                                                                                                                                                                       Rhod Gtpase Cycle
## Signaling By Egfr                                                                                                                                                                                                                                       Signaling By Egfr
## G Protein Mediated Events                                                                                                                                                                                                                       G Protein Mediated Events
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                   Insulin Receptor Signalling Cascade
## Nervous System Development                                                                                                                                                                                                                     Nervous System Development
## Nuclear Envelope Breakdown                                                                                                                                                                                                                     Nuclear Envelope Breakdown
## Signaling By Ptk6                                                                                                                                                                                                                                       Signaling By Ptk6
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                           Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                             Transcriptional Activation Of Mitochondrial Biogenesis
## G Alpha Q Signalling Events                                                                                                                                                                                                                   G Alpha Q Signalling Events
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                       Signaling By Notch1 Pest Domain Mutants In Cancer
## Signaling By Pdgf                                                                                                                                                                                                                                       Signaling By Pdgf
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                     Anti Inflammatory Response Favouring Leishmania Parasite Infection
## Arachidonic Acid Metabolism                                                                                                                                                                                                                   Arachidonic Acid Metabolism
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                             Dectin 1 Mediated Noncanonical Nf Kb Signaling
## Nrage Signals Death Through Jnk                                                                                                                                                                                                           Nrage Signals Death Through Jnk
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                       Nuclear Events Kinase And Transcription Factor Activation
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                           Asymmetric Localization Of Pcp Proteins
## Collagen Degradation                                                                                                                                                                                                                                 Collagen Degradation
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                               Ncam Signaling For Neurite Out Growth
## Semaphorin Interactions                                                                                                                                                                                                                           Semaphorin Interactions
## Signaling By Fgfr In Disease                                                                                                                                                                                                                 Signaling By Fgfr In Disease
## Membrane Trafficking                                                                                                                                                                                                                                 Membrane Trafficking
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                     Sirt1 Negatively Regulates Rrna Expression
## Aurka Activation By Tpx2                                                                                                                                                                                                                         Aurka Activation By Tpx2
## Creation Of C4 And C2 Activators                                                                                                                                                                                                         Creation Of C4 And C2 Activators
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                 Plasma Lipoprotein Assembly Remodeling And Clearance
## Rhob Gtpase Cycle                                                                                                                                                                                                                                       Rhob Gtpase Cycle
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                 Condensation Of Prophase Chromosomes
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                       Rhoc Gtpase Cycle
## Signaling By Notch                                                                                                                                                                                                                                     Signaling By Notch
## Signaling By Notch1                                                                                                                                                                                                                                   Signaling By Notch1
## Abc Transporter Disorders                                                                                                                                                                                                                       Abc Transporter Disorders
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                               Cell Death Signalling Via Nrage Nrif And Nade
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                       Constitutive Signaling By Aberrant Pi3k In Cancer
## Dna Double Strand Break Response                                                                                                                                                                                                         Dna Double Strand Break Response
## Ecm Proteoglycans                                                                                                                                                                                                                                       Ecm Proteoglycans
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                             Nuclear Envelope Ne Reassembly
## Rmts Methylate Histone Arginines                                                                                                                                                                                                         Rmts Methylate Histone Arginines
## Signaling By Insulin Receptor                                                                                                                                                                                                               Signaling By Insulin Receptor
## Signaling By Met                                                                                                                                                                                                                                         Signaling By Met
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                       The Role Of Gtse1 In G2 M Progression After G2 Checkpoint
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                     Downstream Signaling Events Of B Cell Receptor Bcr
## Potential Therapeutics For Sars                                                                                                                                                                                                           Potential Therapeutics For Sars
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                         Recruitment Of Mitotic Centrosome Proteins And Complexes
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                           Regulation Of Hsf1 Mediated Heat Shock Response
## Selective Autophagy                                                                                                                                                                                                                                   Selective Autophagy
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                         Cyclin A Cdk2 Associated Events At S Phase Entry
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                             Degradation Of Beta Catenin By The Destruction Complex
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                               Transcriptional Regulation Of White Adipocyte Differentiation
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                       Apc C Mediated Degradation Of Cell Cycle Proteins
## Fceri Mediated Mapk Activation                                                                                                                                                                                                             Fceri Mediated Mapk Activation
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                             Regulation Of Plk1 Activity At G2 M Transition
## Eph Ephrin Signaling                                                                                                                                                                                                                                 Eph Ephrin Signaling
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                       Formation Of The Beta Catenin Tcf Transactivating Complex
## Opioid Signalling                                                                                                                                                                                                                                       Opioid Signalling
## Pcp Ce Pathway                                                                                                                                                                                                                                             Pcp Ce Pathway
## Peptide Hormone Metabolism                                                                                                                                                                                                                     Peptide Hormone Metabolism
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                 Activation Of Nmda Receptors And Postsynaptic Events
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                     Anchoring Of The Basal Body To The Plasma Membrane
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                             Fcgr3a Mediated Il10 Synthesis
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                     G2 M Dna Damage Checkpoint
## Metabolism Of Carbohydrates                                                                                                                                                                                                                   Metabolism Of Carbohydrates
## Mitochondrial Biogenesis                                                                                                                                                                                                                         Mitochondrial Biogenesis
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                     Post Translational Modification Synthesis Of Gpi Anchored Proteins
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                     Recruitment Of Numa To Mitotic Centrosomes
## Transcriptional Regulation By Runx3                                                                                                                                                                                                   Transcriptional Regulation By Runx3
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                 Organelle Biogenesis And Maintenance
## Protein Folding                                                                                                                                                                                                                                           Protein Folding
## Visual Phototransduction                                                                                                                                                                                                                         Visual Phototransduction
## Abc Family Proteins Mediated Transport                                                                                                                                                                                             Abc Family Proteins Mediated Transport
## Cellular Response To Heat Stress                                                                                                                                                                                                         Cellular Response To Heat Stress
## Potassium Channels                                                                                                                                                                                                                                     Potassium Channels
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                   Cargo Recognition For Clathrin Mediated Endocytosis
## Parasite Infection                                                                                                                                                                                                                                     Parasite Infection
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                   Regulation Of Lipid Metabolism By Pparalpha
## Transcriptional Regulation By Runx2                                                                                                                                                                                                   Transcriptional Regulation By Runx2
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                 Glycosaminoglycan Metabolism
## Cardiac Conduction                                                                                                                                                                                                                                     Cardiac Conduction
## Oxidative Stress Induced Senescence                                                                                                                                                                                                   Oxidative Stress Induced Senescence
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                           Resolution Of Sister Chromatid Cohesion
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                           Adora2b Mediated Anti Inflammatory Cytokines Production
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                           Fceri Mediated Nf Kb Activation
## Degradation Of The Extracellular Matrix                                                                                                                                                                                           Degradation Of The Extracellular Matrix
## Hcmv Early Events                                                                                                                                                                                                                                       Hcmv Early Events
## Rho Gtpases Activate Formins                                                                                                                                                                                                                 Rho Gtpases Activate Formins
## Clathrin Mediated Endocytosis                                                                                                                                                                                                               Clathrin Mediated Endocytosis
## Diseases Of Glycosylation                                                                                                                                                                                                                       Diseases Of Glycosylation
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                 Fcgamma Receptor Fcgr Dependent Phagocytosis
## Mitotic Prophase                                                                                                                                                                                                                                         Mitotic Prophase
## Sars Cov Infections                                                                                                                                                                                                                                   Sars Cov Infections
## Autophagy                                                                                                                                                                                                                                                       Autophagy
## Estrogen Dependent Gene Expression                                                                                                                                                                                                     Estrogen Dependent Gene Expression
## Hiv Life Cycle                                                                                                                                                                                                                                             Hiv Life Cycle
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                       Rhoa Gtpase Cycle
## Regulation Of Tp53 Activity                                                                                                                                                                                                                   Regulation Of Tp53 Activity
## Hcmv Infection                                                                                                                                                                                                                                             Hcmv Infection
## Neuronal System                                                                                                                                                                                                                                           Neuronal System
## S Phase                                                                                                                                                                                                                                                           S Phase
## Dna Double Strand Break Repair                                                                                                                                                                                                             Dna Double Strand Break Repair
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                               Factors Involved In Megakaryocyte Development And Platelet Production
## G2 M Checkpoints                                                                                                                                                                                                                                         G2 M Checkpoints
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                 Signaling By The B Cell Receptor Bcr
## Disorders Of Transmembrane Transporters                                                                                                                                                                                           Disorders Of Transmembrane Transporters
## Fatty Acid Metabolism                                                                                                                                                                                                                               Fatty Acid Metabolism
## Rho Gtpase Cycle                                                                                                                                                                                                                                         Rho Gtpase Cycle
## Muscle Contraction                                                                                                                                                                                                                                     Muscle Contraction
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                             Mitotic G2 G2 M Phases
## Cilium Assembly                                                                                                                                                                                                                                           Cilium Assembly
## Metabolism Of Lipids                                                                                                                                                                                                                                 Metabolism Of Lipids
## Mitotic Prometaphase                                                                                                                                                                                                                                 Mitotic Prometaphase
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                           Neurotransmitter Receptors And Postsynaptic Signal Transmission
## Signaling By Robo Receptors                                                                                                                                                                                                                   Signaling By Robo Receptors
## Hiv Infection                                                                                                                                                                                                                                               Hiv Infection
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                             Mitotic Metaphase And Anaphase
## Diseases Of Metabolism                                                                                                                                                                                                                             Diseases Of Metabolism
## Cell Cycle Mitotic                                                                                                                                                                                                                                     Cell Cycle Mitotic
## Transmission Across Chemical Synapses                                                                                                                                                                                               Transmission Across Chemical Synapses
## Chromatin Modifying Enzymes                                                                                                                                                                                                                   Chromatin Modifying Enzymes
## Cell Cycle Checkpoints                                                                                                                                                                                                                             Cell Cycle Checkpoints
## Rho Gtpase Effectors                                                                                                                                                                                                                                 Rho Gtpase Effectors
## Dna Repair                                                                                                                                                                                                                                                     Dna Repair
## Cell Cycle                                                                                                                                                                                                                                                     Cell Cycle
## Transcriptional Regulation By Tp53                                                                                                                                                                                                     Transcriptional Regulation By Tp53
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                       Metabolism Of Amino Acids And Derivatives
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                       Signaling By Rho Gtpases Miro Gtpases And Rhobtb3
## M Phase                                                                                                                                                                                                                                                           M Phase
## Sensory Perception                                                                                                                                                                                                                                     Sensory Perception
## Transport Of Small Molecules                                                                                                                                                                                                                 Transport Of Small Molecules
## 2 Ltr Circle Formation                                                                                                                                                                                                                             2 Ltr Circle Formation
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                           A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis
## Abacavir Metabolism                                                                                                                                                                                                                                   Abacavir Metabolism
## Abacavir Transmembrane Transport                                                                                                                                                                                                         Abacavir Transmembrane Transport
## Abacavir Transport And Metabolism                                                                                                                                                                                                       Abacavir Transport And Metabolism
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                         Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                   Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                               Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                   Acetylcholine Binding And Downstream Events
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                             Acetylcholine Inhibits Contraction Of Outer Hair Cells
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                 Acetylcholine Neurotransmitter Release Cycle
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                       Acetylcholine Regulates Insulin Secretion
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                   Acrosome Reaction And Sperm Oocyte Membrane Binding
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                         Activated Notch1 Transmits Signal To The Nucleus
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                 Activated Ntrk2 Signals Through Cdk5
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                               Activated Ntrk2 Signals Through Frs2 And Frs3
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                   Activated Ntrk2 Signals Through Fyn
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk2 Signals Through Pi3k
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk2 Signals Through Ras
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                 Activated Ntrk3 Signals Through Pi3k
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                   Activated Ntrk3 Signals Through Ras
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                               Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                           Activation Of Ampk Downstream Of Nmdars
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                 Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                   Activation Of Atr In Response To Replication Stress
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                   Activation Of Bad And Translocation To Mitochondria
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                   Activation Of Caspases Through Apoptosome Mediated Cleavage
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                 Activation Of Gene Expression By Srebf Srebp
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                             Activation Of Kainate Receptors Upon Glutamate Binding
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                 Activation Of Noxa And Translocation To Mitochondria
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                 Activation Of Ppargc1a Pgc 1alpha By Phosphorylation
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                 Activation Of Puma And Translocation To Mitochondria
## Activation Of Rac1                                                                                                                                                                                                                                     Activation Of Rac1
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                           Activation Of Rac1 Downstream Of Nmdars
## Activation Of Ras In B Cells                                                                                                                                                                                                                 Activation Of Ras In B Cells
## Activation Of Smo                                                                                                                                                                                                                                       Activation Of Smo
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                               Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s
## Activation Of The Phototransduction Cascade                                                                                                                                                                                   Activation Of The Phototransduction Cascade
## Activation Of The Pre Replicative Complex                                                                                                                                                                                       Activation Of The Pre Replicative Complex
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                 Activation Of The Tfap2 Ap 2 Family Of Transcription Factors
## Activation Of Trka Receptors                                                                                                                                                                                                                 Activation Of Trka Receptors
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                   Acyl Chain Remodeling Of Cl
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                 Acyl Chain Remodeling Of Dag And Tag
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pc
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pe
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pg
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                 Acyl Chain Remodelling Of Pi
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                 Acyl Chain Remodelling Of Ps
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                 Adenylate Cyclase Activating Pathway
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                 Adenylate Cyclase Inhibitory Pathway
## Adherens Junctions Interactions                                                                                                                                                                                                           Adherens Junctions Interactions
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                       Adp Signalling Through P2y Purinoceptor 1
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                     Adp Signalling Through P2y Purinoceptor 12
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                   Adrenaline Noradrenaline Inhibits Insulin Secretion
## Adrenoceptors                                                                                                                                                                                                                                               Adrenoceptors
## Aflatoxin Activation And Detoxification                                                                                                                                                                                           Aflatoxin Activation And Detoxification
## Aggrephagy                                                                                                                                                                                                                                                     Aggrephagy
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                       Akt Phosphorylates Targets In The Cytosol
## Alpha Defensins                                                                                                                                                                                                                                           Alpha Defensins
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                     Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                 Alpha Oxidation Of Phytanate
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                         Alpha Protein Kinase 1 Signaling Pathway
## Amine Ligand Binding Receptors                                                                                                                                                                                                             Amine Ligand Binding Receptors
## Amino Acid Conjugation                                                                                                                                                                                                                             Amino Acid Conjugation
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                           Amino Acid Transport Across The Plasma Membrane
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                   Amino Acids Regulate Mtorc1
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                         Ampk Inhibits Chrebp Transcriptional Activation Activity
## Anchoring Fibril Formation                                                                                                                                                                                                                     Anchoring Fibril Formation
## Androgen Biosynthesis                                                                                                                                                                                                                               Androgen Biosynthesis
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                         Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                         Antigen Processing Ubiquitination Proteasome Degradation
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                   Antiviral Mechanism By Ifn Stimulated Genes
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                         Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                           Apc Cdc20 Mediated Degradation Of Nek2a
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                             Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                           Apobec3g Mediated Resistance To Hiv 1 Infection
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                 Apoptotic Cleavage Of Cell Adhesion Proteins
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                           Apoptotic Cleavage Of Cellular Proteins
## Apoptotic Factor Mediated Response                                                                                                                                                                                                     Apoptotic Factor Mediated Response
## Aquaporin Mediated Transport                                                                                                                                                                                                                 Aquaporin Mediated Transport
## Arachidonate Production From Dag                                                                                                                                                                                                         Arachidonate Production From Dag
## Arms Mediated Activation                                                                                                                                                                                                                         Arms Mediated Activation
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                 Aryl Hydrocarbon Receptor Signalling
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                   Aspartate And Asparagine Metabolism
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                         Assembly And Cell Surface Presentation Of Nmda Receptors
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                         Assembly Of Active Lpl And Lipc Lipase Complexes
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                 Assembly Of Collagen Fibrils And Other Multimeric Structures
## Assembly Of The Hiv Virion                                                                                                                                                                                                                     Assembly Of The Hiv Virion
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                         Assembly Of The Orc Complex At The Origin Of Replication
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                           Assembly Of The Pre Replicative Complex
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                       Atf6 Atf6 Alpha Activates Chaperone Genes
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                 Atf6 Atf6 Alpha Activates Chaperones
## Attachment And Entry                                                                                                                                                                                                                                 Attachment And Entry
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                         Attachment Of Gpi Anchor To Upar
## Attenuation Phase                                                                                                                                                                                                                                       Attenuation Phase
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                       Auf1 Hnrnp D0 Binds And Destabilizes Mrna
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                   B Wich Complex Positively Regulates Rrna Expression
## Base Excision Repair                                                                                                                                                                                                                                 Base Excision Repair
## Base Excision Repair Ap Site Formation                                                                                                                                                                                             Base Excision Repair Ap Site Formation
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                       Bbsome Mediated Cargo Targeting To Cilium
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                 Beta Catenin Phosphorylation Cascade
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                 Beta Oxidation Of Butanoyl Coa To Acetyl Coa
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                     Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                             Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                       Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                             Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                         Beta Oxidation Of Pristanoyl Coa
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                               Beta Oxidation Of Very Long Chain Fatty Acids
## Bicarbonate Transporters                                                                                                                                                                                                                         Bicarbonate Transporters
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                     Bile Acid And Bile Salt Metabolism
## Biological Oxidations                                                                                                                                                                                                                               Biological Oxidations
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                       Biosynthesis Of Maresin Like Spms
## Biosynthesis Of Maresins                                                                                                                                                                                                                         Biosynthesis Of Maresins
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                     Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein
## Biotin Transport And Metabolism                                                                                                                                                                                                           Biotin Transport And Metabolism
## Blood Group Systems Biosynthesis                                                                                                                                                                                                         Blood Group Systems Biosynthesis
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                 Budding And Maturation Of Hiv Virion
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                   Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                 Butyrophilin Btn Family Interactions
## Ca2 Activated K Channels                                                                                                                                                                                                                         Ca2 Activated K Channels
## Calcineurin Activates Nfat                                                                                                                                                                                                                     Calcineurin Activates Nfat
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                         Calcitonin Like Ligand Receptors
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                   Calnexin Calreticulin Cycle
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                   Carboxyterminal Post Translational Modifications Of Tubulin
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                               Cargo Trafficking To The Periciliary Membrane
## Carnitine Metabolism                                                                                                                                                                                                                                 Carnitine Metabolism
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                 Caspase Activation Via Dependence Receptors In The Absence Of Ligand
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                     Caspase Mediated Cleavage Of Cytoskeletal Proteins
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                             Cation Coupled Chloride Cotransporters
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                           Cd209 Dc Sign Signaling
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                 Cd22 Mediated Bcr Regulation
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                 Cdc6 Association With The Orc Origin Complex
## Cell Cell Communication                                                                                                                                                                                                                           Cell Cell Communication
## Cell Cell Junction Organization                                                                                                                                                                                                           Cell Cell Junction Organization
## Cell Extracellular Matrix Interactions                                                                                                                                                                                             Cell Extracellular Matrix Interactions
## Cell Junction Organization                                                                                                                                                                                                                     Cell Junction Organization
## Cellular Hexose Transport                                                                                                                                                                                                                       Cellular Hexose Transport
## Cellular Response To Hypoxia                                                                                                                                                                                                                 Cellular Response To Hypoxia
## Cellular Response To Starvation                                                                                                                                                                                                           Cellular Response To Starvation
## Cgmp Effects                                                                                                                                                                                                                                                 Cgmp Effects
## Chaperone Mediated Autophagy                                                                                                                                                                                                                 Chaperone Mediated Autophagy
## Chl1 Interactions                                                                                                                                                                                                                                       Chl1 Interactions
## Cholesterol Biosynthesis                                                                                                                                                                                                                         Cholesterol Biosynthesis
## Choline Catabolism                                                                                                                                                                                                                                     Choline Catabolism
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                         Chondroitin Sulfate Biosynthesis
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                     Chrebp Activates Metabolic Gene Expression
## Chromosome Maintenance                                                                                                                                                                                                                             Chromosome Maintenance
## Chylomicron Clearance                                                                                                                                                                                                                               Chylomicron Clearance
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                   Citric Acid Cycle Tca Cycle
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                 Class C 3 Metabotropic Glutamate Pheromone Receptors
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                   Class I Peroxisomal Membrane Protein Import
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                           Clec7a Dectin 1 Induces Nfat Activation
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                     Cobalamin Cbl Vitamin B12 Transport And Metabolism
## Coenzyme A Biosynthesis                                                                                                                                                                                                                           Coenzyme A Biosynthesis
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                             Cohesin Loading Onto Chromatin
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                   Collagen Biosynthesis And Modifying Enzymes
## Collagen Chain Trimerization                                                                                                                                                                                                                 Collagen Chain Trimerization
## Collagen Formation                                                                                                                                                                                                                                     Collagen Formation
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                           Common Pathway Of Fibrin Clot Formation
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                     Competing Endogenous Rnas Cernas Regulate Pten Translation
## Complex I Biogenesis                                                                                                                                                                                                                                 Complex I Biogenesis
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                 Conjugation Of Benzoate With Glycine
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                     Constitutive Signaling By Egfrviii
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                         Constitutive Signaling By Ligand Responsive Egfr Cancer Variants
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                               Constitutive Signaling By Overexpressed Erbb2
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                     Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                         Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                     Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                               Copi Dependent Golgi To Er Retrograde Traffic
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                           Copi Independent Golgi To Er Retrograde Traffic
## Creatine Metabolism                                                                                                                                                                                                                                   Creatine Metabolism
## Creb3 Factors Activate Genes                                                                                                                                                                                                                 Creb3 Factors Activate Genes
## Cristae Formation                                                                                                                                                                                                                                       Cristae Formation
## Crmps In Sema3a Signaling                                                                                                                                                                                                                       Crmps In Sema3a Signaling
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                           Cross Presentation Of Particulate Exogenous Antigens Phagosomes
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                     Cross Presentation Of Soluble Exogenous Antigens Endosomes
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                         Crosslinking Of Collagen Fibrils
## Cs Ds Degradation                                                                                                                                                                                                                                       Cs Ds Degradation
## Cyclin D Associated Events In G1                                                                                                                                                                                                         Cyclin D Associated Events In G1
## Cyp2e1 Reactions                                                                                                                                                                                                                                         Cyp2e1 Reactions
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                         Cytochrome C Mediated Apoptotic Response
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                     Cytochrome P450 Arranged By Substrate Type
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                             Cytosolic Iron Sulfur Cluster Assembly
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                         Cytosolic Sulfonation Of Small Molecules
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                               Cytosolic Trna Aminoacylation
## Darpp 32 Events                                                                                                                                                                                                                                           Darpp 32 Events
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                         Deactivation Of The Beta Catenin Transactivating Complex
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                     Deadenylation Dependent Mrna Decay
## Deadenylation Of Mrna                                                                                                                                                                                                                               Deadenylation Of Mrna
## Dectin 2 Family                                                                                                                                                                                                                                           Dectin 2 Family
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                   Defective B4galt1 Causes B4galt1 Cdg Cdg 2d
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                   Defective B4galt7 Causes Eds Progeroid Type
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                               Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                               Defective Cftr Causes Cystic Fibrosis
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                 Defective Chst14 Causes Eds Musculocontractural Type
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                               Defective Chst3 Causes Sedcjd
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                 Defective Chst6 Causes Mcdc1
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                   Defective Chsy1 Causes Tpbs
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                               Defective Csf2rb Causes Smdp5
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                       Defective Ext2 Causes Exostoses 2
## Defective F9 Activation                                                                                                                                                                                                                           Defective F9 Activation
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                           Defective Factor Ix Causes Hemophilia B
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                       Defective Factor Viii Causes Hemophilia A
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                     Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                   Defective Lfng Causes Scdo3
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                   Defective Ripk1 Mediated Regulated Necrosis
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                       Defective St3gal3 Causes Mct12 And Eiee15
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                         Defects In Biotin Btn Metabolism
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                   Defects In Cobalamin B12 Metabolism
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                     Defects In Vitamin And Cofactor Metabolism
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                         Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks
## Degradation Of Axin                                                                                                                                                                                                                                   Degradation Of Axin
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                         Degradation Of Cysteine And Homocysteine
## Degradation Of Dvl                                                                                                                                                                                                                                     Degradation Of Dvl
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                               Degradation Of Gli1 By The Proteasome
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                         Deposition Of New Cenpa Containing Nucleosomes At The Centromere
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                       Detoxification Of Reactive Oxygen Species
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                               Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production
## Digestion                                                                                                                                                                                                                                                       Digestion
## Digestion And Absorption                                                                                                                                                                                                                         Digestion And Absorption
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                       Digestion Of Dietary Carbohydrate
## Digestion Of Dietary Lipid                                                                                                                                                                                                                     Digestion Of Dietary Lipid
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                               Diseases Associated With Glycosaminoglycan Metabolism
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With N Glycosylation Of Proteins
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                 Diseases Associated With O Glycosylation Of Proteins
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                             Diseases Associated With Surfactant Metabolism
## Diseases Of Base Excision Repair                                                                                                                                                                                                         Diseases Of Base Excision Repair
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                   Diseases Of Carbohydrate Metabolism
## Diseases Of Dna Repair                                                                                                                                                                                                                             Diseases Of Dna Repair
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                           Diseases Of Mismatch Repair Mmr
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                             Diseases Of Mitotic Cell Cycle
## Disinhibition Of Snare Formation                                                                                                                                                                                                         Disinhibition Of Snare Formation
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                         Displacement Of Dna Glycosylase By Apex1
## Dna Damage Bypass                                                                                                                                                                                                                                       Dna Damage Bypass
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                         Dna Damage Recognition In Gg Ner
## Dna Damage Reversal                                                                                                                                                                                                                                   Dna Damage Reversal
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                               Dna Damage Telomere Stress Induced Senescence
## Dna Replication                                                                                                                                                                                                                                           Dna Replication
## Dna Replication Initiation                                                                                                                                                                                                                     Dna Replication Initiation
## Dna Replication Pre Initiation                                                                                                                                                                                                             Dna Replication Pre Initiation
## Dna Strand Elongation                                                                                                                                                                                                                               Dna Strand Elongation
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                           Dopamine Neurotransmitter Release Cycle
## Dopamine Receptors                                                                                                                                                                                                                                     Dopamine Receptors
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                           Downregulation Of Erbb2 Erbb3 Signaling
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                       Downregulation Of Erbb2 Signaling
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                       Downregulation Of Erbb4 Signaling
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                         Downregulation Of Smad2 3 Smad4 Transcriptional Activity
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                               Downregulation Of Tgf Beta Receptor Signaling
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr1
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr2
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr3
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                           Downstream Signaling Of Activated Fgfr4
## Dual Incision In Gg Ner                                                                                                                                                                                                                           Dual Incision In Gg Ner
## Dual Incision In Tc Ner                                                                                                                                                                                                                           Dual Incision In Tc Ner
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                       E3 Ubiquitin Ligases Ubiquitinate Target Proteins
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                     Effects Of Pip2 Hydrolysis
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                       Egfr Interacts With Phospholipase C Gamma
## Egfr Transactivation By Gastrin                                                                                                                                                                                                           Egfr Transactivation By Gastrin
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                             Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                   Eicosanoid Ligand Binding Receptors
## Eicosanoids                                                                                                                                                                                                                                                   Eicosanoids
## Elastic Fibre Formation                                                                                                                                                                                                                           Elastic Fibre Formation
## Electric Transmission Across Gap Junctions                                                                                                                                                                                     Electric Transmission Across Gap Junctions
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                       Elevation Of Cytosolic Ca2 Levels
## Endogenous Sterols                                                                                                                                                                                                                                     Endogenous Sterols
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                             Endosomal Sorting Complex Required For Transport Escrt
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                         Energy Dependent Regulation Of Mtor By Lkb1 Ampk
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                             Eph Ephrin Mediated Repulsion Of Cells
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                     Epha Mediated Growth Cone Collapse
## Ephrin Signaling                                                                                                                                                                                                                                         Ephrin Signaling
## Er Quality Control Compartment Erqc                                                                                                                                                                                                   Er Quality Control Compartment Erqc
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                             Erbb2 Activates Ptk6 Signaling
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                               Erbb2 Regulates Cell Motility
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                   Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression
## Erk Mapk Targets                                                                                                                                                                                                                                         Erk Mapk Targets
## Erks Are Inactivated                                                                                                                                                                                                                                 Erks Are Inactivated
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                             Erythrocytes Take Up Carbon Dioxide And Release Oxygen
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                             Erythrocytes Take Up Oxygen And Release Carbon Dioxide
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                           Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                   Erythropoietin Activates Phospholipase C Gamma Plcg
## Erythropoietin Activates Ras                                                                                                                                                                                                                 Erythropoietin Activates Ras
## Erythropoietin Activates Stat5                                                                                                                                                                                                             Erythropoietin Activates Stat5
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                     Establishment Of Sister Chromatid Cohesion
## Estrogen Biosynthesis                                                                                                                                                                                                                               Estrogen Biosynthesis
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                   Estrogen Stimulated Signaling Through Prkcz
## Ethanol Oxidation                                                                                                                                                                                                                                       Ethanol Oxidation
## Eukaryotic Translation Elongation                                                                                                                                                                                                       Eukaryotic Translation Elongation
## Eukaryotic Translation Initiation                                                                                                                                                                                                       Eukaryotic Translation Initiation
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                           Export Of Viral Ribonucleoproteins From Nucleus
## Extension Of Telomeres                                                                                                                                                                                                                             Extension Of Telomeres
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Extrinsic Pathway Of Fibrin Clot Formation
## Fanconi Anemia Pathway                                                                                                                                                                                                                             Fanconi Anemia Pathway
## Fatty Acids                                                                                                                                                                                                                                                   Fatty Acids
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                   Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                   Fatty Acyl Coa Biosynthesis
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                     Fbxw7 Mutants And Notch1 In Cancer
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                         Fceri Mediated Ca 2 Mobilization
## Fcgr Activation                                                                                                                                                                                                                                           Fcgr Activation
## Fertilization                                                                                                                                                                                                                                               Fertilization
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr1 Ligand Binding And Activation
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1b Ligand Binding And Activation
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr1c Ligand Binding And Activation
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                     Fgfr2 Alternative Splicing
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr2 Ligand Binding And Activation
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                         Fgfr2 Mutant Receptor Activation
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2b Ligand Binding And Activation
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                 Fgfr2c Ligand Binding And Activation
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                   Fgfr3 Ligand Binding And Activation
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                 Fgfr3b Ligand Binding And Activation
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                 Fgfrl1 Modulation Of Fgfr1 Signaling
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                             Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface
## Flt3 Signaling                                                                                                                                                                                                                                             Flt3 Signaling
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                               Flt3 Signaling By Cbl Mutants
## Flt3 Signaling In Disease                                                                                                                                                                                                                       Flt3 Signaling In Disease
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                       Flt3 Signaling Through Src Family Kinases
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                 Folding Of Actin By Cct Tric
## Formation Of Apoptosome                                                                                                                                                                                                                           Formation Of Apoptosome
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                       Formation Of Atp By Chemiosmotic Coupling
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                       Formation Of Fibrin Clot Clotting Cascade
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                           Formation Of Incision Complex In Gg Ner
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                     Formation Of Rna Pol Ii Elongation Complex
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                 Formation Of Senescence Associated Heterochromatin Foci Sahf
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                         Formation Of Tc Ner Pre Incision Complex
## Formation Of The Cornified Envelope                                                                                                                                                                                                   Formation Of The Cornified Envelope
## Formation Of The Early Elongation Complex                                                                                                                                                                                       Formation Of The Early Elongation Complex
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                             Formation Of Tubulin Folding Intermediates By Cct Tric
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                       Formation Of Xylulose 5 Phosphate
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                 Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                 Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes
## Free Fatty Acid Receptors                                                                                                                                                                                                                       Free Fatty Acid Receptors
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                   Free Fatty Acids Regulate Insulin Secretion
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr1 Signaling
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr2 Signaling
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr3 Signaling
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                 Frs Mediated Fgfr4 Signaling
## Fructose Catabolism                                                                                                                                                                                                                                   Fructose Catabolism
## Fructose Metabolism                                                                                                                                                                                                                                   Fructose Metabolism
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                           G Alpha 12 13 Signalling Events
## G Alpha S Signalling Events                                                                                                                                                                                                                   G Alpha S Signalling Events
## G Alpha Z Signalling Events                                                                                                                                                                                                                   G Alpha Z Signalling Events
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                       G Beta Gamma Signalling Through Pi3kgamma
## G Protein Activation                                                                                                                                                                                                                                 G Protein Activation
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                   G1 S Dna Damage Checkpoints
## G2 Phase                                                                                                                                                                                                                                                         G2 Phase
## Gab1 Signalosome                                                                                                                                                                                                                                         Gab1 Signalosome
## Gaba B Receptor Activation                                                                                                                                                                                                                     Gaba B Receptor Activation
## Gaba Receptor Activation                                                                                                                                                                                                                         Gaba Receptor Activation
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                           Gaba Synthesis Release Reuptake And Degradation
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                   Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                               Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                           Gap Filling Dna Repair Synthesis And Ligation In Gg Ner
## Gap Junction Assembly                                                                                                                                                                                                                               Gap Junction Assembly
## Gap Junction Degradation                                                                                                                                                                                                                         Gap Junction Degradation
## Gap Junction Trafficking And Regulation                                                                                                                                                                                           Gap Junction Trafficking And Regulation
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                           Gdp Fucose Biosynthesis
## Gene Silencing By Rna                                                                                                                                                                                                                               Gene Silencing By Rna
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                   Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                           Global Genome Nucleotide Excision Repair Gg Ner
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                         Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                     Glucagon Signaling In Metabolic Regulation
## Glucagon Type Ligand Receptors                                                                                                                                                                                                             Glucagon Type Ligand Receptors
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                   Glucocorticoid Biosynthesis
## Gluconeogenesis                                                                                                                                                                                                                                           Gluconeogenesis
## Glucose Metabolism                                                                                                                                                                                                                                     Glucose Metabolism
## Glucuronidation                                                                                                                                                                                                                                           Glucuronidation
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                     Glutamate And Glutamine Metabolism
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                         Glutamate Neurotransmitter Release Cycle
## Glutathione Conjugation                                                                                                                                                                                                                           Glutathione Conjugation
## Glutathione Synthesis And Recycling                                                                                                                                                                                                   Glutathione Synthesis And Recycling
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                         Glycerophospholipid Biosynthesis
## Glycerophospholipid Catabolism                                                                                                                                                                                                             Glycerophospholipid Catabolism
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                       Glycogen Breakdown Glycogenolysis
## Glycogen Metabolism                                                                                                                                                                                                                                   Glycogen Metabolism
## Glycogen Storage Diseases                                                                                                                                                                                                                       Glycogen Storage Diseases
## Glycogen Synthesis                                                                                                                                                                                                                                     Glycogen Synthesis
## Glycolysis                                                                                                                                                                                                                                                     Glycolysis
## Glycosphingolipid Metabolism                                                                                                                                                                                                                 Glycosphingolipid Metabolism
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                               Glyoxylate Metabolism And Glycine Degradation
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                   Golgi Associated Vesicle Biogenesis
## Golgi To Er Retrograde Transport                                                                                                                                                                                                         Golgi To Er Retrograde Transport
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                           Gp1b Ix V Activation Signalling
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb2 Events In Erbb2 Signaling
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                       Grb2 Sos Provides Linkage To Mapk Signaling For Integrins
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                             Grb7 Events In Erbb2 Signaling
## Hats Acetylate Histones                                                                                                                                                                                                                           Hats Acetylate Histones
## Hcmv Late Events                                                                                                                                                                                                                                         Hcmv Late Events
## Hdacs Deacetylate Histones                                                                                                                                                                                                                     Hdacs Deacetylate Histones
## Hdms Demethylate Histones                                                                                                                                                                                                                       Hdms Demethylate Histones
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                         Hdr Through Homologous Recombination Hrr
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                       Hdr Through Mmej Alt Nhej
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                           Hdr Through Single Strand Annealing Ssa
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                     Hedgehog Ligand Biogenesis
## Hedgehog Off State                                                                                                                                                                                                                                     Hedgehog Off State
## Hedgehog On State                                                                                                                                                                                                                                       Hedgehog On State
## Heme Biosynthesis                                                                                                                                                                                                                                       Heme Biosynthesis
## Heme Degradation                                                                                                                                                                                                                                         Heme Degradation
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                       Heparan Sulfate Heparin Hs Gag Metabolism
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                     Highly Calcium Permeable Nicotinic Acetylcholine Receptors
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                           Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                             Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors
## Histidine Catabolism                                                                                                                                                                                                                                 Histidine Catabolism
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                     Hiv Elongation Arrest And Recovery
## Hiv Transcription Elongation                                                                                                                                                                                                                 Hiv Transcription Elongation
## Hiv Transcription Initiation                                                                                                                                                                                                                 Hiv Transcription Initiation
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                     Homologous Dna Pairing And Strand Exchange
## Homology Directed Repair                                                                                                                                                                                                                         Homology Directed Repair
## Hormone Ligand Binding Receptors                                                                                                                                                                                                         Hormone Ligand Binding Receptors
## Host Interactions Of Hiv Factors                                                                                                                                                                                                         Host Interactions Of Hiv Factors
## Hs Gag Biosynthesis                                                                                                                                                                                                                                   Hs Gag Biosynthesis
## Hs Gag Degradation                                                                                                                                                                                                                                     Hs Gag Degradation
## Hsf1 Activation                                                                                                                                                                                                                                           Hsf1 Activation
## Hsf1 Dependent Transactivation                                                                                                                                                                                                             Hsf1 Dependent Transactivation
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                           Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                 Hur Elavl1 Binds And Stabilizes Mrna
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                     Hyaluronan Biosynthesis And Export
## Hyaluronan Metabolism                                                                                                                                                                                                                               Hyaluronan Metabolism
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                       Hyaluronan Uptake And Degradation
## Hydrolysis Of Lpc                                                                                                                                                                                                                                       Hydrolysis Of Lpc
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                           Il 6 Type Cytokine Receptor Ligand Interactions
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                       Infection With Mycobacterium Tuberculosis
## Influenza Infection                                                                                                                                                                                                                                   Influenza Infection
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                   Inhibition Of Dna Recombination At Telomere
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                           Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                   Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                               Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                 Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell
## Inositol Phosphate Metabolism                                                                                                                                                                                                               Inositol Phosphate Metabolism
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                   Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane
## Insulin Processing                                                                                                                                                                                                                                     Insulin Processing
## Insulin Receptor Recycling                                                                                                                                                                                                                     Insulin Receptor Recycling
## Integration Of Energy Metabolism                                                                                                                                                                                                         Integration Of Energy Metabolism
## Integration Of Provirus                                                                                                                                                                                                                           Integration Of Provirus
## Integrin Cell Surface Interactions                                                                                                                                                                                                     Integrin Cell Surface Interactions
## Integrin Signaling                                                                                                                                                                                                                                     Integrin Signaling
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                   Interaction Between L1 And Ankyrins
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                               Interaction With Cumulus Cells And The Zona Pellucida
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                           Interactions Of Rev With Host Cellular Proteins
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                           Interactions Of Vpr With Host Cellular Proteins
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                     Interconversion Of Nucleotide Di And Triphosphates
## Interleukin 36 Pathway                                                                                                                                                                                                                             Interleukin 36 Pathway
## Intestinal Absorption                                                                                                                                                                                                                               Intestinal Absorption
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                             Intra Golgi And Retrograde Golgi To Er Traffic
## Intra Golgi Traffic                                                                                                                                                                                                                                   Intra Golgi Traffic
## Intraflagellar Transport                                                                                                                                                                                                                         Intraflagellar Transport
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                     Intrinsic Pathway Of Fibrin Clot Formation
## Inwardly Rectifying K Channels                                                                                                                                                                                                             Inwardly Rectifying K Channels
## Ion Channel Transport                                                                                                                                                                                                                               Ion Channel Transport
## Ion Homeostasis                                                                                                                                                                                                                                           Ion Homeostasis
## Ion Transport By P Type Atpases                                                                                                                                                                                                           Ion Transport By P Type Atpases
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                         Ionotropic Activity Of Kainate Receptors
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                       Irak2 Mediated Activation Of Tak1 Complex
## Ire1alpha Activates Chaperones                                                                                                                                                                                                             Ire1alpha Activates Chaperones
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                             Irf3 Mediated Activation Of Type 1 Ifn
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                               Irf3 Mediated Induction Of Type I Ifn
## Iron Uptake And Transport                                                                                                                                                                                                                       Iron Uptake And Transport
## Irs Activation                                                                                                                                                                                                                                             Irs Activation
## Josephin Domain Dubs                                                                                                                                                                                                                                 Josephin Domain Dubs
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                 Keratan Sulfate Biosynthesis
## Keratan Sulfate Degradation                                                                                                                                                                                                                   Keratan Sulfate Degradation
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                     Keratan Sulfate Keratin Metabolism
## Keratinization                                                                                                                                                                                                                                             Keratinization
## Ketone Body Metabolism                                                                                                                                                                                                                             Ketone Body Metabolism
## Kinesins                                                                                                                                                                                                                                                         Kinesins
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                             Ksrp Khsrp Binds And Destabilizes Mrna
## L1cam Interactions                                                                                                                                                                                                                                     L1cam Interactions
## Lagging Strand Synthesis                                                                                                                                                                                                                         Lagging Strand Synthesis
## Laminin Interactions                                                                                                                                                                                                                                 Laminin Interactions
## Late Endosomal Microautophagy                                                                                                                                                                                                               Late Endosomal Microautophagy
## Ldl Clearance                                                                                                                                                                                                                                               Ldl Clearance
## Lectin Pathway Of Complement Activation                                                                                                                                                                                           Lectin Pathway Of Complement Activation
## Leukotriene Receptors                                                                                                                                                                                                                               Leukotriene Receptors
## Lgi Adam Interactions                                                                                                                                                                                                                               Lgi Adam Interactions
## Ligand Receptor Interactions                                                                                                                                                                                                                 Ligand Receptor Interactions
## Linoleic Acid La Metabolism                                                                                                                                                                                                                   Linoleic Acid La Metabolism
## Lipid Particle Organization                                                                                                                                                                                                                   Lipid Particle Organization
## Lipophagy                                                                                                                                                                                                                                                       Lipophagy
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                 Listeria Monocytogenes Entry Into Host Cells
## Long Term Potentiation                                                                                                                                                                                                                             Long Term Potentiation
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                     Loss Of Function Of Mecp2 In Rett Syndrome
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                               Loss Of Function Of Smad2 3 In Cancer
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                             Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                             Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                   Ltc4 Cysltr Mediated Il4 Production
## Lysine Catabolism                                                                                                                                                                                                                                       Lysine Catabolism
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                   Lysosome Vesicle Biogenesis
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                     Lysosphingolipid And Lpa Receptors
## Map2k And Mapk Activation                                                                                                                                                                                                                       Map2k And Mapk Activation
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                         Map3k8 Tpl2 Dependent Mapk1 3 Activation
## Mapk1 Erk2 Activation                                                                                                                                                                                                                               Mapk1 Erk2 Activation
## Maturation Of Nucleoprotein                                                                                                                                                                                                                   Maturation Of Nucleoprotein
## Maturation Of Protein 3a                                                                                                                                                                                                                         Maturation Of Protein 3a
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 1 Spike Protein
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                             Maturation Of Sars Cov 2 Spike Protein
## Meiosis                                                                                                                                                                                                                                                           Meiosis
## Meiotic Recombination                                                                                                                                                                                                                               Meiotic Recombination
## Meiotic Synapsis                                                                                                                                                                                                                                         Meiotic Synapsis
## Melanin Biosynthesis                                                                                                                                                                                                                                 Melanin Biosynthesis
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                         Met Activates Pi3k Akt Signaling
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                 Met Activates Ptk2 Signaling
## Met Activates Ptpn11                                                                                                                                                                                                                                 Met Activates Ptpn11
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                   Met Activates Rap1 And Rac1
## Met Activates Ras Signaling                                                                                                                                                                                                                   Met Activates Ras Signaling
## Met Interacts With Tns Proteins                                                                                                                                                                                                           Met Interacts With Tns Proteins
## Met Promotes Cell Motility                                                                                                                                                                                                                     Met Promotes Cell Motility
## Met Receptor Activation                                                                                                                                                                                                                           Met Receptor Activation
## Met Receptor Recycling                                                                                                                                                                                                                             Met Receptor Recycling
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                   Metabolic Disorders Of Biological Oxidation Enzymes
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                 Metabolism Of Amine Derived Hormones
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                               Metabolism Of Angiotensinogen To Angiotensins
## Metabolism Of Cofactors                                                                                                                                                                                                                           Metabolism Of Cofactors
## Metabolism Of Folate And Pterines                                                                                                                                                                                                       Metabolism Of Folate And Pterines
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                         Metabolism Of Ingested Semet Sec Mesec Into H2se
## Metabolism Of Nucleotides                                                                                                                                                                                                                       Metabolism Of Nucleotides
## Metabolism Of Polyamines                                                                                                                                                                                                                         Metabolism Of Polyamines
## Metabolism Of Porphyrins                                                                                                                                                                                                                         Metabolism Of Porphyrins
## Metabolism Of Rna                                                                                                                                                                                                                                       Metabolism Of Rna
## Metabolism Of Steroid Hormones                                                                                                                                                                                                             Metabolism Of Steroid Hormones
## Metabolism Of Steroids                                                                                                                                                                                                                             Metabolism Of Steroids
## Metal Ion Slc Transporters                                                                                                                                                                                                                     Metal Ion Slc Transporters
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                               Metal Sequestration By Antimicrobial Proteins
## Metallothioneins Bind Metals                                                                                                                                                                                                                 Metallothioneins Bind Metals
## Methionine Salvage Pathway                                                                                                                                                                                                                     Methionine Salvage Pathway
## Methylation                                                                                                                                                                                                                                                   Methylation
## Microrna Mirna Biogenesis                                                                                                                                                                                                                       Microrna Mirna Biogenesis
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                             Mineralocorticoid Biosynthesis
## Miro Gtpase Cycle                                                                                                                                                                                                                                       Miro Gtpase Cycle
## Miscellaneous Substrates                                                                                                                                                                                                                         Miscellaneous Substrates
## Miscellaneous Transport And Binding Events                                                                                                                                                                                     Miscellaneous Transport And Binding Events
## Mismatch Repair                                                                                                                                                                                                                                           Mismatch Repair
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                   Mitochondrial Calcium Ion Transport
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                           Mitochondrial Fatty Acid Beta Oxidation
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                         Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                     Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                 Mitochondrial Iron Sulfur Cluster Biogenesis
## Mitochondrial Protein Import                                                                                                                                                                                                                 Mitochondrial Protein Import
## Mitochondrial Translation                                                                                                                                                                                                                       Mitochondrial Translation
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                       Mitochondrial Trna Aminoacylation
## Mitochondrial Uncoupling                                                                                                                                                                                                                         Mitochondrial Uncoupling
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                     Mitotic Spindle Checkpoint
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                               Mitotic Telophase Cytokinesis
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                           Modulation By Mtb Of Host Immune System
## Molecules Associated With Elastic Fibres                                                                                                                                                                                         Molecules Associated With Elastic Fibres
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                         Molybdenum Cofactor Biosynthesis
## Mrna Capping                                                                                                                                                                                                                                                 Mrna Capping
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 3 To 5 Exoribonuclease
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                 Mrna Decay By 5 To 3 Exoribonuclease
## Mrna Editing                                                                                                                                                                                                                                                 Mrna Editing
## Mrna Editing C To U Conversion                                                                                                                                                                                                             Mrna Editing C To U Conversion
## Mrna Splicing                                                                                                                                                                                                                                               Mrna Splicing
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                   Mrna Splicing Minor Pathway
## Mtor Signalling                                                                                                                                                                                                                                           Mtor Signalling
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                     Mtorc1 Mediated Signalling
## Mucopolysaccharidoses                                                                                                                                                                                                                               Mucopolysaccharidoses
## Multifunctional Anion Exchangers                                                                                                                                                                                                         Multifunctional Anion Exchangers
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                     Muscarinic Acetylcholine Receptors
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                 Myoclonic Epilepsy Of Lafora
## N Glycan Antennae Elongation                                                                                                                                                                                                                 N Glycan Antennae Elongation
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                             N Glycan Antennae Elongation In The Medial Trans Golgi
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                       N Glycan Trimming And Elongation In The Cis Golgi
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                   N Glycan Trimming In The Er And Calnexin Calreticulin Cycle
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                               Na Cl Dependent Neurotransmitter Transporters
## Nade Modulates Death Signalling                                                                                                                                                                                                           Nade Modulates Death Signalling
## Ncam1 Interactions                                                                                                                                                                                                                                     Ncam1 Interactions
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                 Nectin Necl Trans Heterodimerization
## Neddylation                                                                                                                                                                                                                                                   Neddylation
## Nef And Signal Transduction                                                                                                                                                                                                                   Nef And Signal Transduction
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd4 Down Regulation
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                         Nef Mediated Cd8 Down Regulation
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                     Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                             Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                 Negative Feedback Regulation Of Mapk Pathway
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                     Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr1 Signaling
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr2 Signaling
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr3 Signaling
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                             Negative Regulation Of Fgfr4 Signaling
## Negative Regulation Of Flt3                                                                                                                                                                                                                   Negative Regulation Of Flt3
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                   Negative Regulation Of Mapk Pathway
## Negative Regulation Of Met Activity                                                                                                                                                                                                   Negative Regulation Of Met Activity
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                   Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                           Negative Regulation Of Notch4 Signaling
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                     Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins
## Nephrin Family Interactions                                                                                                                                                                                                                   Nephrin Family Interactions
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                       Netrin Mediated Repulsion Signals
## Neurexins And Neuroligins                                                                                                                                                                                                                       Neurexins And Neuroligins
## Neurofascin Interactions                                                                                                                                                                                                                         Neurofascin Interactions
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                   Neurotoxicity Of Clostridium Toxins
## Neurotransmitter Clearance                                                                                                                                                                                                                     Neurotransmitter Clearance
## Neurotransmitter Release Cycle                                                                                                                                                                                                             Neurotransmitter Release Cycle
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                         Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10
## Ngf Independant Trka Activation                                                                                                                                                                                                           Ngf Independant Trka Activation
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                       Nitric Oxide Stimulates Guanylate Cyclase
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                             Non Integrin Membrane Ecm Interactions
## Noncanonical Activation Of Notch3                                                                                                                                                                                                       Noncanonical Activation Of Notch3
## Nonhomologous End Joining Nhej                                                                                                                                                                                                             Nonhomologous End Joining Nhej
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                   Nonsense Mediated Decay Nmd
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                               Norepinephrine Neurotransmitter Release Cycle
## Notch Hlh Transcription Pathway                                                                                                                                                                                                           Notch Hlh Transcription Pathway
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch2 Activation And Transmission Of Signal To The Nucleus
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch3 Activation And Transmission Of Signal To The Nucleus
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch3 Intracellular Domain Regulates Transcription
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                   Notch4 Activation And Transmission Of Signal To The Nucleus
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                   Notch4 Intracellular Domain Regulates Transcription
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                     Nr1h2 And Nr1h3 Mediated Signaling
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                             Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                     Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                               Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                         Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                           Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux
## Nrcam Interactions                                                                                                                                                                                                                                     Nrcam Interactions
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                               Ns1 Mediated Effects On Host Pathways
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                 Ntrk2 Activates Rac1
## Nuclear Import Of Rev Protein                                                                                                                                                                                                               Nuclear Import Of Rev Protein
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                             Nuclear Receptor Transcription Pathway
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                     Nuclear Signaling By Erbb4
## Nucleobase Biosynthesis                                                                                                                                                                                                                           Nucleobase Biosynthesis
## Nucleobase Catabolism                                                                                                                                                                                                                               Nucleobase Catabolism
## Nucleotide Excision Repair                                                                                                                                                                                                                     Nucleotide Excision Repair
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                 Nucleotide Like Purinergic Receptors
## Nucleotide Salvage                                                                                                                                                                                                                                     Nucleotide Salvage
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                       O Glycosylation Of Tsr Domain Containing Proteins
## O Linked Glycosylation                                                                                                                                                                                                                             O Linked Glycosylation
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                         O Linked Glycosylation Of Mucins
## Oas Antiviral Response                                                                                                                                                                                                                             Oas Antiviral Response
## Olfactory Signaling Pathway                                                                                                                                                                                                                   Olfactory Signaling Pathway
## Oncogene Induced Senescence                                                                                                                                                                                                                   Oncogene Induced Senescence
## Oncogenic Mapk Signaling                                                                                                                                                                                                                         Oncogenic Mapk Signaling
## Opsins                                                                                                                                                                                                                                                             Opsins
## Orc1 Removal From Chromatin                                                                                                                                                                                                                   Orc1 Removal From Chromatin
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                           Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors
## Organic Anion Transport                                                                                                                                                                                                                           Organic Anion Transport
## Organic Anion Transporters                                                                                                                                                                                                                     Organic Anion Transporters
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                       Organic Cation Anion Zwitterion Transport
## Organic Cation Transport                                                                                                                                                                                                                         Organic Cation Transport
## Other Interleukin Signaling                                                                                                                                                                                                                   Other Interleukin Signaling
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                           P130cas Linkage To Mapk Signaling For Integrins
## P2y Receptors                                                                                                                                                                                                                                               P2y Receptors
## P38mapk Events                                                                                                                                                                                                                                             P38mapk Events
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                             P75ntr Negatively Regulates Cell Cycle Via Sc1
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                               P75ntr Regulates Axonogenesis
## Passive Transport By Aquaporins                                                                                                                                                                                                           Passive Transport By Aquaporins
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                             Pcna Dependent Long Patch Base Excision Repair
## Pecam1 Interactions                                                                                                                                                                                                                                   Pecam1 Interactions
## Pentose Phosphate Pathway                                                                                                                                                                                                                       Pentose Phosphate Pathway
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                 Peptide Hormone Biosynthesis
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                 Peroxisomal Lipid Metabolism
## Peroxisomal Protein Import                                                                                                                                                                                                                     Peroxisomal Protein Import
## Pexophagy                                                                                                                                                                                                                                                       Pexophagy
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                 Phase 0 Rapid Depolarisation
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                         Phase 1 Inactivation Of Fast Na Channels
## Phase 2 Plateau Phase                                                                                                                                                                                                                               Phase 2 Plateau Phase
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                 Phase 3 Rapid Repolarisation
## Phase I Functionalization Of Compounds                                                                                                                                                                                             Phase I Functionalization Of Compounds
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                       Phase Ii Conjugation Of Compounds
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                               Phenylalanine And Tyrosine Metabolism
## Phenylalanine Metabolism                                                                                                                                                                                                                         Phenylalanine Metabolism
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                               Phosphate Bond Hydrolysis By Ntpdase Proteins
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                     Phosphate Bond Hydrolysis By Nudt Proteins
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr2
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                             Phospholipase C Mediated Cascade Fgfr4
## Phospholipid Metabolism                                                                                                                                                                                                                           Phospholipid Metabolism
## Physiological Factors                                                                                                                                                                                                                               Physiological Factors
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr1
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr2
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr3
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                   Pi 3k Cascade Fgfr4
## Pi Metabolism                                                                                                                                                                                                                                               Pi Metabolism
## Pi3k Akt Activation                                                                                                                                                                                                                                   Pi3k Akt Activation
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb2 Signaling
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                             Pi3k Events In Erbb4 Signaling
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                           Pi5p Regulates Tp53 Acetylation
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                               Piwi Interacting Rna Pirna Biogenesis
## Pka Activation In Glucagon Signalling                                                                                                                                                                                               Pka Activation In Glucagon Signalling
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                               Pka Mediated Phosphorylation Of Key Metabolic Factors
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                           Pkmts Methylate Histone Lysines
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                               Platelet Adhesion To Exposed Collagen
## Platelet Aggregation Plug Formation                                                                                                                                                                                                   Platelet Aggregation Plug Formation
## Platelet Calcium Homeostasis                                                                                                                                                                                                                 Platelet Calcium Homeostasis
## Platelet Homeostasis                                                                                                                                                                                                                                 Platelet Homeostasis
## Platelet Sensitization By Ldl                                                                                                                                                                                                               Platelet Sensitization By Ldl
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                             Polb Dependent Long Patch Base Excision Repair
## Polo Like Kinase Mediated Events                                                                                                                                                                                                         Polo Like Kinase Mediated Events
## Polymerase Switching                                                                                                                                                                                                                                 Polymerase Switching
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                 Polymerase Switching On The C Strand Of The Telomere
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                       Positive Epigenetic Regulation Of Rrna Expression
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                           Post Chaperonin Tubulin Folding Pathway
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                         Postmitotic Nuclear Pore Complex Npc Reformation
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                           Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                         Pp2a Mediated Dephosphorylation Of Key Metabolic Factors
## Pre Notch Expression And Processing                                                                                                                                                                                                   Pre Notch Expression And Processing
## Pre Notch Processing In Golgi                                                                                                                                                                                                               Pre Notch Processing In Golgi
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                       Pre Notch Processing In The Endoplasmic Reticulum
## Pregnenolone Biosynthesis                                                                                                                                                                                                                       Pregnenolone Biosynthesis
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                             Presynaptic Depolarization And Calcium Channel Opening
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                       Presynaptic Function Of Kainate Receptors
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                       Prevention Of Phagosomal Lysosomal Fusion
## Processing And Activation Of Sumo                                                                                                                                                                                                       Processing And Activation Of Sumo
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                           Processing Of Capped Intron Containing Pre Mrna
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                         Processing Of Capped Intronless Pre Mrna
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                     Processing Of Dna Double Strand Break Ends
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                     Processing Of Intronless Pre Mrnas
## Processing Of Smdt1                                                                                                                                                                                                                                   Processing Of Smdt1
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                 Processive Synthesis On The C Strand Of The Telomere
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                     Processive Synthesis On The Lagging Strand
## Prolactin Receptor Signaling                                                                                                                                                                                                                 Prolactin Receptor Signaling
## Prolonged Erk Activation Events                                                                                                                                                                                                           Prolonged Erk Activation Events
## Propionyl Coa Catabolism                                                                                                                                                                                                                         Propionyl Coa Catabolism
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                               Prostacyclin Signalling Through Prostacyclin Receptor
## Prostanoid Ligand Receptors                                                                                                                                                                                                                   Prostanoid Ligand Receptors
## Protein Localization                                                                                                                                                                                                                                 Protein Localization
## Protein Methylation                                                                                                                                                                                                                                   Protein Methylation
## Protein Protein Interactions At Synapses                                                                                                                                                                                         Protein Protein Interactions At Synapses
## Protein Repair                                                                                                                                                                                                                                             Protein Repair
## Protein Ubiquitination                                                                                                                                                                                                                             Protein Ubiquitination
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                         Proton Coupled Monocarboxylate Transport
## Pten Regulation                                                                                                                                                                                                                                           Pten Regulation
## Ptk6 Expression                                                                                                                                                                                                                                           Ptk6 Expression
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                       Ptk6 Promotes Hif1a Stabilization
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                       Ptk6 Regulates Cell Cycle
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                     Ptk6 Regulates Proteins Involved In Rna Processing
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                               Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                               Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1
## Purine Catabolism                                                                                                                                                                                                                                       Purine Catabolism
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                         Purine Ribonucleoside Monophosphate Biosynthesis
## Purine Salvage                                                                                                                                                                                                                                             Purine Salvage
## Pyrimidine Catabolism                                                                                                                                                                                                                               Pyrimidine Catabolism
## Pyrimidine Salvage                                                                                                                                                                                                                                     Pyrimidine Salvage
## Pyruvate Metabolism                                                                                                                                                                                                                                   Pyruvate Metabolism
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                               Pyruvate Metabolism And Citric Acid Tca Cycle
## Ra Biosynthesis Pathway                                                                                                                                                                                                                           Ra Biosynthesis Pathway
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                               Rab Gefs Exchange Gtp For Gdp On Rabs
## Rab Geranylgeranylation                                                                                                                                                                                                                           Rab Geranylgeranylation
## Rab Regulation Of Trafficking                                                                                                                                                                                                               Rab Regulation Of Trafficking
## Raf Activation                                                                                                                                                                                                                                             Raf Activation
## Rap1 Signalling                                                                                                                                                                                                                                           Rap1 Signalling
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                 Ras Activation Upon Ca2 Influx Through Nmda Receptor
## Ras Processing                                                                                                                                                                                                                                             Ras Processing
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                       Ras Signaling Downstream Of Nf1 Loss Of Function Variants
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                 Reactions Specific To The Complex N Glycan Synthesis Pathway
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                   Receptor Type Tyrosine Protein Phosphatases
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                             Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                         Recognition Of Dna Damage By Pcna Containing Replication Complex
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                       Recycling Of Bile Acids And Salts
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                               Recycling Of Eif2 Gdp
## Recycling Pathway Of L1                                                                                                                                                                                                                           Recycling Pathway Of L1
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                         Reduction Of Cytosolic Ca Levels
## Reelin Signalling Pathway                                                                                                                                                                                                                       Reelin Signalling Pathway
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                           Regulated Proteolysis Of P75ntr
## Regulation Of Bach1 Activity                                                                                                                                                                                                                 Regulation Of Bach1 Activity
## Regulation Of Beta Cell Development                                                                                                                                                                                                   Regulation Of Beta Cell Development
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                               Regulation Of Cholesterol Biosynthesis By Srebp Srebf
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                   Regulation Of Commissural Axon Pathfinding By Slit And Robo
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                     Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                   Regulation Of Expression Of Slits And Robos
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                   Regulation Of Fzd By Ubiquitination
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                       Regulation Of Gene Expression By Hypoxia Inducible Factor
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                   Regulation Of Gene Expression In Beta Cells
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                       Regulation Of Gene Expression In Early Pancreatic Precursor Cells
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                               Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                     Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                   Regulation Of Glucokinase By Glucokinase Regulatory Protein
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                         Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                   Regulation Of Hmox1 Expression And Activity
## Regulation Of Ifna Signaling                                                                                                                                                                                                                 Regulation Of Ifna Signaling
## Regulation Of Ifng Signaling                                                                                                                                                                                                                 Regulation Of Ifng Signaling
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                             Regulation Of Innate Immune Responses To Cytosolic Dna
## Regulation Of Insulin Secretion                                                                                                                                                                                                           Regulation Of Insulin Secretion
## Regulation Of Kit Signaling                                                                                                                                                                                                                   Regulation Of Kit Signaling
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                         Regulation Of Localization Of Foxo Transcription Factors
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                   Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements
## Regulation Of Pten Gene Transcription                                                                                                                                                                                               Regulation Of Pten Gene Transcription
## Regulation Of Pten Localization                                                                                                                                                                                                           Regulation Of Pten Localization
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                   Regulation Of Pten Mrna Translation
## Regulation Of Pten Stability And Activity                                                                                                                                                                                       Regulation Of Pten Stability And Activity
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                         Regulation Of Pyruvate Dehydrogenase Pdh Complex
## Regulation Of Ras By Gaps                                                                                                                                                                                                                       Regulation Of Ras By Gaps
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                   Regulation Of Runx1 Expression And Activity
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                   Regulation Of Runx2 Expression And Activity
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                   Regulation Of Runx3 Expression And Activity
## Regulation Of Signaling By Cbl                                                                                                                                                                                                             Regulation Of Signaling By Cbl
## Regulation Of Signaling By Nodal                                                                                                                                                                                                         Regulation Of Signaling By Nodal
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Acetylation
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                           Regulation Of Tp53 Activity Through Association With Co Factors
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                           Regulation Of Tp53 Activity Through Methylation
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                   Regulation Of Tp53 Activity Through Phosphorylation
## Relaxin Receptors                                                                                                                                                                                                                                       Relaxin Receptors
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                     Release Of Apoptotic Factors From The Mitochondria
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                         Release Of Hh Np From The Secreting Cell
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                               Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins
## Reproduction                                                                                                                                                                                                                                                 Reproduction
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                   Resolution Of Abasic Sites Ap Sites
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                 Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway
## Resolution Of D Loop Structures                                                                                                                                                                                                           Resolution Of D Loop Structures
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                       Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa
## Respiratory Electron Transport                                                                                                                                                                                                             Respiratory Electron Transport
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                         Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                     Response Of Eif2ak1 Hri To Heme Deficiency
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                       Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                           Response Of Mtb To Phagocytosis
## Response To Metal Ions                                                                                                                                                                                                                             Response To Metal Ions
## Ret Signaling                                                                                                                                                                                                                                               Ret Signaling
## Retinoid Cycle Disease Events                                                                                                                                                                                                               Retinoid Cycle Disease Events
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                     Retrograde Neurotrophin Signalling
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                           Retrograde Transport At The Trans Golgi Network
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                             Reversible Hydration Of Carbon Dioxide
## Rho Gtpases Activate Cit                                                                                                                                                                                                                         Rho Gtpases Activate Cit
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                   Rho Gtpases Activate Nadph Oxidases
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                       Rho Gtpases Activate Pkns
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                 Rho Gtpases Activate Rhotekin And Rhophilins
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                     Rho Gtpases Activate Rocks
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                   Rhobtb Gtpase Cycle
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb1 Gtpase Cycle
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                 Rhobtb2 Gtpase Cycle
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                 Rhobtb3 Atpase Cycle
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                     Rhot1 Gtpase Cycle
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                         Rna Polymerase I Promoter Escape
## Rna Polymerase I Transcription                                                                                                                                                                                                             Rna Polymerase I Transcription
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                       Rna Polymerase I Transcription Initiation
## Rna Polymerase I Transcription Termination                                                                                                                                                                                     Rna Polymerase I Transcription Termination
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                       Rna Polymerase Ii Transcribes Snrna Genes
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                   Rna Polymerase Ii Transcription Termination
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                   Rna Polymerase Iii Chain Elongation
## Rna Polymerase Iii Transcription                                                                                                                                                                                                         Rna Polymerase Iii Transcription
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 1 Promoter
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                         Rna Polymerase Iii Transcription Initiation From Type 3 Promoter
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                 Rna Polymerase Iii Transcription Termination
## Robo Receptors Bind Akap5                                                                                                                                                                                                                       Robo Receptors Bind Akap5
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                     Role Of Abl In Robo Slit Signaling
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                               Role Of Lat2 Ntal Lab On Calcium Mobilization
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                               Role Of Phospholipids In Phagocytosis
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                           Role Of Second Messengers In Netrin 1 Signaling
## Rora Activates Gene Expression                                                                                                                                                                                                             Rora Activates Gene Expression
## Rrna Modification In The Mitochondrion                                                                                                                                                                                             Rrna Modification In The Mitochondrion
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Rrna Modification In The Nucleus And Cytosol
## Rrna Processing                                                                                                                                                                                                                                           Rrna Processing
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                 Rrna Processing In The Mitochondrion
## Rsk Activation                                                                                                                                                                                                                                             Rsk Activation
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                     Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                         Runx1 Regulates Estrogen Receptor Mediated Transcription
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                   Runx1 Regulates Expression Of Components Of Tight Junctions
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                               Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                     Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                   Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                         Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling
## Runx2 Regulates Bone Development                                                                                                                                                                                                         Runx2 Regulates Bone Development
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                             Runx2 Regulates Chondrocyte Maturation
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                         Runx2 Regulates Genes Involved In Cell Migration
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                     Runx2 Regulates Osteoblast Differentiation
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                       Runx3 Regulates Bcl2l11 Bim Transcription
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                 Runx3 Regulates Cdkn1a Transcription
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                     Runx3 Regulates Immune Response And Cell Migration
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                           Runx3 Regulates Notch Signaling
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                           Runx3 Regulates P14 Arf
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                   Runx3 Regulates Yap1 Mediated Transcription
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                           Sars Cov 1 Genome Replication And Transcription
## Sars Cov 1 Infection                                                                                                                                                                                                                                 Sars Cov 1 Infection
## Sars Cov 2 Infection                                                                                                                                                                                                                                 Sars Cov 2 Infection
## Scavenging By Class F Receptors                                                                                                                                                                                                           Scavenging By Class F Receptors
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                         Scf Skp2 Mediated Degradation Of P27 P21
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                           Sealing Of The Nuclear Envelope Ne By Escrt Iii
## Selenoamino Acid Metabolism                                                                                                                                                                                                                   Selenoamino Acid Metabolism
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                   Sema3a Pak Dependent Axon Repulsion
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                       Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                             Sema4d In Semaphorin Signaling
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                             Sema4d Induced Cell Migration And Growth Cone Collapse
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                   Sema4d Mediated Inhibition Of Cell Attachment And Migration
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                   Sensing Of Dna Double Strand Breaks
## Sensory Processing Of Sound                                                                                                                                                                                                                   Sensory Processing Of Sound
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                             Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea
## Separation Of Sister Chromatids                                                                                                                                                                                                           Separation Of Sister Chromatids
## Serine Biosynthesis                                                                                                                                                                                                                                   Serine Biosynthesis
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                 Serotonin And Melatonin Biosynthesis
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                         Serotonin Neurotransmitter Release Cycle
## Serotonin Receptors                                                                                                                                                                                                                                   Serotonin Receptors
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr1
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr3
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                     Shc Mediated Cascade Fgfr4
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                               Shc Related Events Triggered By Igf1r
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                               Shc1 Events In Egfr Signaling
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb2 Signaling
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                             Shc1 Events In Erbb4 Signaling
## Sialic Acid Metabolism                                                                                                                                                                                                                             Sialic Acid Metabolism
## Signal Amplification                                                                                                                                                                                                                                 Signal Amplification
## Signal Attenuation                                                                                                                                                                                                                                     Signal Attenuation
## Signal Regulatory Protein Family Interactions                                                                                                                                                                               Signal Regulatory Protein Family Interactions
## Signal Transduction By L1                                                                                                                                                                                                                       Signal Transduction By L1
## Signaling By Activin                                                                                                                                                                                                                                 Signaling By Activin
## Signaling By Bmp                                                                                                                                                                                                                                         Signaling By Bmp
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                       Signaling By Braf And Raf Fusions
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                         Signaling By Ctnnb1 Phospho Site Mutants
## Signaling By Egfr In Cancer                                                                                                                                                                                                                   Signaling By Egfr In Cancer
## Signaling By Erbb2                                                                                                                                                                                                                                     Signaling By Erbb2
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                             Signaling By Erbb2 Ecd Mutants
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                 Signaling By Erbb2 In Cancer
## Signaling By Erbb4                                                                                                                                                                                                                                     Signaling By Erbb4
## Signaling By Erythropoietin                                                                                                                                                                                                                   Signaling By Erythropoietin
## Signaling By Fgfr                                                                                                                                                                                                                                       Signaling By Fgfr
## Signaling By Fgfr1                                                                                                                                                                                                                                     Signaling By Fgfr1
## Signaling By Fgfr2                                                                                                                                                                                                                                     Signaling By Fgfr2
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                     Signaling By Fgfr2 Iiia Tm
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                               Signaling By Fgfr2 In Disease
## Signaling By Fgfr3                                                                                                                                                                                                                                     Signaling By Fgfr3
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                 Signaling By Fgfr3 Fusions In Cancer
## Signaling By Fgfr4                                                                                                                                                                                                                                     Signaling By Fgfr4
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                               Signaling By Fgfr4 In Disease
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                       Signaling By Flt3 Fusion Proteins
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                               Signaling By Flt3 Itd And Tkd Mutants
## Signaling By Hedgehog                                                                                                                                                                                                                               Signaling By Hedgehog
## Signaling By Hippo                                                                                                                                                                                                                                     Signaling By Hippo
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                       Signaling By Lrp5 Mutants
## Signaling By Mapk Mutants                                                                                                                                                                                                                       Signaling By Mapk Mutants
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                     Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                     Signaling By Moderate Kinase Activity Braf Mutants
## Signaling By Mras Complex Mutants                                                                                                                                                                                                       Signaling By Mras Complex Mutants
## Signaling By Mst1                                                                                                                                                                                                                                       Signaling By Mst1
## Signaling By Nodal                                                                                                                                                                                                                                     Signaling By Nodal
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                           Signaling By Notch1 Hd Domain Mutants In Cancer
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                       Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant
## Signaling By Notch3                                                                                                                                                                                                                                   Signaling By Notch3
## Signaling By Notch4                                                                                                                                                                                                                                   Signaling By Notch4
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                           Signaling By Ntrk2 Trkb
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                           Signaling By Ntrk3 Trkc
## Signaling By Retinoic Acid                                                                                                                                                                                                                     Signaling By Retinoic Acid
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                     Signaling By Rnf43 Mutants
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                         Signaling By Tgf Beta Receptor Complex In Cancer
## Signaling By Wnt In Cancer                                                                                                                                                                                                                     Signaling By Wnt In Cancer
## Signalling To Erks                                                                                                                                                                                                                                     Signalling To Erks
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                       Signalling To P38 Via Rit And Rin
## Signalling To Ras                                                                                                                                                                                                                                       Signalling To Ras
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                 Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                 Slc Mediated Transmembrane Transport
## Slc Transporter Disorders                                                                                                                                                                                                                       Slc Transporter Disorders
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                             Smac Xiap Regulated Apoptotic Response
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                             Small Interfering Rna Sirna Biogenesis
## Smooth Muscle Contraction                                                                                                                                                                                                                       Smooth Muscle Contraction
## Snrnp Assembly                                                                                                                                                                                                                                             Snrnp Assembly
## Sodium Calcium Exchangers                                                                                                                                                                                                                       Sodium Calcium Exchangers
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                           Sodium Coupled Phosphate Cotransporters
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                   Sodium Coupled Sulphate Di And Tri Carboxylate Transporters
## Sodium Proton Exchangers                                                                                                                                                                                                                         Sodium Proton Exchangers
## Sos Mediated Signalling                                                                                                                                                                                                                           Sos Mediated Signalling
## Sperm Motility And Taxes                                                                                                                                                                                                                         Sperm Motility And Taxes
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                       Sphingolipid De Novo Biosynthesis
## Sphingolipid Metabolism                                                                                                                                                                                                                           Sphingolipid Metabolism
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                         Spry Regulation Of Fgf Signaling
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                   Srp Dependent Cotranslational Protein Targeting To Membrane
## Stabilization Of P53                                                                                                                                                                                                                                 Stabilization Of P53
## Stat5 Activation                                                                                                                                                                                                                                         Stat5 Activation
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                           Stat5 Activation Downstream Of Flt3 Itd Mutants
## Stimuli Sensing Channels                                                                                                                                                                                                                         Stimuli Sensing Channels
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                       Sting Mediated Induction Of Host Immune Responses
## Striated Muscle Contraction                                                                                                                                                                                                                   Striated Muscle Contraction
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                 Sulfide Oxidation To Sulfate
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                 Sulfur Amino Acid Metabolism
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                     Sumo Is Conjugated To E1 Uba2 Sae1
## Sumo Is Proteolytically Processed                                                                                                                                                                                                       Sumo Is Proteolytically Processed
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                 Sumo Is Transferred From E1 To E2 Ube2i Ubc9
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                             Sumoylation Of Chromatin Organization Proteins
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                             Sumoylation Of Dna Damage Response And Repair Proteins
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                           Sumoylation Of Dna Replication Proteins
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                             Sumoylation Of Intracellular Receptors
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                   Sumoylation Of Rna Binding Proteins
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                   Sumoylation Of Sumoylation Proteins
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                             Sumoylation Of Transcription Cofactors
## Sumoylation Of Transcription Factors                                                                                                                                                                                                 Sumoylation Of Transcription Factors
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                         Sumoylation Of Ubiquitinylation Proteins
## Suppression Of Apoptosis                                                                                                                                                                                                                         Suppression Of Apoptosis
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                 Suppression Of Phagosomal Maturation
## Surfactant Metabolism                                                                                                                                                                                                                               Surfactant Metabolism
## Switching Of Origins To A Post Replicative State                                                                                                                                                                         Switching Of Origins To A Post Replicative State
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                         Synaptic Adhesion Like Molecules
## Syndecan Interactions                                                                                                                                                                                                                               Syndecan Interactions
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                       Synthesis Of 12 Eicosatetraenoic Acid Derivatives
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                               Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                               Synthesis Of 5 Eicosatetraenoic Acids
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                         Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                             Synthesis Of Bile Acids And Bile Salts
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                         Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                 Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                               Synthesis Of Diphthamide Eef2
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                           Synthesis Of Dolichyl Phosphate
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                               Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                         Synthesis Of Gdp Mannose
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                               Synthesis Of Glycosylphosphatidylinositol Gpi
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                     Synthesis Of Ip2 Ip And Ins In The Cytosol
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                           Synthesis Of Ip3 And Ip4 In The Cytosol
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                     Synthesis Of Ketone Bodies
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                     Synthesis Of Leukotrienes Lt And Eoxins Ex
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                         Synthesis Of Lipoxins Lx
## Synthesis Of Pa                                                                                                                                                                                                                                           Synthesis Of Pa
## Synthesis Of Pc                                                                                                                                                                                                                                           Synthesis Of Pc
## Synthesis Of Pe                                                                                                                                                                                                                                           Synthesis Of Pe
## Synthesis Of Pg                                                                                                                                                                                                                                           Synthesis Of Pg
## Synthesis Of Pi                                                                                                                                                                                                                                           Synthesis Of Pi
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                         Synthesis Of Pips At The Early Endosome Membrane
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                 Synthesis Of Pips At The Er Membrane
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                           Synthesis Of Pips At The Golgi Membrane
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                           Synthesis Of Pips At The Late Endosome Membrane
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                         Synthesis Of Pips At The Plasma Membrane
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                     Synthesis Of Pyrophosphates In The Cytosol
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                           Synthesis Of Substrates In N Glycan Biosythesis
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                               Synthesis Of Udp N Acetyl Glucosamine
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                 Synthesis Of Very Long Chain Fatty Acyl Coas
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                     Synthesis Of Wybutosine At G37 Of Trna Phe
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                             Synthesis Secretion And Deacylation Of Ghrelin
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                               Tachykinin Receptors Bind Tachykinins
## Tbc Rabgaps                                                                                                                                                                                                                                                   Tbc Rabgaps
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                     Telomere C Strand Lagging Strand Synthesis
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                             Telomere C Strand Synthesis Initiation
## Telomere Extension By Telomerase                                                                                                                                                                                                         Telomere Extension By Telomerase
## Telomere Maintenance                                                                                                                                                                                                                                 Telomere Maintenance
## Terminal Pathway Of Complement                                                                                                                                                                                                             Terminal Pathway Of Complement
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                 Termination Of O Glycan Biosynthesis
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                         Termination Of Translesion Dna Synthesis
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                     Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                           Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                 Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                   Tgf Beta Receptor Signaling Activates Smads
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                           Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition
## The Activation Of Arylsulfatases                                                                                                                                                                                                         The Activation Of Arylsulfatases
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                 The Canonical Retinoid Cycle In Rods Twilight Vision
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                 The Citric Acid Tca Cycle And Respiratory Electron Transport
## The Fatty Acid Cycling Model                                                                                                                                                                                                                 The Fatty Acid Cycling Model
## The Phototransduction Cascade                                                                                                                                                                                                               The Phototransduction Cascade
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                   The Retinoid Cycle In Cones Daylight Vision
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                               The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                           Thrombin Signalling Through Proteinase Activated Receptors Pars
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                     Thromboxane Signalling Through Tp Receptor
## Thyroxine Biosynthesis                                                                                                                                                                                                                             Thyroxine Biosynthesis
## Tie2 Signaling                                                                                                                                                                                                                                             Tie2 Signaling
## Tight Junction Interactions                                                                                                                                                                                                                   Tight Junction Interactions
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                           Toxicity Of Botulinum Toxin Type D Botd
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                             Tp53 Regulates Metabolic Genes
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                         Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                           Tp53 Regulates Transcription Of Caspase Activators And Caspases
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Cell Death Genes
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                   Tp53 Regulates Transcription Of Death Receptors And Ligands
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                         Tp53 Regulates Transcription Of Dna Repair Genes
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                             Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                             Traf3 Dependent Irf Activation Pathway
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                             Traf6 Mediated Irf7 Activation
## Trafficking Of Ampa Receptors                                                                                                                                                                                                               Trafficking Of Ampa Receptors
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                             Trafficking Of Glur2 Containing Ampa Receptors
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                   Trafficking Of Myristoylated Proteins To The Cilium
## Trail Signaling                                                                                                                                                                                                                                           Trail Signaling
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                   Trans Golgi Network Vesicle Budding
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                           Transcription Coupled Nucleotide Excision Repair Tc Ner
## Transcription Of The Hiv Genome                                                                                                                                                                                                           Transcription Of The Hiv Genome
## Transcriptional Regulation By E2f6                                                                                                                                                                                                     Transcriptional Regulation By E2f6
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                         Transcriptional Regulation By Small Rnas
## Transcriptional Regulation By Ventx                                                                                                                                                                                                   Transcriptional Regulation By Ventx
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                 Transcriptional Regulation Of Testis Differentiation
## Transferrin Endocytosis And Recycling                                                                                                                                                                                               Transferrin Endocytosis And Recycling
## Translation                                                                                                                                                                                                                                                   Translation
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                             Translation Of Replicase And Assembly Of The Replication Transcription Complex
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 1 Structural Proteins
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                               Translation Of Sars Cov 2 Structural Proteins
## Translesion Synthesis By Polh                                                                                                                                                                                                               Translesion Synthesis By Polh
## Translesion Synthesis By Polk                                                                                                                                                                                                               Translesion Synthesis By Polk
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                     Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                 Translocation Of Slc2a4 Glut4 To The Plasma Membrane
## Transport And Synthesis Of Paps                                                                                                                                                                                                           Transport And Synthesis Of Paps
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                         Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                               Transport Of Connexons To The Plasma Membrane
## Transport Of Fatty Acids                                                                                                                                                                                                                         Transport Of Fatty Acids
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                   Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                               Transport Of Mature Mrnas Derived From Intronless Transcripts
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                   Transport Of Mature Transcript To Cytoplasm
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                         Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane
## Transport Of Nucleotide Sugars                                                                                                                                                                                                             Transport Of Nucleotide Sugars
## Transport Of Organic Anions                                                                                                                                                                                                                   Transport Of Organic Anions
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                   Transport Of The Slbp Dependant Mature Mrna
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                           Transport Of Vitamins Nucleosides And Related Molecules
## Triglyceride Biosynthesis                                                                                                                                                                                                                       Triglyceride Biosynthesis
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                               Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna
## Trna Aminoacylation                                                                                                                                                                                                                                   Trna Aminoacylation
## Trna Modification In The Mitochondrion                                                                                                                                                                                             Trna Modification In The Mitochondrion
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                 Trna Modification In The Nucleus And Cytosol
## Trna Processing                                                                                                                                                                                                                                           Trna Processing
## Trna Processing In The Mitochondrion                                                                                                                                                                                                 Trna Processing In The Mitochondrion
## Trna Processing In The Nucleus                                                                                                                                                                                                             Trna Processing In The Nucleus
## Trp Channels                                                                                                                                                                                                                                                 Trp Channels
## Tryptophan Catabolism                                                                                                                                                                                                                               Tryptophan Catabolism
## Type I Hemidesmosome Assembly                                                                                                                                                                                                               Type I Hemidesmosome Assembly
## Tyrosine Catabolism                                                                                                                                                                                                                                   Tyrosine Catabolism
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                   Tysnd1 Cleaves Peroxisomal Proteins
## Ubiquinol Biosynthesis                                                                                                                                                                                                                             Ubiquinol Biosynthesis
## Uch Proteinases                                                                                                                                                                                                                                           Uch Proteinases
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                               Unblocking Of Nmda Receptors Glutamate Binding And Activation
## Unwinding Of Dna                                                                                                                                                                                                                                         Unwinding Of Dna
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                             Uptake And Actions Of Bacterial Toxins
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                               Uptake And Function Of Anthrax Toxins
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                           Uptake And Function Of Diphtheria Toxin
## Urea Cycle                                                                                                                                                                                                                                                     Urea Cycle
## Vasopressin Like Receptors                                                                                                                                                                                                                     Vasopressin Like Receptors
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                 Vasopressin Regulates Renal Water Homeostasis Via Aquaporins
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                       Vegf Ligand Receptor Interactions
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                     Vegfr2 Mediated Cell Proliferation
## Viral Messenger Rna Synthesis                                                                                                                                                                                                               Viral Messenger Rna Synthesis
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                               Vitamin B1 Thiamin Metabolism
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                         Vitamin B2 Riboflavin Metabolism
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                     Vitamin B5 Pantothenate Metabolism
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                             Vitamin C Ascorbate Metabolism
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                           Vitamin D Calciferol Metabolism
## Vitamins                                                                                                                                                                                                                                                         Vitamins
## Vldl Assembly                                                                                                                                                                                                                                               Vldl Assembly
## Vldl Clearance                                                                                                                                                                                                                                             Vldl Clearance
## Vldlr Internalisation And Degradation                                                                                                                                                                                               Vldlr Internalisation And Degradation
## Voltage Gated Potassium Channels                                                                                                                                                                                                         Voltage Gated Potassium Channels
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                             Vxpx Cargo Targeting To Cilium
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                         Wax And Plasmalogen Biosynthesis
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                             Wnt Mediated Activation Of Dvl
## Xenobiotics                                                                                                                                                                                                                                                   Xenobiotics
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                               Yap1 And Wwtr1 Taz Stimulated Gene Expression
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                         Zinc Efflux And Compartmentalization By The Slc30 Family
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                           Zinc Influx Into Cells By The Slc39 Gene Family
## Zinc Transporters                                                                                                                                                                                                                                       Zinc Transporters
##                                                                                                                                         pval
## Cytokine Signaling In Immune System                                                                                                  6.1e-35
## Signaling By Interleukins                                                                                                            1.2e-31
## Innate Immune System                                                                                                                 1.6e-26
## Interleukin 10 Signaling                                                                                                             1.7e-21
## Interleukin 4 And Interleukin 13 Signaling                                                                                           4.0e-21
## Toll Like Receptor Cascades                                                                                                          3.4e-14
## Peptide Ligand Binding Receptors                                                                                                     8.0e-13
## Chemokine Receptors Bind Chemokines                                                                                                  1.2e-12
## Neutrophil Degranulation                                                                                                             4.0e-12
## Interleukin 1 Family Signaling                                                                                                       7.2e-12
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    1.1e-10
## Myd88 Independent Tlr4 Cascade                                                                                                       1.4e-10
## Gpcr Ligand Binding                                                                                                                  3.0e-10
## Class A 1 Rhodopsin Like Receptors                                                                                                   4.9e-10
## Signaling By Gpcr                                                                                                                    1.4e-09
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 6.6e-09
## Adaptive Immune System                                                                                                               1.6e-08
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             8.0e-08
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    1.3e-07
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.5e-07
## Interleukin 17 Signaling                                                                                                             3.4e-07
## G Alpha I Signalling Events                                                                                                          3.9e-07
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         4.8e-07
## Death Receptor Signalling                                                                                                            1.3e-06
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    1.5e-06
## Programmed Cell Death                                                                                                                1.5e-06
## Regulated Necrosis                                                                                                                   2.6e-06
## Interleukin 1 Signaling                                                                                                              2.9e-06
## Purinergic Signaling In Leishmaniasis Infection                                                                                      3.0e-06
## Interleukin 18 Signaling                                                                                                             3.1e-06
## Leishmania Infection                                                                                                                 3.1e-06
## Tnfs Bind Their Physiological Receptors                                                                                              4.7e-06
## Diseases Of Immune System                                                                                                            6.1e-06
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             9.6e-06
## Costimulation By The Cd28 Family                                                                                                     1.0e-05
## Nod1 2 Signaling Pathway                                                                                                             1.1e-05
## Interleukin 2 Family Signaling                                                                                                       2.6e-05
## P75ntr Signals Via Nf Kb                                                                                                             3.0e-05
## Heme Signaling                                                                                                                       3.6e-05
## Regulation Of Tlr By Endogenous Ligand                                                                                               7.1e-05
## Complement Cascade                                                                                                                   8.6e-05
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          9.4e-05
## Post Translational Protein Modification                                                                                              1.2e-04
## Pyroptosis                                                                                                                           1.5e-04
## Deubiquitination                                                                                                                     1.6e-04
## Ovarian Tumor Domain Proteases                                                                                                       4.3e-04
## Interleukin 1 Processing                                                                                                             5.3e-04
## P75 Ntr Receptor Mediated Signalling                                                                                                 5.6e-04
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 5.8e-04
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            6.6e-04
## Apoptosis                                                                                                                            6.7e-04
## Dap12 Interactions                                                                                                                   7.1e-04
## Infectious Disease                                                                                                                   8.9e-04
## Cd28 Dependent Vav1 Pathway                                                                                                          9.6e-04
## Cell Surface Interactions At The Vascular Wall                                                                                       9.6e-04
## Killing Mechanisms                                                                                                                   9.6e-04
## Nf Kb Is Activated And Signals Survival                                                                                              1.1e-03
## P75ntr Recruits Signalling Complexes                                                                                                 1.1e-03
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              1.1e-03
## Trafficking And Processing Of Endosomal Tlr                                                                                          1.1e-03
## Hemostasis                                                                                                                           1.3e-03
## Interleukin 15 Signaling                                                                                                             1.3e-03
## Interleukin 12 Family Signaling                                                                                                      1.4e-03
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     1.7e-03
## Sumoylation Of Dna Methylation Proteins                                                                                              1.7e-03
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                1.9e-03
## Foxo Mediated Transcription                                                                                                          2.2e-03
## Irak4 Deficiency Tlr2 4                                                                                                              2.2e-03
## Scavenging By Class A Receptors                                                                                                      2.4e-03
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         2.4e-03
## Scavenging Of Heme From Plasma                                                                                                       2.5e-03
## Circadian Clock                                                                                                                      2.6e-03
## Ctla4 Inhibitory Signaling                                                                                                           3.0e-03
## Inflammasomes                                                                                                                        3.0e-03
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           3.0e-03
## Ikk Complex Recruitment Mediated By Rip1                                                                                             3.6e-03
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              3.9e-03
## Traf6 Mediated Nf Kb Activation                                                                                                      3.9e-03
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        4.5e-03
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     4.9e-03
## G0 And Early G1                                                                                                                      4.9e-03
## Interleukin Receptor Shc Signaling                                                                                                   4.9e-03
## Transcriptional Regulation Of Granulopoiesis                                                                                         5.2e-03
## Pd 1 Signaling                                                                                                                       5.3e-03
## Ripk1 Mediated Regulated Necrosis                                                                                                    5.6e-03
## Interferon Gamma Signaling                                                                                                           5.7e-03
## Mapk6 Mapk4 Signaling                                                                                                                5.7e-03
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             6.0e-03
## Cellular Responses To External Stimuli                                                                                               6.1e-03
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  6.4e-03
## Nicotinate Metabolism                                                                                                                6.4e-03
## Perk Regulates Gene Expression                                                                                                       6.8e-03
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               6.8e-03
## Clec7a Dectin 1 Signaling                                                                                                            7.0e-03
## Vesicle Mediated Transport                                                                                                           7.1e-03
## Cargo Concentration In The Er                                                                                                        7.3e-03
## Cd28 Co Stimulation                                                                                                                  7.3e-03
## Diseases Of Programmed Cell Death                                                                                                    7.3e-03
## Regulation Of Tnfr1 Signaling                                                                                                        8.1e-03
## Antigen Processing Cross Presentation                                                                                                8.2e-03
## Mapk Family Signaling Cascades                                                                                                       8.9e-03
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   9.5e-03
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.2e-02
## Tcr Signaling                                                                                                                        1.2e-02
## Tnf Signaling                                                                                                                        1.3e-02
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           1.3e-02
## Interleukin 12 Signaling                                                                                                             1.4e-02
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     1.5e-02
## Response To Elevated Platelet Cytosolic Ca2                                                                                          1.5e-02
## Netrin 1 Signaling                                                                                                                   1.6e-02
## C Type Lectin Receptors Clrs                                                                                                         1.7e-02
## Rna Polymerase Ii Transcription                                                                                                      1.7e-02
## Alternative Complement Activation                                                                                                    1.9e-02
## Fasl Cd95l Signaling                                                                                                                 1.9e-02
## G2 M Dna Replication Checkpoint                                                                                                      1.9e-02
## Galactose Catabolism                                                                                                                 1.9e-02
## Hdl Clearance                                                                                                                        1.9e-02
## Intrinsic Pathway For Apoptosis                                                                                                      1.9e-02
## Mecp2 Regulates Transcription Factors                                                                                                1.9e-02
## Nostrin Mediated Enos Trafficking                                                                                                    1.9e-02
## Platelet Activation Signaling And Aggregation                                                                                        1.9e-02
## Rhoj Gtpase Cycle                                                                                                                    1.9e-02
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      1.9e-02
## Epigenetic Regulation Of Gene Expression                                                                                             2.0e-02
## Er To Golgi Anterograde Transport                                                                                                    2.2e-02
## Rhoq Gtpase Cycle                                                                                                                    2.2e-02
## Biosynthesis Of Epa Derived Spms                                                                                                     2.3e-02
## Clec7a Inflammasome Pathway                                                                                                          2.3e-02
## Fibronectin Matrix Formation                                                                                                         2.3e-02
## Phosphorylation Of Emi1                                                                                                              2.3e-02
## Scavenging By Class B Receptors                                                                                                      2.3e-02
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    2.3e-02
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 2.3e-02
## Tnfr1 Mediated Ceramide Production                                                                                                   2.3e-02
## Ca2 Pathway                                                                                                                          2.4e-02
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         2.5e-02
## Transcriptional Regulation By Mecp2                                                                                                  2.5e-02
## Dna Methylation                                                                                                                      2.6e-02
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            2.7e-02
## Creb Phosphorylation                                                                                                                 2.7e-02
## Ikba Variant Leads To Eda Id                                                                                                         2.7e-02
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  2.7e-02
## Copii Mediated Vesicle Transport                                                                                                     2.9e-02
## Activation Of C3 And C5                                                                                                              3.1e-02
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   3.1e-02
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         3.1e-02
## Hdl Assembly                                                                                                                         3.1e-02
## Inactivation Of Cdc42 And Rac1                                                                                                       3.1e-02
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    3.1e-02
## Runx3 Regulates Wnt Signaling                                                                                                        3.1e-02
## Interferon Alpha Beta Signaling                                                                                                      3.3e-02
## Prc2 Methylates Histones And Dna                                                                                                     3.3e-02
## Signaling By Tgf Beta Receptor Complex                                                                                               3.3e-02
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         3.4e-02
## Cd163 Mediating An Anti Inflammatory Response                                                                                        3.4e-02
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          3.4e-02
## Extra Nuclear Estrogen Signaling                                                                                                     3.4e-02
## Interleukin 23 Signaling                                                                                                             3.4e-02
## Interleukin 9 Signaling                                                                                                              3.4e-02
## Rhog Gtpase Cycle                                                                                                                    3.4e-02
## Trif Mediated Programmed Cell Death                                                                                                  3.4e-02
## Sumoylation                                                                                                                          3.6e-02
## Transport To The Golgi And Subsequent Modification                                                                                   3.6e-02
## Metabolism Of Vitamins And Cofactors                                                                                                 3.7e-02
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               3.8e-02
## Akt Phosphorylates Targets In The Nucleus                                                                                            3.8e-02
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             3.8e-02
## Chylomicron Assembly                                                                                                                 3.8e-02
## Chylomicron Remodeling                                                                                                               3.8e-02
## Hdl Remodeling                                                                                                                       3.8e-02
## Interleukin 21 Signaling                                                                                                             3.8e-02
## Mapk3 Erk1 Activation                                                                                                                3.8e-02
## Mastl Facilitates Mitotic Progression                                                                                                3.8e-02
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           3.8e-02
## Initial Triggering Of Complement                                                                                                     3.9e-02
## Cellular Senescence                                                                                                                  4.2e-02
## Condensation Of Prometaphase Chromosomes                                                                                             4.2e-02
## Dermatan Sulfate Biosynthesis                                                                                                        4.2e-02
## Dscam Interactions                                                                                                                   4.2e-02
## Endosomal Vacuolar Pathway                                                                                                           4.2e-02
## Enos Activation                                                                                                                      4.2e-02
## Interleukin 27 Signaling                                                                                                             4.2e-02
## Interleukin 6 Signaling                                                                                                              4.2e-02
## Receptor Mediated Mitophagy                                                                                                          4.2e-02
## Regulation By C Flip                                                                                                                 4.2e-02
## Rho Gtpases Activate Ktn1                                                                                                            4.2e-02
## Signaling By Leptin                                                                                                                  4.2e-02
## Sumoylation Of Immune Response Proteins                                                                                              4.2e-02
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     4.2e-02
## Interferon Signaling                                                                                                                 4.5e-02
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    4.6e-02
## Interleukin 2 Signaling                                                                                                              4.6e-02
## Interleukin 35 Signalling                                                                                                            4.6e-02
## Notch2 Intracellular Domain Regulates Transcription                                                                                  4.6e-02
## Rac2 Gtpase Cycle                                                                                                                    4.6e-02
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            4.6e-02
## Signaling By Receptor Tyrosine Kinases                                                                                               4.6e-02
## Tandem Pore Domain Potassium Channels                                                                                                4.6e-02
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             4.6e-02
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 4.9e-02
## Apoptosis Induced Dna Fragmentation                                                                                                  4.9e-02
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        4.9e-02
## Dissolution Of Fibrin Clot                                                                                                           4.9e-02
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       4.9e-02
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             4.9e-02
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 4.9e-02
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                4.9e-02
## Unfolded Protein Response Upr                                                                                                        5.0e-02
## Class B 2 Secretin Family Receptors                                                                                                  5.2e-02
## Rac3 Gtpase Cycle                                                                                                                    5.2e-02
## Dcc Mediated Attractive Signaling                                                                                                    5.3e-02
## Early Phase Of Hiv Life Cycle                                                                                                        5.3e-02
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  5.3e-02
## Irak1 Recruits Ikk Complex                                                                                                           5.3e-02
## Repression Of Wnt Target Genes                                                                                                       5.3e-02
## Antimicrobial Peptides                                                                                                               5.5e-02
## Esr Mediated Signaling                                                                                                               5.5e-02
## Ub Specific Processing Proteases                                                                                                     5.5e-02
## Depolymerisation Of The Nuclear Lamina                                                                                               5.7e-02
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            5.7e-02
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             5.7e-02
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   5.7e-02
## Wnt5a Dependent Internalization Of Fzd4                                                                                              5.7e-02
## Copi Mediated Anterograde Transport                                                                                                  6.0e-02
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      6.0e-02
## Nrif Signals Cell Death From The Nucleus                                                                                             6.0e-02
## Signaling By Tgfb Family Members                                                                                                     6.0e-02
## The Nlrp3 Inflammasome                                                                                                               6.0e-02
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         6.0e-02
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 6.0e-02
## Pi3k Akt Signaling In Cancer                                                                                                         6.3e-02
## Tcf Dependent Signaling In Response To Wnt                                                                                           6.3e-02
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 6.4e-02
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      6.4e-02
## Signaling By Vegf                                                                                                                    6.4e-02
## Transcriptional Regulation By Runx1                                                                                                  6.6e-02
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     6.7e-02
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    6.7e-02
## Abc Transporters In Lipid Homeostasis                                                                                                6.8e-02
## Amyloid Fiber Formation                                                                                                              6.8e-02
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        6.8e-02
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     6.8e-02
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      6.8e-02
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          6.8e-02
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               6.8e-02
## Senescence Associated Secretory Phenotype Sasp                                                                                       7.0e-02
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              7.1e-02
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        7.1e-02
## Negative Regulation Of The Pi3k Akt Network                                                                                          7.1e-02
## Nicotinamide Salvaging                                                                                                               7.1e-02
## Other Semaphorin Interactions                                                                                                        7.1e-02
## Phase 4 Resting Membrane Potential                                                                                                   7.1e-02
## Plasma Lipoprotein Assembly                                                                                                          7.1e-02
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 7.1e-02
## G Beta Gamma Signalling Through Cdc42                                                                                                7.5e-02
## Phosphorylation Of The Apc C                                                                                                         7.5e-02
## Pka Mediated Phosphorylation Of Creb                                                                                                 7.5e-02
## Signaling By Kit In Disease                                                                                                          7.5e-02
## Signaling By Pdgfr In Disease                                                                                                        7.5e-02
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                7.5e-02
## Branched Chain Amino Acid Catabolism                                                                                                 7.8e-02
## Interleukin 37 Signaling                                                                                                             7.8e-02
## Rho Gtpases Activate Paks                                                                                                            7.8e-02
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    8.2e-02
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          8.2e-02
## E2f Mediated Regulation Of Dna Replication                                                                                           8.2e-02
## Pink1 Prkn Mediated Mitophagy                                                                                                        8.2e-02
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   8.3e-02
## Cytoprotection By Hmox1                                                                                                              8.4e-02
## Incretin Synthesis Secretion And Inactivation                                                                                        8.6e-02
## Mhc Class Ii Antigen Presentation                                                                                                    8.6e-02
## Raf Independent Mapk1 3 Activation                                                                                                   8.6e-02
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         8.9e-02
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               8.9e-02
## Growth Hormone Receptor Signaling                                                                                                    8.9e-02
## Interleukin 6 Family Signaling                                                                                                       8.9e-02
## Triglyceride Catabolism                                                                                                              8.9e-02
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             9.3e-02
## Basigin Interactions                                                                                                                 9.3e-02
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              9.3e-02
## Inactivation Of Csf3 G Csf Signaling                                                                                                 9.3e-02
## Signaling By Ntrks                                                                                                                   9.5e-02
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        9.6e-02
## Interleukin 20 Family Signaling                                                                                                      9.6e-02
## Wnt Ligand Biogenesis And Trafficking                                                                                                9.6e-02
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                1.0e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     1.0e-01
## Vegfr2 Mediated Vascular Permeability                                                                                                1.0e-01
## Activation Of Bh3 Only Proteins                                                                                                      1.1e-01
## Beta Catenin Independent Wnt Signaling                                                                                               1.1e-01
## Dap12 Signaling                                                                                                                      1.1e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       1.1e-01
## Downstream Signal Transduction                                                                                                       1.1e-01
## Egfr Downregulation                                                                                                                  1.1e-01
## Extracellular Matrix Organization                                                                                                    1.1e-01
## Fgfr1 Mutant Receptor Activation                                                                                                     1.1e-01
## G1 S Specific Transcription                                                                                                          1.1e-01
## Mitophagy                                                                                                                            1.1e-01
## Mitotic G1 Phase And G1 S Transition                                                                                                 1.1e-01
## Myogenesis                                                                                                                           1.1e-01
## Signaling By Csf3 G Csf                                                                                                              1.1e-01
## Signaling By Nuclear Receptors                                                                                                       1.1e-01
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 1.1e-01
## Activation Of Matrix Metalloproteinases                                                                                              1.2e-01
## Asparagine N Linked Glycosylation                                                                                                    1.2e-01
## G Protein Beta Gamma Signalling                                                                                                      1.2e-01
## Intracellular Signaling By Second Messengers                                                                                         1.2e-01
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         1.2e-01
## Plasma Lipoprotein Clearance                                                                                                         1.2e-01
## Plasma Lipoprotein Remodeling                                                                                                        1.2e-01
## Regulation Of Mecp2 Expression And Activity                                                                                          1.2e-01
## Rho Gtpases Activate Iqgaps                                                                                                          1.2e-01
## Rhou Gtpase Cycle                                                                                                                    1.2e-01
## Rhov Gtpase Cycle                                                                                                                    1.2e-01
## Signaling By Notch2                                                                                                                  1.2e-01
## Ca Dependent Events                                                                                                                  1.3e-01
## Cdc42 Gtpase Cycle                                                                                                                   1.3e-01
## Cellular Response To Chemical Stress                                                                                                 1.3e-01
## Gpvi Mediated Activation Cascade                                                                                                     1.3e-01
## Interleukin 7 Signaling                                                                                                              1.3e-01
## Metalloprotease Dubs                                                                                                                 1.3e-01
## Nuclear Pore Complex Npc Disassembly                                                                                                 1.3e-01
## Regulation Of Tp53 Expression And Degradation                                                                                        1.3e-01
## Rho Gtpases Activate Wasps And Waves                                                                                                 1.3e-01
## Rhoh Gtpase Cycle                                                                                                                    1.3e-01
## Ros And Rns Production In Phagocytes                                                                                                 1.3e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     1.4e-01
## Generation Of Second Messenger Molecules                                                                                             1.4e-01
## Ngf Stimulated Transcription                                                                                                         1.4e-01
## Signaling By Fgfr1 In Disease                                                                                                        1.4e-01
## Signaling By Wnt                                                                                                                     1.4e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         1.4e-01
## Triglyceride Metabolism                                                                                                              1.4e-01
## Beta Defensins                                                                                                                       1.5e-01
## Dag And Ip3 Signaling                                                                                                                1.5e-01
## Ephb Mediated Forward Signaling                                                                                                      1.5e-01
## Rhof Gtpase Cycle                                                                                                                    1.5e-01
## Rnd1 Gtpase Cycle                                                                                                                    1.5e-01
## Rnd2 Gtpase Cycle                                                                                                                    1.5e-01
## Rnd3 Gtpase Cycle                                                                                                                    1.5e-01
## Signaling By Scf Kit                                                                                                                 1.5e-01
## Developmental Biology                                                                                                                1.6e-01
## Fc Epsilon Receptor Fceri Signaling                                                                                                  1.6e-01
## Rac1 Gtpase Cycle                                                                                                                    1.6e-01
## Irs Mediated Signalling                                                                                                              1.7e-01
## Metabolism Of Fat Soluble Vitamins                                                                                                   1.7e-01
## Notch1 Intracellular Domain Regulates Transcription                                                                                  1.7e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     1.7e-01
## Apoptotic Execution Phase                                                                                                            1.8e-01
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      1.8e-01
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 1.8e-01
## Defensins                                                                                                                            1.8e-01
## Rhod Gtpase Cycle                                                                                                                    1.8e-01
## Signaling By Egfr                                                                                                                    1.8e-01
## G Protein Mediated Events                                                                                                            1.9e-01
## Insulin Receptor Signalling Cascade                                                                                                  1.9e-01
## Nervous System Development                                                                                                           1.9e-01
## Nuclear Envelope Breakdown                                                                                                           1.9e-01
## Signaling By Ptk6                                                                                                                    1.9e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      1.9e-01
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               1.9e-01
## G Alpha Q Signalling Events                                                                                                          2.0e-01
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    2.0e-01
## Signaling By Pdgf                                                                                                                    2.0e-01
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   2.1e-01
## Arachidonic Acid Metabolism                                                                                                          2.1e-01
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       2.1e-01
## Nrage Signals Death Through Jnk                                                                                                      2.1e-01
## Nuclear Events Kinase And Transcription Factor Activation                                                                            2.1e-01
## Asymmetric Localization Of Pcp Proteins                                                                                              2.2e-01
## Collagen Degradation                                                                                                                 2.2e-01
## Ncam Signaling For Neurite Out Growth                                                                                                2.2e-01
## Semaphorin Interactions                                                                                                              2.2e-01
## Signaling By Fgfr In Disease                                                                                                         2.2e-01
## Membrane Trafficking                                                                                                                 2.3e-01
## Sirt1 Negatively Regulates Rrna Expression                                                                                           2.3e-01
## Aurka Activation By Tpx2                                                                                                             2.4e-01
## Creation Of C4 And C2 Activators                                                                                                     2.4e-01
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 2.4e-01
## Rhob Gtpase Cycle                                                                                                                    2.4e-01
## Condensation Of Prophase Chromosomes                                                                                                 2.5e-01
## Rhoc Gtpase Cycle                                                                                                                    2.5e-01
## Signaling By Notch                                                                                                                   2.5e-01
## Signaling By Notch1                                                                                                                  2.5e-01
## Abc Transporter Disorders                                                                                                            2.6e-01
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        2.6e-01
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    2.6e-01
## Dna Double Strand Break Response                                                                                                     2.6e-01
## Ecm Proteoglycans                                                                                                                    2.6e-01
## Nuclear Envelope Ne Reassembly                                                                                                       2.6e-01
## Rmts Methylate Histone Arginines                                                                                                     2.6e-01
## Signaling By Insulin Receptor                                                                                                        2.6e-01
## Signaling By Met                                                                                                                     2.6e-01
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            2.6e-01
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   2.7e-01
## Potential Therapeutics For Sars                                                                                                      2.7e-01
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             2.7e-01
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      2.7e-01
## Selective Autophagy                                                                                                                  2.7e-01
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     2.8e-01
## Degradation Of Beta Catenin By The Destruction Complex                                                                               2.8e-01
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        2.8e-01
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    2.9e-01
## Fceri Mediated Mapk Activation                                                                                                       2.9e-01
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       2.9e-01
## Eph Ephrin Signaling                                                                                                                 3.0e-01
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            3.0e-01
## Opioid Signalling                                                                                                                    3.0e-01
## Pcp Ce Pathway                                                                                                                       3.0e-01
## Peptide Hormone Metabolism                                                                                                           3.0e-01
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 3.1e-01
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   3.1e-01
## Fcgr3a Mediated Il10 Synthesis                                                                                                       3.1e-01
## G2 M Dna Damage Checkpoint                                                                                                           3.1e-01
## Metabolism Of Carbohydrates                                                                                                          3.1e-01
## Mitochondrial Biogenesis                                                                                                             3.1e-01
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   3.1e-01
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           3.1e-01
## Transcriptional Regulation By Runx3                                                                                                  3.1e-01
## Organelle Biogenesis And Maintenance                                                                                                 3.2e-01
## Protein Folding                                                                                                                      3.2e-01
## Visual Phototransduction                                                                                                             3.2e-01
## Abc Family Proteins Mediated Transport                                                                                               3.3e-01
## Cellular Response To Heat Stress                                                                                                     3.3e-01
## Potassium Channels                                                                                                                   3.3e-01
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  3.4e-01
## Parasite Infection                                                                                                                   3.6e-01
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          3.7e-01
## Transcriptional Regulation By Runx2                                                                                                  3.7e-01
## Glycosaminoglycan Metabolism                                                                                                         3.8e-01
## Cardiac Conduction                                                                                                                   3.9e-01
## Oxidative Stress Induced Senescence                                                                                                  3.9e-01
## Resolution Of Sister Chromatid Cohesion                                                                                              3.9e-01
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              4.0e-01
## Fceri Mediated Nf Kb Activation                                                                                                      4.1e-01
## Degradation Of The Extracellular Matrix                                                                                              4.2e-01
## Hcmv Early Events                                                                                                                    4.2e-01
## Rho Gtpases Activate Formins                                                                                                         4.2e-01
## Clathrin Mediated Endocytosis                                                                                                        4.3e-01
## Diseases Of Glycosylation                                                                                                            4.3e-01
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         4.3e-01
## Mitotic Prophase                                                                                                                     4.3e-01
## Sars Cov Infections                                                                                                                  4.3e-01
## Autophagy                                                                                                                            4.4e-01
## Estrogen Dependent Gene Expression                                                                                                   4.4e-01
## Hiv Life Cycle                                                                                                                       4.4e-01
## Rhoa Gtpase Cycle                                                                                                                    4.4e-01
## Regulation Of Tp53 Activity                                                                                                          4.6e-01
## Hcmv Infection                                                                                                                       4.7e-01
## Neuronal System                                                                                                                      4.7e-01
## S Phase                                                                                                                              4.7e-01
## Dna Double Strand Break Repair                                                                                                       4.8e-01
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                4.8e-01
## G2 M Checkpoints                                                                                                                     4.8e-01
## Signaling By The B Cell Receptor Bcr                                                                                                 4.8e-01
## Disorders Of Transmembrane Transporters                                                                                              5.0e-01
## Fatty Acid Metabolism                                                                                                                5.0e-01
## Rho Gtpase Cycle                                                                                                                     5.2e-01
## Muscle Contraction                                                                                                                   5.3e-01
## Mitotic G2 G2 M Phases                                                                                                               5.4e-01
## Cilium Assembly                                                                                                                      5.5e-01
## Metabolism Of Lipids                                                                                                                 5.5e-01
## Mitotic Prometaphase                                                                                                                 5.5e-01
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      5.5e-01
## Signaling By Robo Receptors                                                                                                          5.7e-01
## Hiv Infection                                                                                                                        5.9e-01
## Mitotic Metaphase And Anaphase                                                                                                       6.0e-01
## Diseases Of Metabolism                                                                                                               6.2e-01
## Cell Cycle Mitotic                                                                                                                   6.4e-01
## Transmission Across Chemical Synapses                                                                                                6.5e-01
## Chromatin Modifying Enzymes                                                                                                          6.6e-01
## Cell Cycle Checkpoints                                                                                                               6.8e-01
## Rho Gtpase Effectors                                                                                                                 7.2e-01
## Dna Repair                                                                                                                           7.3e-01
## Cell Cycle                                                                                                                           7.5e-01
## Transcriptional Regulation By Tp53                                                                                                   7.6e-01
## Metabolism Of Amino Acids And Derivatives                                                                                            7.7e-01
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    7.7e-01
## M Phase                                                                                                                              8.0e-01
## Sensory Perception                                                                                                                   9.0e-01
## Transport Of Small Molecules                                                                                                         9.4e-01
## 2 Ltr Circle Formation                                                                                                               1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.0e+00
## Abacavir Metabolism                                                                                                                  1.0e+00
## Abacavir Transmembrane Transport                                                                                                     1.0e+00
## Abacavir Transport And Metabolism                                                                                                    1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.0e+00
## Acetylcholine Binding And Downstream Events                                                                                          1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.0e+00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.0e+00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.0e+00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.0e+00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.0e+00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.0e+00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.0e+00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.0e+00
## Activation Of Atr In Response To Replication Stress                                                                                  1.0e+00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.0e+00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.0e+00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.0e+00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Rac1                                                                                                                   1.0e+00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Ras In B Cells                                                                                                         1.0e+00
## Activation Of Smo                                                                                                                    1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.0e+00
## Activation Of The Phototransduction Cascade                                                                                          1.0e+00
## Activation Of The Pre Replicative Complex                                                                                            1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.0e+00
## Activation Of Trka Receptors                                                                                                         1.0e+00
## Acyl Chain Remodeling Of Cl                                                                                                          1.0e+00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.0e+00
## Acyl Chain Remodelling Of Pc                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pe                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pg                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pi                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Ps                                                                                                         1.0e+00
## Adenylate Cyclase Activating Pathway                                                                                                 1.0e+00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.0e+00
## Adherens Junctions Interactions                                                                                                      1.0e+00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.0e+00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.0e+00
## Adrenoceptors                                                                                                                        1.0e+00
## Aflatoxin Activation And Detoxification                                                                                              1.0e+00
## Aggrephagy                                                                                                                           1.0e+00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.0e+00
## Alpha Defensins                                                                                                                      1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.0e+00
## Alpha Oxidation Of Phytanate                                                                                                         1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.0e+00
## Amine Ligand Binding Receptors                                                                                                       1.0e+00
## Amino Acid Conjugation                                                                                                               1.0e+00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.0e+00
## Amino Acids Regulate Mtorc1                                                                                                          1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.0e+00
## Anchoring Fibril Formation                                                                                                           1.0e+00
## Androgen Biosynthesis                                                                                                                1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.0e+00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.0e+00
## Apoptotic Factor Mediated Response                                                                                                   1.0e+00
## Aquaporin Mediated Transport                                                                                                         1.0e+00
## Arachidonate Production From Dag                                                                                                     1.0e+00
## Arms Mediated Activation                                                                                                             1.0e+00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.0e+00
## Aspartate And Asparagine Metabolism                                                                                                  1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.0e+00
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.0e+00
## Assembly Of The Hiv Virion                                                                                                           1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.0e+00
## Assembly Of The Pre Replicative Complex                                                                                              1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.0e+00
## Attachment And Entry                                                                                                                 1.0e+00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.0e+00
## Attenuation Phase                                                                                                                    1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.0e+00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.0e+00
## Base Excision Repair                                                                                                                 1.0e+00
## Base Excision Repair Ap Site Formation                                                                                               1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.0e+00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.0e+00
## Bicarbonate Transporters                                                                                                             1.0e+00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.0e+00
## Biological Oxidations                                                                                                                1.0e+00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.0e+00
## Biosynthesis Of Maresins                                                                                                             1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.0e+00
## Biotin Transport And Metabolism                                                                                                      1.0e+00
## Blood Group Systems Biosynthesis                                                                                                     1.0e+00
## Budding And Maturation Of Hiv Virion                                                                                                 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.0e+00
## Butyrophilin Btn Family Interactions                                                                                                 1.0e+00
## Ca2 Activated K Channels                                                                                                             1.0e+00
## Calcineurin Activates Nfat                                                                                                           1.0e+00
## Calcitonin Like Ligand Receptors                                                                                                     1.0e+00
## Calnexin Calreticulin Cycle                                                                                                          1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.0e+00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.0e+00
## Carnitine Metabolism                                                                                                                 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.0e+00
## Cation Coupled Chloride Cotransporters                                                                                               1.0e+00
## Cd209 Dc Sign Signaling                                                                                                              1.0e+00
## Cd22 Mediated Bcr Regulation                                                                                                         1.0e+00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.0e+00
## Cell Cell Communication                                                                                                              1.0e+00
## Cell Cell Junction Organization                                                                                                      1.0e+00
## Cell Extracellular Matrix Interactions                                                                                               1.0e+00
## Cell Junction Organization                                                                                                           1.0e+00
## Cellular Hexose Transport                                                                                                            1.0e+00
## Cellular Response To Hypoxia                                                                                                         1.0e+00
## Cellular Response To Starvation                                                                                                      1.0e+00
## Cgmp Effects                                                                                                                         1.0e+00
## Chaperone Mediated Autophagy                                                                                                         1.0e+00
## Chl1 Interactions                                                                                                                    1.0e+00
## Cholesterol Biosynthesis                                                                                                             1.0e+00
## Choline Catabolism                                                                                                                   1.0e+00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.0e+00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.0e+00
## Chromosome Maintenance                                                                                                               1.0e+00
## Chylomicron Clearance                                                                                                                1.0e+00
## Citric Acid Cycle Tca Cycle                                                                                                          1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.0e+00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.0e+00
## Coenzyme A Biosynthesis                                                                                                              1.0e+00
## Cohesin Loading Onto Chromatin                                                                                                       1.0e+00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.0e+00
## Collagen Chain Trimerization                                                                                                         1.0e+00
## Collagen Formation                                                                                                                   1.0e+00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.0e+00
## Complex I Biogenesis                                                                                                                 1.0e+00
## Conjugation Of Benzoate With Glycine                                                                                                 1.0e+00
## Constitutive Signaling By Egfrviii                                                                                                   1.0e+00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     1.0e+00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.0e+00
## Creatine Metabolism                                                                                                                  1.0e+00
## Creb3 Factors Activate Genes                                                                                                         1.0e+00
## Cristae Formation                                                                                                                    1.0e+00
## Crmps In Sema3a Signaling                                                                                                            1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.0e+00
## Crosslinking Of Collagen Fibrils                                                                                                     1.0e+00
## Cs Ds Degradation                                                                                                                    1.0e+00
## Cyclin D Associated Events In G1                                                                                                     1.0e+00
## Cyp2e1 Reactions                                                                                                                     1.0e+00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.0e+00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.0e+00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.0e+00
## Cytosolic Trna Aminoacylation                                                                                                        1.0e+00
## Darpp 32 Events                                                                                                                      1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.0e+00
## Deadenylation Dependent Mrna Decay                                                                                                   1.0e+00
## Deadenylation Of Mrna                                                                                                                1.0e+00
## Dectin 2 Family                                                                                                                      1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.0e+00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        1.0e+00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.0e+00
## Defective Chst3 Causes Sedcjd                                                                                                        1.0e+00
## Defective Chst6 Causes Mcdc1                                                                                                         1.0e+00
## Defective Chsy1 Causes Tpbs                                                                                                          1.0e+00
## Defective Csf2rb Causes Smdp5                                                                                                        1.0e+00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.0e+00
## Defective F9 Activation                                                                                                              1.0e+00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.0e+00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.0e+00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           1.0e+00
## Defective Lfng Causes Scdo3                                                                                                          1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.0e+00
## Defects In Biotin Btn Metabolism                                                                                                     1.0e+00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.0e+00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.0e+00
## Degradation Of Axin                                                                                                                  1.0e+00
## Degradation Of Cysteine And Homocysteine                                                                                             1.0e+00
## Degradation Of Dvl                                                                                                                   1.0e+00
## Degradation Of Gli1 By The Proteasome                                                                                                1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.0e+00
## Detoxification Of Reactive Oxygen Species                                                                                            1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.0e+00
## Digestion                                                                                                                            1.0e+00
## Digestion And Absorption                                                                                                             1.0e+00
## Digestion Of Dietary Carbohydrate                                                                                                    1.0e+00
## Digestion Of Dietary Lipid                                                                                                           1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.0e+00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With Surfactant Metabolism                                                                                       1.0e+00
## Diseases Of Base Excision Repair                                                                                                     1.0e+00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.0e+00
## Diseases Of Dna Repair                                                                                                               1.0e+00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.0e+00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.0e+00
## Disinhibition Of Snare Formation                                                                                                     1.0e+00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.0e+00
## Dna Damage Bypass                                                                                                                    1.0e+00
## Dna Damage Recognition In Gg Ner                                                                                                     1.0e+00
## Dna Damage Reversal                                                                                                                  1.0e+00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.0e+00
## Dna Replication                                                                                                                      1.0e+00
## Dna Replication Initiation                                                                                                           1.0e+00
## Dna Replication Pre Initiation                                                                                                       1.0e+00
## Dna Strand Elongation                                                                                                                1.0e+00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.0e+00
## Dopamine Receptors                                                                                                                   1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.0e+00
## Downregulation Of Erbb2 Signaling                                                                                                    1.0e+00
## Downregulation Of Erbb4 Signaling                                                                                                    1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.0e+00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.0e+00
## Dual Incision In Gg Ner                                                                                                              1.0e+00
## Dual Incision In Tc Ner                                                                                                              1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.0e+00
## Effects Of Pip2 Hydrolysis                                                                                                           1.0e+00
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.0e+00
## Egfr Transactivation By Gastrin                                                                                                      1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.0e+00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.0e+00
## Eicosanoids                                                                                                                          1.0e+00
## Elastic Fibre Formation                                                                                                              1.0e+00
## Electric Transmission Across Gap Junctions                                                                                           1.0e+00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.0e+00
## Endogenous Sterols                                                                                                                   1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.0e+00
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               1.0e+00
## Epha Mediated Growth Cone Collapse                                                                                                   1.0e+00
## Ephrin Signaling                                                                                                                     1.0e+00
## Er Quality Control Compartment Erqc                                                                                                  1.0e+00
## Erbb2 Activates Ptk6 Signaling                                                                                                       1.0e+00
## Erbb2 Regulates Cell Motility                                                                                                        1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.0e+00
## Erk Mapk Targets                                                                                                                     1.0e+00
## Erks Are Inactivated                                                                                                                 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.0e+00
## Erythropoietin Activates Ras                                                                                                         1.0e+00
## Erythropoietin Activates Stat5                                                                                                       1.0e+00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.0e+00
## Estrogen Biosynthesis                                                                                                                1.0e+00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.0e+00
## Ethanol Oxidation                                                                                                                    1.0e+00
## Eukaryotic Translation Elongation                                                                                                    1.0e+00
## Eukaryotic Translation Initiation                                                                                                    1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.0e+00
## Extension Of Telomeres                                                                                                               1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Fanconi Anemia Pathway                                                                                                               1.0e+00
## Fatty Acids                                                                                                                          1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.0e+00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.0e+00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.0e+00
## Fcgr Activation                                                                                                                      1.0e+00
## Fertilization                                                                                                                        1.0e+00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2 Alternative Splicing                                                                                                           1.0e+00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.0e+00
## Flt3 Signaling                                                                                                                       1.0e+00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.0e+00
## Flt3 Signaling In Disease                                                                                                            1.0e+00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.0e+00
## Folding Of Actin By Cct Tric                                                                                                         1.0e+00
## Formation Of Apoptosome                                                                                                              1.0e+00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.0e+00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.0e+00
## Formation Of Incision Complex In Gg Ner                                                                                              1.0e+00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.0e+00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.0e+00
## Formation Of The Cornified Envelope                                                                                                  1.0e+00
## Formation Of The Early Elongation Complex                                                                                            1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.0e+00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.0e+00
## Free Fatty Acid Receptors                                                                                                            1.0e+00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.0e+00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.0e+00
## Fructose Catabolism                                                                                                                  1.0e+00
## Fructose Metabolism                                                                                                                  1.0e+00
## G Alpha 12 13 Signalling Events                                                                                                      1.0e+00
## G Alpha S Signalling Events                                                                                                          1.0e+00
## G Alpha Z Signalling Events                                                                                                          1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.0e+00
## G Protein Activation                                                                                                                 1.0e+00
## G1 S Dna Damage Checkpoints                                                                                                          1.0e+00
## G2 Phase                                                                                                                             1.0e+00
## Gab1 Signalosome                                                                                                                     1.0e+00
## Gaba B Receptor Activation                                                                                                           1.0e+00
## Gaba Receptor Activation                                                                                                             1.0e+00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.0e+00
## Gap Junction Assembly                                                                                                                1.0e+00
## Gap Junction Degradation                                                                                                             1.0e+00
## Gap Junction Trafficking And Regulation                                                                                              1.0e+00
## Gdp Fucose Biosynthesis                                                                                                              1.0e+00
## Gene Silencing By Rna                                                                                                                1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.0e+00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.0e+00
## Glucagon Type Ligand Receptors                                                                                                       1.0e+00
## Glucocorticoid Biosynthesis                                                                                                          1.0e+00
## Gluconeogenesis                                                                                                                      1.0e+00
## Glucose Metabolism                                                                                                                   1.0e+00
## Glucuronidation                                                                                                                      1.0e+00
## Glutamate And Glutamine Metabolism                                                                                                   1.0e+00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.0e+00
## Glutathione Conjugation                                                                                                              1.0e+00
## Glutathione Synthesis And Recycling                                                                                                  1.0e+00
## Glycerophospholipid Biosynthesis                                                                                                     1.0e+00
## Glycerophospholipid Catabolism                                                                                                       1.0e+00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.0e+00
## Glycogen Metabolism                                                                                                                  1.0e+00
## Glycogen Storage Diseases                                                                                                            1.0e+00
## Glycogen Synthesis                                                                                                                   1.0e+00
## Glycolysis                                                                                                                           1.0e+00
## Glycosphingolipid Metabolism                                                                                                         1.0e+00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.0e+00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.0e+00
## Golgi To Er Retrograde Transport                                                                                                     1.0e+00
## Gp1b Ix V Activation Signalling                                                                                                      1.0e+00
## Grb2 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.0e+00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Hats Acetylate Histones                                                                                                              1.0e+00
## Hcmv Late Events                                                                                                                     1.0e+00
## Hdacs Deacetylate Histones                                                                                                           1.0e+00
## Hdms Demethylate Histones                                                                                                            1.0e+00
## Hdr Through Homologous Recombination Hrr                                                                                             1.0e+00
## Hdr Through Mmej Alt Nhej                                                                                                            1.0e+00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.0e+00
## Hedgehog Ligand Biogenesis                                                                                                           1.0e+00
## Hedgehog Off State                                                                                                                   1.0e+00
## Hedgehog On State                                                                                                                    1.0e+00
## Heme Biosynthesis                                                                                                                    1.0e+00
## Heme Degradation                                                                                                                     1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.0e+00
## Histidine Catabolism                                                                                                                 1.0e+00
## Hiv Elongation Arrest And Recovery                                                                                                   1.0e+00
## Hiv Transcription Elongation                                                                                                         1.0e+00
## Hiv Transcription Initiation                                                                                                         1.0e+00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.0e+00
## Homology Directed Repair                                                                                                             1.0e+00
## Hormone Ligand Binding Receptors                                                                                                     1.0e+00
## Host Interactions Of Hiv Factors                                                                                                     1.0e+00
## Hs Gag Biosynthesis                                                                                                                  1.0e+00
## Hs Gag Degradation                                                                                                                   1.0e+00
## Hsf1 Activation                                                                                                                      1.0e+00
## Hsf1 Dependent Transactivation                                                                                                       1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.0e+00
## Hyaluronan Biosynthesis And Export                                                                                                   1.0e+00
## Hyaluronan Metabolism                                                                                                                1.0e+00
## Hyaluronan Uptake And Degradation                                                                                                    1.0e+00
## Hydrolysis Of Lpc                                                                                                                    1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.0e+00
## Infection With Mycobacterium Tuberculosis                                                                                            1.0e+00
## Influenza Infection                                                                                                                  1.0e+00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.0e+00
## Inositol Phosphate Metabolism                                                                                                        1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.0e+00
## Insulin Processing                                                                                                                   1.0e+00
## Insulin Receptor Recycling                                                                                                           1.0e+00
## Integration Of Energy Metabolism                                                                                                     1.0e+00
## Integration Of Provirus                                                                                                              1.0e+00
## Integrin Cell Surface Interactions                                                                                                   1.0e+00
## Integrin Signaling                                                                                                                   1.0e+00
## Interaction Between L1 And Ankyrins                                                                                                  1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.0e+00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.0e+00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.0e+00
## Interleukin 36 Pathway                                                                                                               1.0e+00
## Intestinal Absorption                                                                                                                1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.0e+00
## Intra Golgi Traffic                                                                                                                  1.0e+00
## Intraflagellar Transport                                                                                                             1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Inwardly Rectifying K Channels                                                                                                       1.0e+00
## Ion Channel Transport                                                                                                                1.0e+00
## Ion Homeostasis                                                                                                                      1.0e+00
## Ion Transport By P Type Atpases                                                                                                      1.0e+00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.0e+00
## Ire1alpha Activates Chaperones                                                                                                       1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.0e+00
## Irf3 Mediated Induction Of Type I Ifn                                                                                                1.0e+00
## Iron Uptake And Transport                                                                                                            1.0e+00
## Irs Activation                                                                                                                       1.0e+00
## Josephin Domain Dubs                                                                                                                 1.0e+00
## Keratan Sulfate Biosynthesis                                                                                                         1.0e+00
## Keratan Sulfate Degradation                                                                                                          1.0e+00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.0e+00
## Keratinization                                                                                                                       1.0e+00
## Ketone Body Metabolism                                                                                                               1.0e+00
## Kinesins                                                                                                                             1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.0e+00
## L1cam Interactions                                                                                                                   1.0e+00
## Lagging Strand Synthesis                                                                                                             1.0e+00
## Laminin Interactions                                                                                                                 1.0e+00
## Late Endosomal Microautophagy                                                                                                        1.0e+00
## Ldl Clearance                                                                                                                        1.0e+00
## Lectin Pathway Of Complement Activation                                                                                              1.0e+00
## Leukotriene Receptors                                                                                                                1.0e+00
## Lgi Adam Interactions                                                                                                                1.0e+00
## Ligand Receptor Interactions                                                                                                         1.0e+00
## Linoleic Acid La Metabolism                                                                                                          1.0e+00
## Lipid Particle Organization                                                                                                          1.0e+00
## Lipophagy                                                                                                                            1.0e+00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.0e+00
## Long Term Potentiation                                                                                                               1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.0e+00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.0e+00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.0e+00
## Lysine Catabolism                                                                                                                    1.0e+00
## Lysosome Vesicle Biogenesis                                                                                                          1.0e+00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.0e+00
## Map2k And Mapk Activation                                                                                                            1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.0e+00
## Mapk1 Erk2 Activation                                                                                                                1.0e+00
## Maturation Of Nucleoprotein                                                                                                          1.0e+00
## Maturation Of Protein 3a                                                                                                             1.0e+00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.0e+00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.0e+00
## Meiosis                                                                                                                              1.0e+00
## Meiotic Recombination                                                                                                                1.0e+00
## Meiotic Synapsis                                                                                                                     1.0e+00
## Melanin Biosynthesis                                                                                                                 1.0e+00
## Met Activates Pi3k Akt Signaling                                                                                                     1.0e+00
## Met Activates Ptk2 Signaling                                                                                                         1.0e+00
## Met Activates Ptpn11                                                                                                                 1.0e+00
## Met Activates Rap1 And Rac1                                                                                                          1.0e+00
## Met Activates Ras Signaling                                                                                                          1.0e+00
## Met Interacts With Tns Proteins                                                                                                      1.0e+00
## Met Promotes Cell Motility                                                                                                           1.0e+00
## Met Receptor Activation                                                                                                              1.0e+00
## Met Receptor Recycling                                                                                                               1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.0e+00
## Metabolism Of Amine Derived Hormones                                                                                                 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.0e+00
## Metabolism Of Cofactors                                                                                                              1.0e+00
## Metabolism Of Folate And Pterines                                                                                                    1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.0e+00
## Metabolism Of Nucleotides                                                                                                            1.0e+00
## Metabolism Of Polyamines                                                                                                             1.0e+00
## Metabolism Of Porphyrins                                                                                                             1.0e+00
## Metabolism Of Rna                                                                                                                    1.0e+00
## Metabolism Of Steroid Hormones                                                                                                       1.0e+00
## Metabolism Of Steroids                                                                                                               1.0e+00
## Metal Ion Slc Transporters                                                                                                           1.0e+00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.0e+00
## Metallothioneins Bind Metals                                                                                                         1.0e+00
## Methionine Salvage Pathway                                                                                                           1.0e+00
## Methylation                                                                                                                          1.0e+00
## Microrna Mirna Biogenesis                                                                                                            1.0e+00
## Mineralocorticoid Biosynthesis                                                                                                       1.0e+00
## Miro Gtpase Cycle                                                                                                                    1.0e+00
## Miscellaneous Substrates                                                                                                             1.0e+00
## Miscellaneous Transport And Binding Events                                                                                           1.0e+00
## Mismatch Repair                                                                                                                      1.0e+00
## Mitochondrial Calcium Ion Transport                                                                                                  1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.0e+00
## Mitochondrial Protein Import                                                                                                         1.0e+00
## Mitochondrial Translation                                                                                                            1.0e+00
## Mitochondrial Trna Aminoacylation                                                                                                    1.0e+00
## Mitochondrial Uncoupling                                                                                                             1.0e+00
## Mitotic Spindle Checkpoint                                                                                                           1.0e+00
## Mitotic Telophase Cytokinesis                                                                                                        1.0e+00
## Modulation By Mtb Of Host Immune System                                                                                              1.0e+00
## Molecules Associated With Elastic Fibres                                                                                             1.0e+00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.0e+00
## Mrna Capping                                                                                                                         1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.0e+00
## Mrna Editing                                                                                                                         1.0e+00
## Mrna Editing C To U Conversion                                                                                                       1.0e+00
## Mrna Splicing                                                                                                                        1.0e+00
## Mrna Splicing Minor Pathway                                                                                                          1.0e+00
## Mtor Signalling                                                                                                                      1.0e+00
## Mtorc1 Mediated Signalling                                                                                                           1.0e+00
## Mucopolysaccharidoses                                                                                                                1.0e+00
## Multifunctional Anion Exchangers                                                                                                     1.0e+00
## Muscarinic Acetylcholine Receptors                                                                                                   1.0e+00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.0e+00
## N Glycan Antennae Elongation                                                                                                         1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.0e+00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.0e+00
## Nade Modulates Death Signalling                                                                                                      1.0e+00
## Ncam1 Interactions                                                                                                                   1.0e+00
## Nectin Necl Trans Heterodimerization                                                                                                 1.0e+00
## Neddylation                                                                                                                          1.0e+00
## Nef And Signal Transduction                                                                                                          1.0e+00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.0e+00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.0e+00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.0e+00
## Negative Regulation Of Flt3                                                                                                          1.0e+00
## Negative Regulation Of Mapk Pathway                                                                                                  1.0e+00
## Negative Regulation Of Met Activity                                                                                                  1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.0e+00
## Negative Regulation Of Notch4 Signaling                                                                                              1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.0e+00
## Nephrin Family Interactions                                                                                                          1.0e+00
## Netrin Mediated Repulsion Signals                                                                                                    1.0e+00
## Neurexins And Neuroligins                                                                                                            1.0e+00
## Neurofascin Interactions                                                                                                             1.0e+00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.0e+00
## Neurotransmitter Clearance                                                                                                           1.0e+00
## Neurotransmitter Release Cycle                                                                                                       1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.0e+00
## Ngf Independant Trka Activation                                                                                                      1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.0e+00
## Non Integrin Membrane Ecm Interactions                                                                                               1.0e+00
## Noncanonical Activation Of Notch3                                                                                                    1.0e+00
## Nonhomologous End Joining Nhej                                                                                                       1.0e+00
## Nonsense Mediated Decay Nmd                                                                                                          1.0e+00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.0e+00
## Notch Hlh Transcription Pathway                                                                                                      1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.0e+00
## Nrcam Interactions                                                                                                                   1.0e+00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.0e+00
## Ntrk2 Activates Rac1                                                                                                                 1.0e+00
## Nuclear Import Of Rev Protein                                                                                                        1.0e+00
## Nuclear Receptor Transcription Pathway                                                                                               1.0e+00
## Nuclear Signaling By Erbb4                                                                                                           1.0e+00
## Nucleobase Biosynthesis                                                                                                              1.0e+00
## Nucleobase Catabolism                                                                                                                1.0e+00
## Nucleotide Excision Repair                                                                                                           1.0e+00
## Nucleotide Like Purinergic Receptors                                                                                                 1.0e+00
## Nucleotide Salvage                                                                                                                   1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.0e+00
## O Linked Glycosylation                                                                                                               1.0e+00
## O Linked Glycosylation Of Mucins                                                                                                     1.0e+00
## Oas Antiviral Response                                                                                                               1.0e+00
## Olfactory Signaling Pathway                                                                                                          1.0e+00
## Oncogene Induced Senescence                                                                                                          1.0e+00
## Oncogenic Mapk Signaling                                                                                                             1.0e+00
## Opsins                                                                                                                               1.0e+00
## Orc1 Removal From Chromatin                                                                                                          1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.0e+00
## Organic Anion Transport                                                                                                              1.0e+00
## Organic Anion Transporters                                                                                                           1.0e+00
## Organic Cation Anion Zwitterion Transport                                                                                            1.0e+00
## Organic Cation Transport                                                                                                             1.0e+00
## Other Interleukin Signaling                                                                                                          1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.0e+00
## P2y Receptors                                                                                                                        1.0e+00
## P38mapk Events                                                                                                                       1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.0e+00
## P75ntr Regulates Axonogenesis                                                                                                        1.0e+00
## Passive Transport By Aquaporins                                                                                                      1.0e+00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Pecam1 Interactions                                                                                                                  1.0e+00
## Pentose Phosphate Pathway                                                                                                            1.0e+00
## Peptide Hormone Biosynthesis                                                                                                         1.0e+00
## Peroxisomal Lipid Metabolism                                                                                                         1.0e+00
## Peroxisomal Protein Import                                                                                                           1.0e+00
## Pexophagy                                                                                                                            1.0e+00
## Phase 0 Rapid Depolarisation                                                                                                         1.0e+00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.0e+00
## Phase 2 Plateau Phase                                                                                                                1.0e+00
## Phase 3 Rapid Repolarisation                                                                                                         1.0e+00
## Phase I Functionalization Of Compounds                                                                                               1.0e+00
## Phase Ii Conjugation Of Compounds                                                                                                    1.0e+00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.0e+00
## Phenylalanine Metabolism                                                                                                             1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.0e+00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.0e+00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.0e+00
## Phospholipid Metabolism                                                                                                              1.0e+00
## Physiological Factors                                                                                                                1.0e+00
## Pi 3k Cascade Fgfr1                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr2                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr3                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr4                                                                                                                  1.0e+00
## Pi Metabolism                                                                                                                        1.0e+00
## Pi3k Akt Activation                                                                                                                  1.0e+00
## Pi3k Events In Erbb2 Signaling                                                                                                       1.0e+00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.0e+00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.0e+00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.0e+00
## Pka Activation In Glucagon Signalling                                                                                                1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.0e+00
## Pkmts Methylate Histone Lysines                                                                                                      1.0e+00
## Platelet Adhesion To Exposed Collagen                                                                                                1.0e+00
## Platelet Aggregation Plug Formation                                                                                                  1.0e+00
## Platelet Calcium Homeostasis                                                                                                         1.0e+00
## Platelet Homeostasis                                                                                                                 1.0e+00
## Platelet Sensitization By Ldl                                                                                                        1.0e+00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Polo Like Kinase Mediated Events                                                                                                     1.0e+00
## Polymerase Switching                                                                                                                 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.0e+00
## Pre Notch Expression And Processing                                                                                                  1.0e+00
## Pre Notch Processing In Golgi                                                                                                        1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.0e+00
## Pregnenolone Biosynthesis                                                                                                            1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.0e+00
## Presynaptic Function Of Kainate Receptors                                                                                            1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.0e+00
## Processing And Activation Of Sumo                                                                                                    1.0e+00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.0e+00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.0e+00
## Processing Of Dna Double Strand Break Ends                                                                                           1.0e+00
## Processing Of Intronless Pre Mrnas                                                                                                   1.0e+00
## Processing Of Smdt1                                                                                                                  1.0e+00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.0e+00
## Processive Synthesis On The Lagging Strand                                                                                           1.0e+00
## Prolactin Receptor Signaling                                                                                                         1.0e+00
## Prolonged Erk Activation Events                                                                                                      1.0e+00
## Propionyl Coa Catabolism                                                                                                             1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.0e+00
## Prostanoid Ligand Receptors                                                                                                          1.0e+00
## Protein Localization                                                                                                                 1.0e+00
## Protein Methylation                                                                                                                  1.0e+00
## Protein Protein Interactions At Synapses                                                                                             1.0e+00
## Protein Repair                                                                                                                       1.0e+00
## Protein Ubiquitination                                                                                                               1.0e+00
## Proton Coupled Monocarboxylate Transport                                                                                             1.0e+00
## Pten Regulation                                                                                                                      1.0e+00
## Ptk6 Expression                                                                                                                      1.0e+00
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.0e+00
## Ptk6 Regulates Cell Cycle                                                                                                            1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.0e+00
## Purine Catabolism                                                                                                                    1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.0e+00
## Purine Salvage                                                                                                                       1.0e+00
## Pyrimidine Catabolism                                                                                                                1.0e+00
## Pyrimidine Salvage                                                                                                                   1.0e+00
## Pyruvate Metabolism                                                                                                                  1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.0e+00
## Ra Biosynthesis Pathway                                                                                                              1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.0e+00
## Rab Geranylgeranylation                                                                                                              1.0e+00
## Rab Regulation Of Trafficking                                                                                                        1.0e+00
## Raf Activation                                                                                                                       1.0e+00
## Rap1 Signalling                                                                                                                      1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.0e+00
## Ras Processing                                                                                                                       1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.0e+00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.0e+00
## Recycling Of Bile Acids And Salts                                                                                                    1.0e+00
## Recycling Of Eif2 Gdp                                                                                                                1.0e+00
## Recycling Pathway Of L1                                                                                                              1.0e+00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.0e+00
## Reelin Signalling Pathway                                                                                                            1.0e+00
## Regulated Proteolysis Of P75ntr                                                                                                      1.0e+00
## Regulation Of Bach1 Activity                                                                                                         1.0e+00
## Regulation Of Beta Cell Development                                                                                                  1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.0e+00
## Regulation Of Expression Of Slits And Robos                                                                                          1.0e+00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.0e+00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.0e+00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Ifna Signaling                                                                                                         1.0e+00
## Regulation Of Ifng Signaling                                                                                                         1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.0e+00
## Regulation Of Insulin Secretion                                                                                                      1.0e+00
## Regulation Of Kit Signaling                                                                                                          1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.0e+00
## Regulation Of Pten Gene Transcription                                                                                                1.0e+00
## Regulation Of Pten Localization                                                                                                      1.0e+00
## Regulation Of Pten Mrna Translation                                                                                                  1.0e+00
## Regulation Of Pten Stability And Activity                                                                                            1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.0e+00
## Regulation Of Ras By Gaps                                                                                                            1.0e+00
## Regulation Of Runx1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx2 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx3 Expression And Activity                                                                                          1.0e+00
## Regulation Of Signaling By Cbl                                                                                                       1.0e+00
## Regulation Of Signaling By Nodal                                                                                                     1.0e+00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.0e+00
## Relaxin Receptors                                                                                                                    1.0e+00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.0e+00
## Release Of Hh Np From The Secreting Cell                                                                                             1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.0e+00
## Reproduction                                                                                                                         1.0e+00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.0e+00
## Resolution Of D Loop Structures                                                                                                      1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.0e+00
## Respiratory Electron Transport                                                                                                       1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.0e+00
## Response Of Mtb To Phagocytosis                                                                                                      1.0e+00
## Response To Metal Ions                                                                                                               1.0e+00
## Ret Signaling                                                                                                                        1.0e+00
## Retinoid Cycle Disease Events                                                                                                        1.0e+00
## Retrograde Neurotrophin Signalling                                                                                                   1.0e+00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.0e+00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.0e+00
## Rho Gtpases Activate Cit                                                                                                             1.0e+00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.0e+00
## Rho Gtpases Activate Pkns                                                                                                            1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.0e+00
## Rho Gtpases Activate Rocks                                                                                                           1.0e+00
## Rhobtb Gtpase Cycle                                                                                                                  1.0e+00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb3 Atpase Cycle                                                                                                                 1.0e+00
## Rhot1 Gtpase Cycle                                                                                                                   1.0e+00
## Rna Polymerase I Promoter Escape                                                                                                     1.0e+00
## Rna Polymerase I Transcription                                                                                                       1.0e+00
## Rna Polymerase I Transcription Initiation                                                                                            1.0e+00
## Rna Polymerase I Transcription Termination                                                                                           1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.0e+00
## Rna Polymerase Ii Transcription Termination                                                                                          1.0e+00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.0e+00
## Rna Polymerase Iii Transcription                                                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Termination                                                                                         1.0e+00
## Robo Receptors Bind Akap5                                                                                                            1.0e+00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.0e+00
## Role Of Phospholipids In Phagocytosis                                                                                                1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.0e+00
## Rora Activates Gene Expression                                                                                                       1.0e+00
## Rrna Modification In The Mitochondrion                                                                                               1.0e+00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Rrna Processing                                                                                                                      1.0e+00
## Rrna Processing In The Mitochondrion                                                                                                 1.0e+00
## Rsk Activation                                                                                                                       1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.0e+00
## Runx2 Regulates Bone Development                                                                                                     1.0e+00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.0e+00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.0e+00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.0e+00
## Runx3 Regulates Notch Signaling                                                                                                      1.0e+00
## Runx3 Regulates P14 Arf                                                                                                              1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.0e+00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.0e+00
## Sars Cov 1 Infection                                                                                                                 1.0e+00
## Sars Cov 2 Infection                                                                                                                 1.0e+00
## Scavenging By Class F Receptors                                                                                                      1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.0e+00
## Selenoamino Acid Metabolism                                                                                                          1.0e+00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.0e+00
## Sema4d In Semaphorin Signaling                                                                                                       1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.0e+00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.0e+00
## Sensory Processing Of Sound                                                                                                          1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.0e+00
## Separation Of Sister Chromatids                                                                                                      1.0e+00
## Serine Biosynthesis                                                                                                                  1.0e+00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.0e+00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.0e+00
## Serotonin Receptors                                                                                                                  1.0e+00
## Shc Mediated Cascade Fgfr1                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr3                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr4                                                                                                           1.0e+00
## Shc Related Events Triggered By Igf1r                                                                                                1.0e+00
## Shc1 Events In Egfr Signaling                                                                                                        1.0e+00
## Shc1 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.0e+00
## Sialic Acid Metabolism                                                                                                               1.0e+00
## Signal Amplification                                                                                                                 1.0e+00
## Signal Attenuation                                                                                                                   1.0e+00
## Signal Regulatory Protein Family Interactions                                                                                        1.0e+00
## Signal Transduction By L1                                                                                                            1.0e+00
## Signaling By Activin                                                                                                                 1.0e+00
## Signaling By Bmp                                                                                                                     1.0e+00
## Signaling By Braf And Raf Fusions                                                                                                    1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.0e+00
## Signaling By Egfr In Cancer                                                                                                          1.0e+00
## Signaling By Erbb2                                                                                                                   1.0e+00
## Signaling By Erbb2 Ecd Mutants                                                                                                       1.0e+00
## Signaling By Erbb2 In Cancer                                                                                                         1.0e+00
## Signaling By Erbb4                                                                                                                   1.0e+00
## Signaling By Erythropoietin                                                                                                          1.0e+00
## Signaling By Fgfr                                                                                                                    1.0e+00
## Signaling By Fgfr1                                                                                                                   1.0e+00
## Signaling By Fgfr2                                                                                                                   1.0e+00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.0e+00
## Signaling By Fgfr2 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr3                                                                                                                   1.0e+00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.0e+00
## Signaling By Fgfr4                                                                                                                   1.0e+00
## Signaling By Fgfr4 In Disease                                                                                                        1.0e+00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.0e+00
## Signaling By Hedgehog                                                                                                                1.0e+00
## Signaling By Hippo                                                                                                                   1.0e+00
## Signaling By Lrp5 Mutants                                                                                                            1.0e+00
## Signaling By Mapk Mutants                                                                                                            1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.0e+00
## Signaling By Mras Complex Mutants                                                                                                    1.0e+00
## Signaling By Mst1                                                                                                                    1.0e+00
## Signaling By Nodal                                                                                                                   1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.0e+00
## Signaling By Notch3                                                                                                                  1.0e+00
## Signaling By Notch4                                                                                                                  1.0e+00
## Signaling By Ntrk2 Trkb                                                                                                              1.0e+00
## Signaling By Ntrk3 Trkc                                                                                                              1.0e+00
## Signaling By Retinoic Acid                                                                                                           1.0e+00
## Signaling By Rnf43 Mutants                                                                                                           1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.0e+00
## Signaling By Wnt In Cancer                                                                                                           1.0e+00
## Signalling To Erks                                                                                                                   1.0e+00
## Signalling To P38 Via Rit And Rin                                                                                                    1.0e+00
## Signalling To Ras                                                                                                                    1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.0e+00
## Slc Mediated Transmembrane Transport                                                                                                 1.0e+00
## Slc Transporter Disorders                                                                                                            1.0e+00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.0e+00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.0e+00
## Smooth Muscle Contraction                                                                                                            1.0e+00
## Snrnp Assembly                                                                                                                       1.0e+00
## Sodium Calcium Exchangers                                                                                                            1.0e+00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.0e+00
## Sodium Proton Exchangers                                                                                                             1.0e+00
## Sos Mediated Signalling                                                                                                              1.0e+00
## Sperm Motility And Taxes                                                                                                             1.0e+00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.0e+00
## Sphingolipid Metabolism                                                                                                              1.0e+00
## Spry Regulation Of Fgf Signaling                                                                                                     1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.0e+00
## Stabilization Of P53                                                                                                                 1.0e+00
## Stat5 Activation                                                                                                                     1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.0e+00
## Stimuli Sensing Channels                                                                                                             1.0e+00
## Sting Mediated Induction Of Host Immune Responses                                                                                    1.0e+00
## Striated Muscle Contraction                                                                                                          1.0e+00
## Sulfide Oxidation To Sulfate                                                                                                         1.0e+00
## Sulfur Amino Acid Metabolism                                                                                                         1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.0e+00
## Sumo Is Proteolytically Processed                                                                                                    1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.0e+00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.0e+00
## Sumoylation Of Dna Replication Proteins                                                                                              1.0e+00
## Sumoylation Of Intracellular Receptors                                                                                               1.0e+00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.0e+00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.0e+00
## Sumoylation Of Transcription Cofactors                                                                                               1.0e+00
## Sumoylation Of Transcription Factors                                                                                                 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.0e+00
## Suppression Of Apoptosis                                                                                                             1.0e+00
## Suppression Of Phagosomal Maturation                                                                                                 1.0e+00
## Surfactant Metabolism                                                                                                                1.0e+00
## Switching Of Origins To A Post Replicative State                                                                                     1.0e+00
## Synaptic Adhesion Like Molecules                                                                                                     1.0e+00
## Syndecan Interactions                                                                                                                1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.0e+00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.0e+00
## Synthesis Of Diphthamide Eef2                                                                                                        1.0e+00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.0e+00
## Synthesis Of Gdp Mannose                                                                                                             1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.0e+00
## Synthesis Of Ketone Bodies                                                                                                           1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.0e+00
## Synthesis Of Lipoxins Lx                                                                                                             1.0e+00
## Synthesis Of Pa                                                                                                                      1.0e+00
## Synthesis Of Pc                                                                                                                      1.0e+00
## Synthesis Of Pe                                                                                                                      1.0e+00
## Synthesis Of Pg                                                                                                                      1.0e+00
## Synthesis Of Pi                                                                                                                      1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.0e+00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.0e+00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.0e+00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.0e+00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.0e+00
## Tbc Rabgaps                                                                                                                          1.0e+00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.0e+00
## Telomere C Strand Synthesis Initiation                                                                                               1.0e+00
## Telomere Extension By Telomerase                                                                                                     1.0e+00
## Telomere Maintenance                                                                                                                 1.0e+00
## Terminal Pathway Of Complement                                                                                                       1.0e+00
## Termination Of O Glycan Biosynthesis                                                                                                 1.0e+00
## Termination Of Translesion Dna Synthesis                                                                                             1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.0e+00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.0e+00
## The Activation Of Arylsulfatases                                                                                                     1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.0e+00
## The Fatty Acid Cycling Model                                                                                                         1.0e+00
## The Phototransduction Cascade                                                                                                        1.0e+00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.0e+00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.0e+00
## Thyroxine Biosynthesis                                                                                                               1.0e+00
## Tie2 Signaling                                                                                                                       1.0e+00
## Tight Junction Interactions                                                                                                          1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.0e+00
## Tp53 Regulates Metabolic Genes                                                                                                       1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.0e+00
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.0e+00
## Traf6 Mediated Irf7 Activation                                                                                                       1.0e+00
## Trafficking Of Ampa Receptors                                                                                                        1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.0e+00
## Trail Signaling                                                                                                                      1.0e+00
## Trans Golgi Network Vesicle Budding                                                                                                  1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.0e+00
## Transcription Of The Hiv Genome                                                                                                      1.0e+00
## Transcriptional Regulation By E2f6                                                                                                   1.0e+00
## Transcriptional Regulation By Small Rnas                                                                                             1.0e+00
## Transcriptional Regulation By Ventx                                                                                                  1.0e+00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.0e+00
## Transferrin Endocytosis And Recycling                                                                                                1.0e+00
## Translation                                                                                                                          1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.0e+00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.0e+00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.0e+00
## Translesion Synthesis By Polh                                                                                                        1.0e+00
## Translesion Synthesis By Polk                                                                                                        1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.0e+00
## Transport And Synthesis Of Paps                                                                                                      1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.0e+00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.0e+00
## Transport Of Fatty Acids                                                                                                             1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.0e+00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.0e+00
## Transport Of Nucleotide Sugars                                                                                                       1.0e+00
## Transport Of Organic Anions                                                                                                          1.0e+00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.0e+00
## Triglyceride Biosynthesis                                                                                                            1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.0e+00
## Trna Aminoacylation                                                                                                                  1.0e+00
## Trna Modification In The Mitochondrion                                                                                               1.0e+00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Trna Processing                                                                                                                      1.0e+00
## Trna Processing In The Mitochondrion                                                                                                 1.0e+00
## Trna Processing In The Nucleus                                                                                                       1.0e+00
## Trp Channels                                                                                                                         1.0e+00
## Tryptophan Catabolism                                                                                                                1.0e+00
## Type I Hemidesmosome Assembly                                                                                                        1.0e+00
## Tyrosine Catabolism                                                                                                                  1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.0e+00
## Ubiquinol Biosynthesis                                                                                                               1.0e+00
## Uch Proteinases                                                                                                                      1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.0e+00
## Unwinding Of Dna                                                                                                                     1.0e+00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.0e+00
## Uptake And Function Of Anthrax Toxins                                                                                                1.0e+00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.0e+00
## Urea Cycle                                                                                                                           1.0e+00
## Vasopressin Like Receptors                                                                                                           1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.0e+00
## Vegf Ligand Receptor Interactions                                                                                                    1.0e+00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.0e+00
## Viral Messenger Rna Synthesis                                                                                                        1.0e+00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.0e+00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.0e+00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.0e+00
## Vitamin C Ascorbate Metabolism                                                                                                       1.0e+00
## Vitamin D Calciferol Metabolism                                                                                                      1.0e+00
## Vitamins                                                                                                                             1.0e+00
## Vldl Assembly                                                                                                                        1.0e+00
## Vldl Clearance                                                                                                                       1.0e+00
## Vldlr Internalisation And Degradation                                                                                                1.0e+00
## Voltage Gated Potassium Channels                                                                                                     1.0e+00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.0e+00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.0e+00
## Wnt Mediated Activation Of Dvl                                                                                                       1.0e+00
## Xenobiotics                                                                                                                          1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.0e+00
## Zinc Transporters                                                                                                                    1.0e+00
##                                                                                                                                          fdr
## Cytokine Signaling In Immune System                                                                                                  9.9e-32
## Signaling By Interleukins                                                                                                            9.7e-29
## Innate Immune System                                                                                                                 8.7e-24
## Interleukin 10 Signaling                                                                                                             6.7e-19
## Interleukin 4 And Interleukin 13 Signaling                                                                                           1.3e-18
## Toll Like Receptor Cascades                                                                                                          9.0e-12
## Peptide Ligand Binding Receptors                                                                                                     1.8e-10
## Chemokine Receptors Bind Chemokines                                                                                                  2.4e-10
## Neutrophil Degranulation                                                                                                             7.1e-10
## Interleukin 1 Family Signaling                                                                                                       1.2e-09
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                    1.6e-08
## Myd88 Independent Tlr4 Cascade                                                                                                       1.9e-08
## Gpcr Ligand Binding                                                                                                                  3.7e-08
## Class A 1 Rhodopsin Like Receptors                                                                                                   5.7e-08
## Signaling By Gpcr                                                                                                                    1.5e-07
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                 6.6e-07
## Adaptive Immune System                                                                                                               1.5e-06
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                             7.1e-06
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                    1.1e-05
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                1.2e-05
## Interleukin 17 Signaling                                                                                                             2.6e-05
## G Alpha I Signalling Events                                                                                                          2.9e-05
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                         3.4e-05
## Death Receptor Signalling                                                                                                            8.6e-05
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                    9.3e-05
## Programmed Cell Death                                                                                                                9.3e-05
## Regulated Necrosis                                                                                                                   1.5e-04
## Interleukin 1 Signaling                                                                                                              1.6e-04
## Purinergic Signaling In Leishmaniasis Infection                                                                                      1.6e-04
## Interleukin 18 Signaling                                                                                                             1.6e-04
## Leishmania Infection                                                                                                                 1.6e-04
## Tnfs Bind Their Physiological Receptors                                                                                              2.3e-04
## Diseases Of Immune System                                                                                                            3.0e-04
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                             4.5e-04
## Costimulation By The Cd28 Family                                                                                                     4.7e-04
## Nod1 2 Signaling Pathway                                                                                                             5.0e-04
## Interleukin 2 Family Signaling                                                                                                       1.1e-03
## P75ntr Signals Via Nf Kb                                                                                                             1.3e-03
## Heme Signaling                                                                                                                       1.5e-03
## Regulation Of Tlr By Endogenous Ligand                                                                                               2.9e-03
## Complement Cascade                                                                                                                   3.4e-03
## Activated Tak1 Mediates P38 Mapk Activation                                                                                          3.6e-03
## Post Translational Protein Modification                                                                                              4.4e-03
## Pyroptosis                                                                                                                           5.6e-03
## Deubiquitination                                                                                                                     5.8e-03
## Ovarian Tumor Domain Proteases                                                                                                       1.5e-02
## Interleukin 1 Processing                                                                                                             1.8e-02
## P75 Ntr Receptor Mediated Signalling                                                                                                 1.9e-02
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                 1.9e-02
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                            2.1e-02
## Apoptosis                                                                                                                            2.1e-02
## Dap12 Interactions                                                                                                                   2.2e-02
## Infectious Disease                                                                                                                   2.7e-02
## Cd28 Dependent Vav1 Pathway                                                                                                          2.7e-02
## Cell Surface Interactions At The Vascular Wall                                                                                       2.7e-02
## Killing Mechanisms                                                                                                                   2.7e-02
## Nf Kb Is Activated And Signals Survival                                                                                              3.0e-02
## P75ntr Recruits Signalling Complexes                                                                                                 3.0e-02
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                              3.0e-02
## Trafficking And Processing Of Endosomal Tlr                                                                                          3.0e-02
## Hemostasis                                                                                                                           3.3e-02
## Interleukin 15 Signaling                                                                                                             3.4e-02
## Interleukin 12 Family Signaling                                                                                                      3.6e-02
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                     4.3e-02
## Sumoylation Of Dna Methylation Proteins                                                                                              4.3e-02
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                4.7e-02
## Foxo Mediated Transcription                                                                                                          5.2e-02
## Irak4 Deficiency Tlr2 4                                                                                                              5.2e-02
## Scavenging By Class A Receptors                                                                                                      5.5e-02
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                         5.5e-02
## Scavenging Of Heme From Plasma                                                                                                       5.5e-02
## Circadian Clock                                                                                                                      5.7e-02
## Ctla4 Inhibitory Signaling                                                                                                           6.4e-02
## Inflammasomes                                                                                                                        6.4e-02
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                           6.4e-02
## Ikk Complex Recruitment Mediated By Rip1                                                                                             7.5e-02
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                              8.0e-02
## Traf6 Mediated Nf Kb Activation                                                                                                      8.0e-02
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                        9.2e-02
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                     9.6e-02
## G0 And Early G1                                                                                                                      9.6e-02
## Interleukin Receptor Shc Signaling                                                                                                   9.6e-02
## Transcriptional Regulation Of Granulopoiesis                                                                                         1.0e-01
## Pd 1 Signaling                                                                                                                       1.0e-01
## Ripk1 Mediated Regulated Necrosis                                                                                                    1.0e-01
## Interferon Gamma Signaling                                                                                                           1.0e-01
## Mapk6 Mapk4 Signaling                                                                                                                1.0e-01
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                             1.1e-01
## Cellular Responses To External Stimuli                                                                                               1.1e-01
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                  1.1e-01
## Nicotinate Metabolism                                                                                                                1.1e-01
## Perk Regulates Gene Expression                                                                                                       1.2e-01
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                               1.2e-01
## Clec7a Dectin 1 Signaling                                                                                                            1.2e-01
## Vesicle Mediated Transport                                                                                                           1.2e-01
## Cargo Concentration In The Er                                                                                                        1.2e-01
## Cd28 Co Stimulation                                                                                                                  1.2e-01
## Diseases Of Programmed Cell Death                                                                                                    1.2e-01
## Regulation Of Tnfr1 Signaling                                                                                                        1.3e-01
## Antigen Processing Cross Presentation                                                                                                1.3e-01
## Mapk Family Signaling Cascades                                                                                                       1.4e-01
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                   1.5e-01
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps              1.9e-01
## Tcr Signaling                                                                                                                        1.9e-01
## Tnf Signaling                                                                                                                        1.9e-01
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                           1.9e-01
## Interleukin 12 Signaling                                                                                                             2.2e-01
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                     2.2e-01
## Response To Elevated Platelet Cytosolic Ca2                                                                                          2.2e-01
## Netrin 1 Signaling                                                                                                                   2.4e-01
## C Type Lectin Receptors Clrs                                                                                                         2.5e-01
## Rna Polymerase Ii Transcription                                                                                                      2.5e-01
## Alternative Complement Activation                                                                                                    2.5e-01
## Fasl Cd95l Signaling                                                                                                                 2.5e-01
## G2 M Dna Replication Checkpoint                                                                                                      2.5e-01
## Galactose Catabolism                                                                                                                 2.5e-01
## Hdl Clearance                                                                                                                        2.5e-01
## Intrinsic Pathway For Apoptosis                                                                                                      2.5e-01
## Mecp2 Regulates Transcription Factors                                                                                                2.5e-01
## Nostrin Mediated Enos Trafficking                                                                                                    2.5e-01
## Platelet Activation Signaling And Aggregation                                                                                        2.5e-01
## Rhoj Gtpase Cycle                                                                                                                    2.5e-01
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                      2.5e-01
## Epigenetic Regulation Of Gene Expression                                                                                             2.6e-01
## Er To Golgi Anterograde Transport                                                                                                    2.8e-01
## Rhoq Gtpase Cycle                                                                                                                    2.8e-01
## Biosynthesis Of Epa Derived Spms                                                                                                     2.8e-01
## Clec7a Inflammasome Pathway                                                                                                          2.8e-01
## Fibronectin Matrix Formation                                                                                                         2.8e-01
## Phosphorylation Of Emi1                                                                                                              2.8e-01
## Scavenging By Class B Receptors                                                                                                      2.8e-01
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                    2.8e-01
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                 2.8e-01
## Tnfr1 Mediated Ceramide Production                                                                                                   2.8e-01
## Ca2 Pathway                                                                                                                          2.9e-01
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                         2.9e-01
## Transcriptional Regulation By Mecp2                                                                                                  2.9e-01
## Dna Methylation                                                                                                                      3.0e-01
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                            3.0e-01
## Creb Phosphorylation                                                                                                                 3.0e-01
## Ikba Variant Leads To Eda Id                                                                                                         3.0e-01
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                  3.0e-01
## Copii Mediated Vesicle Transport                                                                                                     3.2e-01
## Activation Of C3 And C5                                                                                                              3.3e-01
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                   3.3e-01
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                         3.3e-01
## Hdl Assembly                                                                                                                         3.3e-01
## Inactivation Of Cdc42 And Rac1                                                                                                       3.3e-01
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                    3.3e-01
## Runx3 Regulates Wnt Signaling                                                                                                        3.3e-01
## Interferon Alpha Beta Signaling                                                                                                      3.4e-01
## Prc2 Methylates Histones And Dna                                                                                                     3.4e-01
## Signaling By Tgf Beta Receptor Complex                                                                                               3.4e-01
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                         3.4e-01
## Cd163 Mediating An Anti Inflammatory Response                                                                                        3.4e-01
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                          3.4e-01
## Extra Nuclear Estrogen Signaling                                                                                                     3.4e-01
## Interleukin 23 Signaling                                                                                                             3.4e-01
## Interleukin 9 Signaling                                                                                                              3.4e-01
## Rhog Gtpase Cycle                                                                                                                    3.4e-01
## Trif Mediated Programmed Cell Death                                                                                                  3.4e-01
## Sumoylation                                                                                                                          3.5e-01
## Transport To The Golgi And Subsequent Modification                                                                                   3.5e-01
## Metabolism Of Vitamins And Cofactors                                                                                                 3.5e-01
## Activation Of The Ap 1 Family Of Transcription Factors                                                                               3.5e-01
## Akt Phosphorylates Targets In The Nucleus                                                                                            3.5e-01
## Camk Iv Mediated Phosphorylation Of Creb                                                                                             3.5e-01
## Chylomicron Assembly                                                                                                                 3.5e-01
## Chylomicron Remodeling                                                                                                               3.5e-01
## Hdl Remodeling                                                                                                                       3.5e-01
## Interleukin 21 Signaling                                                                                                             3.5e-01
## Mapk3 Erk1 Activation                                                                                                                3.5e-01
## Mastl Facilitates Mitotic Progression                                                                                                3.5e-01
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                           3.5e-01
## Initial Triggering Of Complement                                                                                                     3.5e-01
## Cellular Senescence                                                                                                                  3.6e-01
## Condensation Of Prometaphase Chromosomes                                                                                             3.6e-01
## Dermatan Sulfate Biosynthesis                                                                                                        3.6e-01
## Dscam Interactions                                                                                                                   3.6e-01
## Endosomal Vacuolar Pathway                                                                                                           3.6e-01
## Enos Activation                                                                                                                      3.6e-01
## Interleukin 27 Signaling                                                                                                             3.6e-01
## Interleukin 6 Signaling                                                                                                              3.6e-01
## Receptor Mediated Mitophagy                                                                                                          3.6e-01
## Regulation By C Flip                                                                                                                 3.6e-01
## Rho Gtpases Activate Ktn1                                                                                                            3.6e-01
## Signaling By Leptin                                                                                                                  3.6e-01
## Sumoylation Of Immune Response Proteins                                                                                              3.6e-01
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                     3.6e-01
## Interferon Signaling                                                                                                                 3.7e-01
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                    3.7e-01
## Interleukin 2 Signaling                                                                                                              3.7e-01
## Interleukin 35 Signalling                                                                                                            3.7e-01
## Notch2 Intracellular Domain Regulates Transcription                                                                                  3.7e-01
## Rac2 Gtpase Cycle                                                                                                                    3.7e-01
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                            3.7e-01
## Signaling By Receptor Tyrosine Kinases                                                                                               3.7e-01
## Tandem Pore Domain Potassium Channels                                                                                                3.7e-01
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                             3.7e-01
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                 3.8e-01
## Apoptosis Induced Dna Fragmentation                                                                                                  3.8e-01
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                        3.8e-01
## Dissolution Of Fibrin Clot                                                                                                           3.8e-01
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                       3.8e-01
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                             3.8e-01
## Tnfr1 Induced Proapoptotic Signaling                                                                                                 3.8e-01
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                3.8e-01
## Unfolded Protein Response Upr                                                                                                        3.8e-01
## Class B 2 Secretin Family Receptors                                                                                                  3.9e-01
## Rac3 Gtpase Cycle                                                                                                                    3.9e-01
## Dcc Mediated Attractive Signaling                                                                                                    4.0e-01
## Early Phase Of Hiv Life Cycle                                                                                                        4.0e-01
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                  4.0e-01
## Irak1 Recruits Ikk Complex                                                                                                           4.0e-01
## Repression Of Wnt Target Genes                                                                                                       4.0e-01
## Antimicrobial Peptides                                                                                                               4.0e-01
## Esr Mediated Signaling                                                                                                               4.0e-01
## Ub Specific Processing Proteases                                                                                                     4.0e-01
## Depolymerisation Of The Nuclear Lamina                                                                                               4.1e-01
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                            4.1e-01
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                             4.1e-01
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                   4.1e-01
## Wnt5a Dependent Internalization Of Fzd4                                                                                              4.1e-01
## Copi Mediated Anterograde Transport                                                                                                  4.2e-01
## Foxo Mediated Transcription Of Cell Death Genes                                                                                      4.2e-01
## Nrif Signals Cell Death From The Nucleus                                                                                             4.2e-01
## Signaling By Tgfb Family Members                                                                                                     4.2e-01
## The Nlrp3 Inflammasome                                                                                                               4.2e-01
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                         4.2e-01
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                 4.2e-01
## Pi3k Akt Signaling In Cancer                                                                                                         4.3e-01
## Tcf Dependent Signaling In Response To Wnt                                                                                           4.3e-01
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                 4.4e-01
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                      4.4e-01
## Signaling By Vegf                                                                                                                    4.4e-01
## Transcriptional Regulation By Runx1                                                                                                  4.4e-01
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                     4.4e-01
## Negative Epigenetic Regulation Of Rrna Expression                                                                                    4.4e-01
## Abc Transporters In Lipid Homeostasis                                                                                                4.4e-01
## Amyloid Fiber Formation                                                                                                              4.5e-01
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                        4.4e-01
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                     4.4e-01
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                      4.4e-01
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                          4.4e-01
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                               4.4e-01
## Senescence Associated Secretory Phenotype Sasp                                                                                       4.5e-01
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                              4.5e-01
## Initiation Of Nuclear Envelope Ne Reformation                                                                                        4.5e-01
## Negative Regulation Of The Pi3k Akt Network                                                                                          4.5e-01
## Nicotinamide Salvaging                                                                                                               4.5e-01
## Other Semaphorin Interactions                                                                                                        4.5e-01
## Phase 4 Resting Membrane Potential                                                                                                   4.5e-01
## Plasma Lipoprotein Assembly                                                                                                          4.5e-01
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                 4.5e-01
## G Beta Gamma Signalling Through Cdc42                                                                                                4.6e-01
## Phosphorylation Of The Apc C                                                                                                         4.6e-01
## Pka Mediated Phosphorylation Of Creb                                                                                                 4.6e-01
## Signaling By Kit In Disease                                                                                                          4.6e-01
## Signaling By Pdgfr In Disease                                                                                                        4.6e-01
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                4.6e-01
## Branched Chain Amino Acid Catabolism                                                                                                 4.8e-01
## Interleukin 37 Signaling                                                                                                             4.8e-01
## Rho Gtpases Activate Paks                                                                                                            4.8e-01
## Cd28 Dependent Pi3k Akt Signaling                                                                                                    4.9e-01
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                          4.9e-01
## E2f Mediated Regulation Of Dna Replication                                                                                           4.9e-01
## Pink1 Prkn Mediated Mitophagy                                                                                                        4.9e-01
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                   4.9e-01
## Cytoprotection By Hmox1                                                                                                              5.0e-01
## Incretin Synthesis Secretion And Inactivation                                                                                        5.1e-01
## Mhc Class Ii Antigen Presentation                                                                                                    5.1e-01
## Raf Independent Mapk1 3 Activation                                                                                                   5.1e-01
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                         5.2e-01
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                               5.2e-01
## Growth Hormone Receptor Signaling                                                                                                    5.2e-01
## Interleukin 6 Family Signaling                                                                                                       5.2e-01
## Triglyceride Catabolism                                                                                                              5.2e-01
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                             5.3e-01
## Basigin Interactions                                                                                                                 5.3e-01
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                              5.3e-01
## Inactivation Of Csf3 G Csf Signaling                                                                                                 5.3e-01
## Signaling By Ntrks                                                                                                                   5.4e-01
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                        5.4e-01
## Interleukin 20 Family Signaling                                                                                                      5.4e-01
## Wnt Ligand Biogenesis And Trafficking                                                                                                5.4e-01
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                5.6e-01
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                     5.7e-01
## Vegfr2 Mediated Vascular Permeability                                                                                                5.6e-01
## Activation Of Bh3 Only Proteins                                                                                                      6.0e-01
## Beta Catenin Independent Wnt Signaling                                                                                               6.0e-01
## Dap12 Signaling                                                                                                                      5.8e-01
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                       6.0e-01
## Downstream Signal Transduction                                                                                                       5.8e-01
## Egfr Downregulation                                                                                                                  6.0e-01
## Extracellular Matrix Organization                                                                                                    6.0e-01
## Fgfr1 Mutant Receptor Activation                                                                                                     6.0e-01
## G1 S Specific Transcription                                                                                                          5.8e-01
## Mitophagy                                                                                                                            5.8e-01
## Mitotic G1 Phase And G1 S Transition                                                                                                 6.0e-01
## Myogenesis                                                                                                                           5.8e-01
## Signaling By Csf3 G Csf                                                                                                              6.0e-01
## Signaling By Nuclear Receptors                                                                                                       5.9e-01
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                 6.0e-01
## Activation Of Matrix Metalloproteinases                                                                                              6.2e-01
## Asparagine N Linked Glycosylation                                                                                                    6.1e-01
## G Protein Beta Gamma Signalling                                                                                                      6.1e-01
## Intracellular Signaling By Second Messengers                                                                                         6.1e-01
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                         6.3e-01
## Plasma Lipoprotein Clearance                                                                                                         6.2e-01
## Plasma Lipoprotein Remodeling                                                                                                        6.1e-01
## Regulation Of Mecp2 Expression And Activity                                                                                          6.1e-01
## Rho Gtpases Activate Iqgaps                                                                                                          6.1e-01
## Rhou Gtpase Cycle                                                                                                                    6.3e-01
## Rhov Gtpase Cycle                                                                                                                    6.2e-01
## Signaling By Notch2                                                                                                                  6.2e-01
## Ca Dependent Events                                                                                                                  6.6e-01
## Cdc42 Gtpase Cycle                                                                                                                   6.4e-01
## Cellular Response To Chemical Stress                                                                                                 6.5e-01
## Gpvi Mediated Activation Cascade                                                                                                     6.4e-01
## Interleukin 7 Signaling                                                                                                              6.5e-01
## Metalloprotease Dubs                                                                                                                 6.6e-01
## Nuclear Pore Complex Npc Disassembly                                                                                                 6.5e-01
## Regulation Of Tp53 Expression And Degradation                                                                                        6.6e-01
## Rho Gtpases Activate Wasps And Waves                                                                                                 6.5e-01
## Rhoh Gtpase Cycle                                                                                                                    6.6e-01
## Ros And Rns Production In Phagocytes                                                                                                 6.5e-01
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                     6.8e-01
## Generation Of Second Messenger Molecules                                                                                             6.8e-01
## Ngf Stimulated Transcription                                                                                                         6.8e-01
## Signaling By Fgfr1 In Disease                                                                                                        6.7e-01
## Signaling By Wnt                                                                                                                     6.7e-01
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                         6.7e-01
## Triglyceride Metabolism                                                                                                              6.7e-01
## Beta Defensins                                                                                                                       7.1e-01
## Dag And Ip3 Signaling                                                                                                                7.1e-01
## Ephb Mediated Forward Signaling                                                                                                      7.1e-01
## Rhof Gtpase Cycle                                                                                                                    7.1e-01
## Rnd1 Gtpase Cycle                                                                                                                    7.1e-01
## Rnd2 Gtpase Cycle                                                                                                                    7.2e-01
## Rnd3 Gtpase Cycle                                                                                                                    7.1e-01
## Signaling By Scf Kit                                                                                                                 7.2e-01
## Developmental Biology                                                                                                                7.3e-01
## Fc Epsilon Receptor Fceri Signaling                                                                                                  7.6e-01
## Rac1 Gtpase Cycle                                                                                                                    7.5e-01
## Irs Mediated Signalling                                                                                                              7.9e-01
## Metabolism Of Fat Soluble Vitamins                                                                                                   7.9e-01
## Notch1 Intracellular Domain Regulates Transcription                                                                                  7.9e-01
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                     8.0e-01
## Apoptotic Execution Phase                                                                                                            8.3e-01
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                      8.1e-01
## Class I Mhc Mediated Antigen Processing Presentation                                                                                 8.2e-01
## Defensins                                                                                                                            8.3e-01
## Rhod Gtpase Cycle                                                                                                                    8.2e-01
## Signaling By Egfr                                                                                                                    8.1e-01
## G Protein Mediated Events                                                                                                            8.4e-01
## Insulin Receptor Signalling Cascade                                                                                                  8.4e-01
## Nervous System Development                                                                                                           8.4e-01
## Nuclear Envelope Breakdown                                                                                                           8.4e-01
## Signaling By Ptk6                                                                                                                    8.4e-01
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                      8.4e-01
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                               8.6e-01
## G Alpha Q Signalling Events                                                                                                          9.0e-01
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                    8.9e-01
## Signaling By Pdgf                                                                                                                    8.9e-01
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                   9.3e-01
## Arachidonic Acid Metabolism                                                                                                          9.0e-01
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                       9.3e-01
## Nrage Signals Death Through Jnk                                                                                                      9.0e-01
## Nuclear Events Kinase And Transcription Factor Activation                                                                            9.2e-01
## Asymmetric Localization Of Pcp Proteins                                                                                              9.5e-01
## Collagen Degradation                                                                                                                 9.5e-01
## Ncam Signaling For Neurite Out Growth                                                                                                9.4e-01
## Semaphorin Interactions                                                                                                              9.5e-01
## Signaling By Fgfr In Disease                                                                                                         9.4e-01
## Membrane Trafficking                                                                                                                 9.7e-01
## Sirt1 Negatively Regulates Rrna Expression                                                                                           9.9e-01
## Aurka Activation By Tpx2                                                                                                             1.0e+00
## Creation Of C4 And C2 Activators                                                                                                     1.0e+00
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                 1.0e+00
## Rhob Gtpase Cycle                                                                                                                    1.0e+00
## Condensation Of Prophase Chromosomes                                                                                                 1.0e+00
## Rhoc Gtpase Cycle                                                                                                                    1.0e+00
## Signaling By Notch                                                                                                                   1.0e+00
## Signaling By Notch1                                                                                                                  1.0e+00
## Abc Transporter Disorders                                                                                                            1.0e+00
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                        1.0e+00
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                    1.0e+00
## Dna Double Strand Break Response                                                                                                     1.0e+00
## Ecm Proteoglycans                                                                                                                    1.0e+00
## Nuclear Envelope Ne Reassembly                                                                                                       1.0e+00
## Rmts Methylate Histone Arginines                                                                                                     1.0e+00
## Signaling By Insulin Receptor                                                                                                        1.0e+00
## Signaling By Met                                                                                                                     1.0e+00
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                            1.0e+00
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                   1.0e+00
## Potential Therapeutics For Sars                                                                                                      1.0e+00
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                             1.0e+00
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                      1.0e+00
## Selective Autophagy                                                                                                                  1.0e+00
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                     1.0e+00
## Degradation Of Beta Catenin By The Destruction Complex                                                                               1.0e+00
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                        1.0e+00
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                    1.0e+00
## Fceri Mediated Mapk Activation                                                                                                       1.0e+00
## Regulation Of Plk1 Activity At G2 M Transition                                                                                       1.0e+00
## Eph Ephrin Signaling                                                                                                                 1.0e+00
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                            1.0e+00
## Opioid Signalling                                                                                                                    1.0e+00
## Pcp Ce Pathway                                                                                                                       1.0e+00
## Peptide Hormone Metabolism                                                                                                           1.0e+00
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                 1.0e+00
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                   1.0e+00
## Fcgr3a Mediated Il10 Synthesis                                                                                                       1.0e+00
## G2 M Dna Damage Checkpoint                                                                                                           1.0e+00
## Metabolism Of Carbohydrates                                                                                                          1.0e+00
## Mitochondrial Biogenesis                                                                                                             1.0e+00
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                   1.0e+00
## Recruitment Of Numa To Mitotic Centrosomes                                                                                           1.0e+00
## Transcriptional Regulation By Runx3                                                                                                  1.0e+00
## Organelle Biogenesis And Maintenance                                                                                                 1.0e+00
## Protein Folding                                                                                                                      1.0e+00
## Visual Phototransduction                                                                                                             1.0e+00
## Abc Family Proteins Mediated Transport                                                                                               1.0e+00
## Cellular Response To Heat Stress                                                                                                     1.0e+00
## Potassium Channels                                                                                                                   1.0e+00
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                  1.0e+00
## Parasite Infection                                                                                                                   1.0e+00
## Regulation Of Lipid Metabolism By Pparalpha                                                                                          1.0e+00
## Transcriptional Regulation By Runx2                                                                                                  1.0e+00
## Glycosaminoglycan Metabolism                                                                                                         1.0e+00
## Cardiac Conduction                                                                                                                   1.0e+00
## Oxidative Stress Induced Senescence                                                                                                  1.0e+00
## Resolution Of Sister Chromatid Cohesion                                                                                              1.0e+00
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                              1.0e+00
## Fceri Mediated Nf Kb Activation                                                                                                      1.0e+00
## Degradation Of The Extracellular Matrix                                                                                              1.0e+00
## Hcmv Early Events                                                                                                                    1.0e+00
## Rho Gtpases Activate Formins                                                                                                         1.0e+00
## Clathrin Mediated Endocytosis                                                                                                        1.0e+00
## Diseases Of Glycosylation                                                                                                            1.0e+00
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                         1.0e+00
## Mitotic Prophase                                                                                                                     1.0e+00
## Sars Cov Infections                                                                                                                  1.0e+00
## Autophagy                                                                                                                            1.0e+00
## Estrogen Dependent Gene Expression                                                                                                   1.0e+00
## Hiv Life Cycle                                                                                                                       1.0e+00
## Rhoa Gtpase Cycle                                                                                                                    1.0e+00
## Regulation Of Tp53 Activity                                                                                                          1.0e+00
## Hcmv Infection                                                                                                                       1.0e+00
## Neuronal System                                                                                                                      1.0e+00
## S Phase                                                                                                                              1.0e+00
## Dna Double Strand Break Repair                                                                                                       1.0e+00
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                1.0e+00
## G2 M Checkpoints                                                                                                                     1.0e+00
## Signaling By The B Cell Receptor Bcr                                                                                                 1.0e+00
## Disorders Of Transmembrane Transporters                                                                                              1.0e+00
## Fatty Acid Metabolism                                                                                                                1.0e+00
## Rho Gtpase Cycle                                                                                                                     1.0e+00
## Muscle Contraction                                                                                                                   1.0e+00
## Mitotic G2 G2 M Phases                                                                                                               1.0e+00
## Cilium Assembly                                                                                                                      1.0e+00
## Metabolism Of Lipids                                                                                                                 1.0e+00
## Mitotic Prometaphase                                                                                                                 1.0e+00
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                      1.0e+00
## Signaling By Robo Receptors                                                                                                          1.0e+00
## Hiv Infection                                                                                                                        1.0e+00
## Mitotic Metaphase And Anaphase                                                                                                       1.0e+00
## Diseases Of Metabolism                                                                                                               1.0e+00
## Cell Cycle Mitotic                                                                                                                   1.0e+00
## Transmission Across Chemical Synapses                                                                                                1.0e+00
## Chromatin Modifying Enzymes                                                                                                          1.0e+00
## Cell Cycle Checkpoints                                                                                                               1.0e+00
## Rho Gtpase Effectors                                                                                                                 1.0e+00
## Dna Repair                                                                                                                           1.0e+00
## Cell Cycle                                                                                                                           1.0e+00
## Transcriptional Regulation By Tp53                                                                                                   1.0e+00
## Metabolism Of Amino Acids And Derivatives                                                                                            1.0e+00
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                    1.0e+00
## M Phase                                                                                                                              1.0e+00
## Sensory Perception                                                                                                                   1.0e+00
## Transport Of Small Molecules                                                                                                         1.0e+00
## 2 Ltr Circle Formation                                                                                                               1.0e+00
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                      1.0e+00
## Abacavir Metabolism                                                                                                                  1.0e+00
## Abacavir Transmembrane Transport                                                                                                     1.0e+00
## Abacavir Transport And Metabolism                                                                                                    1.0e+00
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                     1.0e+00
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                          1.0e+00
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                        1.0e+00
## Acetylcholine Binding And Downstream Events                                                                                          1.0e+00
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                               1.0e+00
## Acetylcholine Neurotransmitter Release Cycle                                                                                         1.0e+00
## Acetylcholine Regulates Insulin Secretion                                                                                            1.0e+00
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                  1.0e+00
## Activated Notch1 Transmits Signal To The Nucleus                                                                                     1.0e+00
## Activated Ntrk2 Signals Through Cdk5                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                        1.0e+00
## Activated Ntrk2 Signals Through Fyn                                                                                                  1.0e+00
## Activated Ntrk2 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk2 Signals Through Ras                                                                                                  1.0e+00
## Activated Ntrk3 Signals Through Pi3k                                                                                                 1.0e+00
## Activated Ntrk3 Signals Through Ras                                                                                                  1.0e+00
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                        1.0e+00
## Activation Of Ampk Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                 1.0e+00
## Activation Of Atr In Response To Replication Stress                                                                                  1.0e+00
## Activation Of Bad And Translocation To Mitochondria                                                                                  1.0e+00
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                          1.0e+00
## Activation Of Gene Expression By Srebf Srebp                                                                                         1.0e+00
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                               1.0e+00
## Activation Of Noxa And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                 1.0e+00
## Activation Of Puma And Translocation To Mitochondria                                                                                 1.0e+00
## Activation Of Rac1                                                                                                                   1.0e+00
## Activation Of Rac1 Downstream Of Nmdars                                                                                              1.0e+00
## Activation Of Ras In B Cells                                                                                                         1.0e+00
## Activation Of Smo                                                                                                                    1.0e+00
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                1.0e+00
## Activation Of The Phototransduction Cascade                                                                                          1.0e+00
## Activation Of The Pre Replicative Complex                                                                                            1.0e+00
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                         1.0e+00
## Activation Of Trka Receptors                                                                                                         1.0e+00
## Acyl Chain Remodeling Of Cl                                                                                                          1.0e+00
## Acyl Chain Remodeling Of Dag And Tag                                                                                                 1.0e+00
## Acyl Chain Remodelling Of Pc                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pe                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pg                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Pi                                                                                                         1.0e+00
## Acyl Chain Remodelling Of Ps                                                                                                         1.0e+00
## Adenylate Cyclase Activating Pathway                                                                                                 1.0e+00
## Adenylate Cyclase Inhibitory Pathway                                                                                                 1.0e+00
## Adherens Junctions Interactions                                                                                                      1.0e+00
## Adp Signalling Through P2y Purinoceptor 1                                                                                            1.0e+00
## Adp Signalling Through P2y Purinoceptor 12                                                                                           1.0e+00
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                  1.0e+00
## Adrenoceptors                                                                                                                        1.0e+00
## Aflatoxin Activation And Detoxification                                                                                              1.0e+00
## Aggrephagy                                                                                                                           1.0e+00
## Akt Phosphorylates Targets In The Cytosol                                                                                            1.0e+00
## Alpha Defensins                                                                                                                      1.0e+00
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                           1.0e+00
## Alpha Oxidation Of Phytanate                                                                                                         1.0e+00
## Alpha Protein Kinase 1 Signaling Pathway                                                                                             1.0e+00
## Amine Ligand Binding Receptors                                                                                                       1.0e+00
## Amino Acid Conjugation                                                                                                               1.0e+00
## Amino Acid Transport Across The Plasma Membrane                                                                                      1.0e+00
## Amino Acids Regulate Mtorc1                                                                                                          1.0e+00
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                             1.0e+00
## Anchoring Fibril Formation                                                                                                           1.0e+00
## Androgen Biosynthesis                                                                                                                1.0e+00
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                     1.0e+00
## Antigen Processing Ubiquitination Proteasome Degradation                                                                             1.0e+00
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                          1.0e+00
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                             1.0e+00
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                              1.0e+00
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                               1.0e+00
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                      1.0e+00
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                         1.0e+00
## Apoptotic Cleavage Of Cellular Proteins                                                                                              1.0e+00
## Apoptotic Factor Mediated Response                                                                                                   1.0e+00
## Aquaporin Mediated Transport                                                                                                         1.0e+00
## Arachidonate Production From Dag                                                                                                     1.0e+00
## Arms Mediated Activation                                                                                                             1.0e+00
## Aryl Hydrocarbon Receptor Signalling                                                                                                 1.0e+00
## Aspartate And Asparagine Metabolism                                                                                                  1.0e+00
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                             1.0e+00
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                     1.0e+00
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                         1.0e+00
## Assembly Of The Hiv Virion                                                                                                           1.0e+00
## Assembly Of The Orc Complex At The Origin Of Replication                                                                             1.0e+00
## Assembly Of The Pre Replicative Complex                                                                                              1.0e+00
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                            1.0e+00
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                 1.0e+00
## Attachment And Entry                                                                                                                 1.0e+00
## Attachment Of Gpi Anchor To Upar                                                                                                     1.0e+00
## Attenuation Phase                                                                                                                    1.0e+00
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                            1.0e+00
## B Wich Complex Positively Regulates Rrna Expression                                                                                  1.0e+00
## Base Excision Repair                                                                                                                 1.0e+00
## Base Excision Repair Ap Site Formation                                                                                               1.0e+00
## Bbsome Mediated Cargo Targeting To Cilium                                                                                            1.0e+00
## Beta Catenin Phosphorylation Cascade                                                                                                 1.0e+00
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                         1.0e+00
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                   1.0e+00
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                    1.0e+00
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                       1.0e+00
## Beta Oxidation Of Pristanoyl Coa                                                                                                     1.0e+00
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                        1.0e+00
## Bicarbonate Transporters                                                                                                             1.0e+00
## Bile Acid And Bile Salt Metabolism                                                                                                   1.0e+00
## Biological Oxidations                                                                                                                1.0e+00
## Biosynthesis Of Maresin Like Spms                                                                                                    1.0e+00
## Biosynthesis Of Maresins                                                                                                             1.0e+00
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                   1.0e+00
## Biotin Transport And Metabolism                                                                                                      1.0e+00
## Blood Group Systems Biosynthesis                                                                                                     1.0e+00
## Budding And Maturation Of Hiv Virion                                                                                                 1.0e+00
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                          1.0e+00
## Butyrophilin Btn Family Interactions                                                                                                 1.0e+00
## Ca2 Activated K Channels                                                                                                             1.0e+00
## Calcineurin Activates Nfat                                                                                                           1.0e+00
## Calcitonin Like Ligand Receptors                                                                                                     1.0e+00
## Calnexin Calreticulin Cycle                                                                                                          1.0e+00
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                          1.0e+00
## Cargo Trafficking To The Periciliary Membrane                                                                                        1.0e+00
## Carnitine Metabolism                                                                                                                 1.0e+00
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                 1.0e+00
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                   1.0e+00
## Cation Coupled Chloride Cotransporters                                                                                               1.0e+00
## Cd209 Dc Sign Signaling                                                                                                              1.0e+00
## Cd22 Mediated Bcr Regulation                                                                                                         1.0e+00
## Cdc6 Association With The Orc Origin Complex                                                                                         1.0e+00
## Cell Cell Communication                                                                                                              1.0e+00
## Cell Cell Junction Organization                                                                                                      1.0e+00
## Cell Extracellular Matrix Interactions                                                                                               1.0e+00
## Cell Junction Organization                                                                                                           1.0e+00
## Cellular Hexose Transport                                                                                                            1.0e+00
## Cellular Response To Hypoxia                                                                                                         1.0e+00
## Cellular Response To Starvation                                                                                                      1.0e+00
## Cgmp Effects                                                                                                                         1.0e+00
## Chaperone Mediated Autophagy                                                                                                         1.0e+00
## Chl1 Interactions                                                                                                                    1.0e+00
## Cholesterol Biosynthesis                                                                                                             1.0e+00
## Choline Catabolism                                                                                                                   1.0e+00
## Chondroitin Sulfate Biosynthesis                                                                                                     1.0e+00
## Chrebp Activates Metabolic Gene Expression                                                                                           1.0e+00
## Chromosome Maintenance                                                                                                               1.0e+00
## Chylomicron Clearance                                                                                                                1.0e+00
## Citric Acid Cycle Tca Cycle                                                                                                          1.0e+00
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                 1.0e+00
## Class I Peroxisomal Membrane Protein Import                                                                                          1.0e+00
## Clec7a Dectin 1 Induces Nfat Activation                                                                                              1.0e+00
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                   1.0e+00
## Coenzyme A Biosynthesis                                                                                                              1.0e+00
## Cohesin Loading Onto Chromatin                                                                                                       1.0e+00
## Collagen Biosynthesis And Modifying Enzymes                                                                                          1.0e+00
## Collagen Chain Trimerization                                                                                                         1.0e+00
## Collagen Formation                                                                                                                   1.0e+00
## Common Pathway Of Fibrin Clot Formation                                                                                              1.0e+00
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                           1.0e+00
## Complex I Biogenesis                                                                                                                 1.0e+00
## Conjugation Of Benzoate With Glycine                                                                                                 1.0e+00
## Constitutive Signaling By Egfrviii                                                                                                   1.0e+00
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                     1.0e+00
## Constitutive Signaling By Overexpressed Erbb2                                                                                        1.0e+00
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                           1.0e+00
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                     1.0e+00
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                   1.0e+00
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                        1.0e+00
## Copi Independent Golgi To Er Retrograde Traffic                                                                                      1.0e+00
## Creatine Metabolism                                                                                                                  1.0e+00
## Creb3 Factors Activate Genes                                                                                                         1.0e+00
## Cristae Formation                                                                                                                    1.0e+00
## Crmps In Sema3a Signaling                                                                                                            1.0e+00
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                      1.0e+00
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                           1.0e+00
## Crosslinking Of Collagen Fibrils                                                                                                     1.0e+00
## Cs Ds Degradation                                                                                                                    1.0e+00
## Cyclin D Associated Events In G1                                                                                                     1.0e+00
## Cyp2e1 Reactions                                                                                                                     1.0e+00
## Cytochrome C Mediated Apoptotic Response                                                                                             1.0e+00
## Cytochrome P450 Arranged By Substrate Type                                                                                           1.0e+00
## Cytosolic Iron Sulfur Cluster Assembly                                                                                               1.0e+00
## Cytosolic Sulfonation Of Small Molecules                                                                                             1.0e+00
## Cytosolic Trna Aminoacylation                                                                                                        1.0e+00
## Darpp 32 Events                                                                                                                      1.0e+00
## Deactivation Of The Beta Catenin Transactivating Complex                                                                             1.0e+00
## Deadenylation Dependent Mrna Decay                                                                                                   1.0e+00
## Deadenylation Of Mrna                                                                                                                1.0e+00
## Dectin 2 Family                                                                                                                      1.0e+00
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                          1.0e+00
## Defective B4galt7 Causes Eds Progeroid Type                                                                                          1.0e+00
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                        1.0e+00
## Defective Cftr Causes Cystic Fibrosis                                                                                                1.0e+00
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                 1.0e+00
## Defective Chst3 Causes Sedcjd                                                                                                        1.0e+00
## Defective Chst6 Causes Mcdc1                                                                                                         1.0e+00
## Defective Chsy1 Causes Tpbs                                                                                                          1.0e+00
## Defective Csf2rb Causes Smdp5                                                                                                        1.0e+00
## Defective Ext2 Causes Exostoses 2                                                                                                    1.0e+00
## Defective F9 Activation                                                                                                              1.0e+00
## Defective Factor Ix Causes Hemophilia B                                                                                              1.0e+00
## Defective Factor Viii Causes Hemophilia A                                                                                            1.0e+00
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                           1.0e+00
## Defective Lfng Causes Scdo3                                                                                                          1.0e+00
## Defective Ripk1 Mediated Regulated Necrosis                                                                                          1.0e+00
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                            1.0e+00
## Defects In Biotin Btn Metabolism                                                                                                     1.0e+00
## Defects In Cobalamin B12 Metabolism                                                                                                  1.0e+00
## Defects In Vitamin And Cofactor Metabolism                                                                                           1.0e+00
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                             1.0e+00
## Degradation Of Axin                                                                                                                  1.0e+00
## Degradation Of Cysteine And Homocysteine                                                                                             1.0e+00
## Degradation Of Dvl                                                                                                                   1.0e+00
## Degradation Of Gli1 By The Proteasome                                                                                                1.0e+00
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                     1.0e+00
## Detoxification Of Reactive Oxygen Species                                                                                            1.0e+00
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                        1.0e+00
## Digestion                                                                                                                            1.0e+00
## Digestion And Absorption                                                                                                             1.0e+00
## Digestion Of Dietary Carbohydrate                                                                                                    1.0e+00
## Digestion Of Dietary Lipid                                                                                                           1.0e+00
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                1.0e+00
## Diseases Associated With N Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With O Glycosylation Of Proteins                                                                                 1.0e+00
## Diseases Associated With Surfactant Metabolism                                                                                       1.0e+00
## Diseases Of Base Excision Repair                                                                                                     1.0e+00
## Diseases Of Carbohydrate Metabolism                                                                                                  1.0e+00
## Diseases Of Dna Repair                                                                                                               1.0e+00
## Diseases Of Mismatch Repair Mmr                                                                                                      1.0e+00
## Diseases Of Mitotic Cell Cycle                                                                                                       1.0e+00
## Disinhibition Of Snare Formation                                                                                                     1.0e+00
## Displacement Of Dna Glycosylase By Apex1                                                                                             1.0e+00
## Dna Damage Bypass                                                                                                                    1.0e+00
## Dna Damage Recognition In Gg Ner                                                                                                     1.0e+00
## Dna Damage Reversal                                                                                                                  1.0e+00
## Dna Damage Telomere Stress Induced Senescence                                                                                        1.0e+00
## Dna Replication                                                                                                                      1.0e+00
## Dna Replication Initiation                                                                                                           1.0e+00
## Dna Replication Pre Initiation                                                                                                       1.0e+00
## Dna Strand Elongation                                                                                                                1.0e+00
## Dopamine Neurotransmitter Release Cycle                                                                                              1.0e+00
## Dopamine Receptors                                                                                                                   1.0e+00
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                              1.0e+00
## Downregulation Of Erbb2 Signaling                                                                                                    1.0e+00
## Downregulation Of Erbb4 Signaling                                                                                                    1.0e+00
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                             1.0e+00
## Downregulation Of Tgf Beta Receptor Signaling                                                                                        1.0e+00
## Downstream Signaling Of Activated Fgfr1                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr2                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr3                                                                                              1.0e+00
## Downstream Signaling Of Activated Fgfr4                                                                                              1.0e+00
## Dual Incision In Gg Ner                                                                                                              1.0e+00
## Dual Incision In Tc Ner                                                                                                              1.0e+00
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                    1.0e+00
## Effects Of Pip2 Hydrolysis                                                                                                           1.0e+00
## Egfr Interacts With Phospholipase C Gamma                                                                                            1.0e+00
## Egfr Transactivation By Gastrin                                                                                                      1.0e+00
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                       1.0e+00
## Eicosanoid Ligand Binding Receptors                                                                                                  1.0e+00
## Eicosanoids                                                                                                                          1.0e+00
## Elastic Fibre Formation                                                                                                              1.0e+00
## Electric Transmission Across Gap Junctions                                                                                           1.0e+00
## Elevation Of Cytosolic Ca2 Levels                                                                                                    1.0e+00
## Endogenous Sterols                                                                                                                   1.0e+00
## Endosomal Sorting Complex Required For Transport Escrt                                                                               1.0e+00
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                     1.0e+00
## Eph Ephrin Mediated Repulsion Of Cells                                                                                               1.0e+00
## Epha Mediated Growth Cone Collapse                                                                                                   1.0e+00
## Ephrin Signaling                                                                                                                     1.0e+00
## Er Quality Control Compartment Erqc                                                                                                  1.0e+00
## Erbb2 Activates Ptk6 Signaling                                                                                                       1.0e+00
## Erbb2 Regulates Cell Motility                                                                                                        1.0e+00
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                          1.0e+00
## Erk Mapk Targets                                                                                                                     1.0e+00
## Erks Are Inactivated                                                                                                                 1.0e+00
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                               1.0e+00
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                               1.0e+00
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                              1.0e+00
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                  1.0e+00
## Erythropoietin Activates Ras                                                                                                         1.0e+00
## Erythropoietin Activates Stat5                                                                                                       1.0e+00
## Establishment Of Sister Chromatid Cohesion                                                                                           1.0e+00
## Estrogen Biosynthesis                                                                                                                1.0e+00
## Estrogen Stimulated Signaling Through Prkcz                                                                                          1.0e+00
## Ethanol Oxidation                                                                                                                    1.0e+00
## Eukaryotic Translation Elongation                                                                                                    1.0e+00
## Eukaryotic Translation Initiation                                                                                                    1.0e+00
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                      1.0e+00
## Extension Of Telomeres                                                                                                               1.0e+00
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Fanconi Anemia Pathway                                                                                                               1.0e+00
## Fatty Acids                                                                                                                          1.0e+00
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                          1.0e+00
## Fatty Acyl Coa Biosynthesis                                                                                                          1.0e+00
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                   1.0e+00
## Fceri Mediated Ca 2 Mobilization                                                                                                     1.0e+00
## Fcgr Activation                                                                                                                      1.0e+00
## Fertilization                                                                                                                        1.0e+00
## Fgfr1 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr1b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr1c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2 Alternative Splicing                                                                                                           1.0e+00
## Fgfr2 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr2 Mutant Receptor Activation                                                                                                     1.0e+00
## Fgfr2b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr2c Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfr3 Ligand Binding And Activation                                                                                                  1.0e+00
## Fgfr3b Ligand Binding And Activation                                                                                                 1.0e+00
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                 1.0e+00
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                       1.0e+00
## Flt3 Signaling                                                                                                                       1.0e+00
## Flt3 Signaling By Cbl Mutants                                                                                                        1.0e+00
## Flt3 Signaling In Disease                                                                                                            1.0e+00
## Flt3 Signaling Through Src Family Kinases                                                                                            1.0e+00
## Folding Of Actin By Cct Tric                                                                                                         1.0e+00
## Formation Of Apoptosome                                                                                                              1.0e+00
## Formation Of Atp By Chemiosmotic Coupling                                                                                            1.0e+00
## Formation Of Fibrin Clot Clotting Cascade                                                                                            1.0e+00
## Formation Of Incision Complex In Gg Ner                                                                                              1.0e+00
## Formation Of Rna Pol Ii Elongation Complex                                                                                           1.0e+00
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                         1.0e+00
## Formation Of Tc Ner Pre Incision Complex                                                                                             1.0e+00
## Formation Of The Cornified Envelope                                                                                                  1.0e+00
## Formation Of The Early Elongation Complex                                                                                            1.0e+00
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                               1.0e+00
## Formation Of Xylulose 5 Phosphate                                                                                                    1.0e+00
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                 1.0e+00
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                         1.0e+00
## Free Fatty Acid Receptors                                                                                                            1.0e+00
## Free Fatty Acids Regulate Insulin Secretion                                                                                          1.0e+00
## Frs Mediated Fgfr1 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr2 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr3 Signaling                                                                                                         1.0e+00
## Frs Mediated Fgfr4 Signaling                                                                                                         1.0e+00
## Fructose Catabolism                                                                                                                  1.0e+00
## Fructose Metabolism                                                                                                                  1.0e+00
## G Alpha 12 13 Signalling Events                                                                                                      1.0e+00
## G Alpha S Signalling Events                                                                                                          1.0e+00
## G Alpha Z Signalling Events                                                                                                          1.0e+00
## G Beta Gamma Signalling Through Pi3kgamma                                                                                            1.0e+00
## G Protein Activation                                                                                                                 1.0e+00
## G1 S Dna Damage Checkpoints                                                                                                          1.0e+00
## G2 Phase                                                                                                                             1.0e+00
## Gab1 Signalosome                                                                                                                     1.0e+00
## Gaba B Receptor Activation                                                                                                           1.0e+00
## Gaba Receptor Activation                                                                                                             1.0e+00
## Gaba Synthesis Release Reuptake And Degradation                                                                                      1.0e+00
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                  1.0e+00
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                1.0e+00
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                              1.0e+00
## Gap Junction Assembly                                                                                                                1.0e+00
## Gap Junction Degradation                                                                                                             1.0e+00
## Gap Junction Trafficking And Regulation                                                                                              1.0e+00
## Gdp Fucose Biosynthesis                                                                                                              1.0e+00
## Gene Silencing By Rna                                                                                                                1.0e+00
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                          1.0e+00
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                      1.0e+00
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                             1.0e+00
## Glucagon Signaling In Metabolic Regulation                                                                                           1.0e+00
## Glucagon Type Ligand Receptors                                                                                                       1.0e+00
## Glucocorticoid Biosynthesis                                                                                                          1.0e+00
## Gluconeogenesis                                                                                                                      1.0e+00
## Glucose Metabolism                                                                                                                   1.0e+00
## Glucuronidation                                                                                                                      1.0e+00
## Glutamate And Glutamine Metabolism                                                                                                   1.0e+00
## Glutamate Neurotransmitter Release Cycle                                                                                             1.0e+00
## Glutathione Conjugation                                                                                                              1.0e+00
## Glutathione Synthesis And Recycling                                                                                                  1.0e+00
## Glycerophospholipid Biosynthesis                                                                                                     1.0e+00
## Glycerophospholipid Catabolism                                                                                                       1.0e+00
## Glycogen Breakdown Glycogenolysis                                                                                                    1.0e+00
## Glycogen Metabolism                                                                                                                  1.0e+00
## Glycogen Storage Diseases                                                                                                            1.0e+00
## Glycogen Synthesis                                                                                                                   1.0e+00
## Glycolysis                                                                                                                           1.0e+00
## Glycosphingolipid Metabolism                                                                                                         1.0e+00
## Glyoxylate Metabolism And Glycine Degradation                                                                                        1.0e+00
## Golgi Associated Vesicle Biogenesis                                                                                                  1.0e+00
## Golgi To Er Retrograde Transport                                                                                                     1.0e+00
## Gp1b Ix V Activation Signalling                                                                                                      1.0e+00
## Grb2 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                            1.0e+00
## Grb7 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Hats Acetylate Histones                                                                                                              1.0e+00
## Hcmv Late Events                                                                                                                     1.0e+00
## Hdacs Deacetylate Histones                                                                                                           1.0e+00
## Hdms Demethylate Histones                                                                                                            1.0e+00
## Hdr Through Homologous Recombination Hrr                                                                                             1.0e+00
## Hdr Through Mmej Alt Nhej                                                                                                            1.0e+00
## Hdr Through Single Strand Annealing Ssa                                                                                              1.0e+00
## Hedgehog Ligand Biogenesis                                                                                                           1.0e+00
## Hedgehog Off State                                                                                                                   1.0e+00
## Hedgehog On State                                                                                                                    1.0e+00
## Heme Biosynthesis                                                                                                                    1.0e+00
## Heme Degradation                                                                                                                     1.0e+00
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                            1.0e+00
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                           1.0e+00
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                              1.0e+00
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                               1.0e+00
## Histidine Catabolism                                                                                                                 1.0e+00
## Hiv Elongation Arrest And Recovery                                                                                                   1.0e+00
## Hiv Transcription Elongation                                                                                                         1.0e+00
## Hiv Transcription Initiation                                                                                                         1.0e+00
## Homologous Dna Pairing And Strand Exchange                                                                                           1.0e+00
## Homology Directed Repair                                                                                                             1.0e+00
## Hormone Ligand Binding Receptors                                                                                                     1.0e+00
## Host Interactions Of Hiv Factors                                                                                                     1.0e+00
## Hs Gag Biosynthesis                                                                                                                  1.0e+00
## Hs Gag Degradation                                                                                                                   1.0e+00
## Hsf1 Activation                                                                                                                      1.0e+00
## Hsf1 Dependent Transactivation                                                                                                       1.0e+00
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                              1.0e+00
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                 1.0e+00
## Hyaluronan Biosynthesis And Export                                                                                                   1.0e+00
## Hyaluronan Metabolism                                                                                                                1.0e+00
## Hyaluronan Uptake And Degradation                                                                                                    1.0e+00
## Hydrolysis Of Lpc                                                                                                                    1.0e+00
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                      1.0e+00
## Infection With Mycobacterium Tuberculosis                                                                                            1.0e+00
## Influenza Infection                                                                                                                  1.0e+00
## Inhibition Of Dna Recombination At Telomere                                                                                          1.0e+00
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                      1.0e+00
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components          1.0e+00
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                        1.0e+00
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                         1.0e+00
## Inositol Phosphate Metabolism                                                                                                        1.0e+00
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                          1.0e+00
## Insulin Processing                                                                                                                   1.0e+00
## Insulin Receptor Recycling                                                                                                           1.0e+00
## Integration Of Energy Metabolism                                                                                                     1.0e+00
## Integration Of Provirus                                                                                                              1.0e+00
## Integrin Cell Surface Interactions                                                                                                   1.0e+00
## Integrin Signaling                                                                                                                   1.0e+00
## Interaction Between L1 And Ankyrins                                                                                                  1.0e+00
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                1.0e+00
## Interactions Of Rev With Host Cellular Proteins                                                                                      1.0e+00
## Interactions Of Vpr With Host Cellular Proteins                                                                                      1.0e+00
## Interconversion Of Nucleotide Di And Triphosphates                                                                                   1.0e+00
## Interleukin 36 Pathway                                                                                                               1.0e+00
## Intestinal Absorption                                                                                                                1.0e+00
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                       1.0e+00
## Intra Golgi Traffic                                                                                                                  1.0e+00
## Intraflagellar Transport                                                                                                             1.0e+00
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                           1.0e+00
## Inwardly Rectifying K Channels                                                                                                       1.0e+00
## Ion Channel Transport                                                                                                                1.0e+00
## Ion Homeostasis                                                                                                                      1.0e+00
## Ion Transport By P Type Atpases                                                                                                      1.0e+00
## Ionotropic Activity Of Kainate Receptors                                                                                             1.0e+00
## Irak2 Mediated Activation Of Tak1 Complex                                                                                            1.0e+00
## Ire1alpha Activates Chaperones                                                                                                       1.0e+00
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                               1.0e+00
## Irf3 Mediated Induction Of Type I Ifn                                                                                                1.0e+00
## Iron Uptake And Transport                                                                                                            1.0e+00
## Irs Activation                                                                                                                       1.0e+00
## Josephin Domain Dubs                                                                                                                 1.0e+00
## Keratan Sulfate Biosynthesis                                                                                                         1.0e+00
## Keratan Sulfate Degradation                                                                                                          1.0e+00
## Keratan Sulfate Keratin Metabolism                                                                                                   1.0e+00
## Keratinization                                                                                                                       1.0e+00
## Ketone Body Metabolism                                                                                                               1.0e+00
## Kinesins                                                                                                                             1.0e+00
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                               1.0e+00
## L1cam Interactions                                                                                                                   1.0e+00
## Lagging Strand Synthesis                                                                                                             1.0e+00
## Laminin Interactions                                                                                                                 1.0e+00
## Late Endosomal Microautophagy                                                                                                        1.0e+00
## Ldl Clearance                                                                                                                        1.0e+00
## Lectin Pathway Of Complement Activation                                                                                              1.0e+00
## Leukotriene Receptors                                                                                                                1.0e+00
## Lgi Adam Interactions                                                                                                                1.0e+00
## Ligand Receptor Interactions                                                                                                         1.0e+00
## Linoleic Acid La Metabolism                                                                                                          1.0e+00
## Lipid Particle Organization                                                                                                          1.0e+00
## Lipophagy                                                                                                                            1.0e+00
## Listeria Monocytogenes Entry Into Host Cells                                                                                         1.0e+00
## Long Term Potentiation                                                                                                               1.0e+00
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                           1.0e+00
## Loss Of Function Of Smad2 3 In Cancer                                                                                                1.0e+00
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                               1.0e+00
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                               1.0e+00
## Ltc4 Cysltr Mediated Il4 Production                                                                                                  1.0e+00
## Lysine Catabolism                                                                                                                    1.0e+00
## Lysosome Vesicle Biogenesis                                                                                                          1.0e+00
## Lysosphingolipid And Lpa Receptors                                                                                                   1.0e+00
## Map2k And Mapk Activation                                                                                                            1.0e+00
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                             1.0e+00
## Mapk1 Erk2 Activation                                                                                                                1.0e+00
## Maturation Of Nucleoprotein                                                                                                          1.0e+00
## Maturation Of Protein 3a                                                                                                             1.0e+00
## Maturation Of Sars Cov 1 Spike Protein                                                                                               1.0e+00
## Maturation Of Sars Cov 2 Spike Protein                                                                                               1.0e+00
## Meiosis                                                                                                                              1.0e+00
## Meiotic Recombination                                                                                                                1.0e+00
## Meiotic Synapsis                                                                                                                     1.0e+00
## Melanin Biosynthesis                                                                                                                 1.0e+00
## Met Activates Pi3k Akt Signaling                                                                                                     1.0e+00
## Met Activates Ptk2 Signaling                                                                                                         1.0e+00
## Met Activates Ptpn11                                                                                                                 1.0e+00
## Met Activates Rap1 And Rac1                                                                                                          1.0e+00
## Met Activates Ras Signaling                                                                                                          1.0e+00
## Met Interacts With Tns Proteins                                                                                                      1.0e+00
## Met Promotes Cell Motility                                                                                                           1.0e+00
## Met Receptor Activation                                                                                                              1.0e+00
## Met Receptor Recycling                                                                                                               1.0e+00
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                  1.0e+00
## Metabolism Of Amine Derived Hormones                                                                                                 1.0e+00
## Metabolism Of Angiotensinogen To Angiotensins                                                                                        1.0e+00
## Metabolism Of Cofactors                                                                                                              1.0e+00
## Metabolism Of Folate And Pterines                                                                                                    1.0e+00
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                     1.0e+00
## Metabolism Of Nucleotides                                                                                                            1.0e+00
## Metabolism Of Polyamines                                                                                                             1.0e+00
## Metabolism Of Porphyrins                                                                                                             1.0e+00
## Metabolism Of Rna                                                                                                                    1.0e+00
## Metabolism Of Steroid Hormones                                                                                                       1.0e+00
## Metabolism Of Steroids                                                                                                               1.0e+00
## Metal Ion Slc Transporters                                                                                                           1.0e+00
## Metal Sequestration By Antimicrobial Proteins                                                                                        1.0e+00
## Metallothioneins Bind Metals                                                                                                         1.0e+00
## Methionine Salvage Pathway                                                                                                           1.0e+00
## Methylation                                                                                                                          1.0e+00
## Microrna Mirna Biogenesis                                                                                                            1.0e+00
## Mineralocorticoid Biosynthesis                                                                                                       1.0e+00
## Miro Gtpase Cycle                                                                                                                    1.0e+00
## Miscellaneous Substrates                                                                                                             1.0e+00
## Miscellaneous Transport And Binding Events                                                                                           1.0e+00
## Mismatch Repair                                                                                                                      1.0e+00
## Mitochondrial Calcium Ion Transport                                                                                                  1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation                                                                                              1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                     1.0e+00
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                   1.0e+00
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                         1.0e+00
## Mitochondrial Protein Import                                                                                                         1.0e+00
## Mitochondrial Translation                                                                                                            1.0e+00
## Mitochondrial Trna Aminoacylation                                                                                                    1.0e+00
## Mitochondrial Uncoupling                                                                                                             1.0e+00
## Mitotic Spindle Checkpoint                                                                                                           1.0e+00
## Mitotic Telophase Cytokinesis                                                                                                        1.0e+00
## Modulation By Mtb Of Host Immune System                                                                                              1.0e+00
## Molecules Associated With Elastic Fibres                                                                                             1.0e+00
## Molybdenum Cofactor Biosynthesis                                                                                                     1.0e+00
## Mrna Capping                                                                                                                         1.0e+00
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                 1.0e+00
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                 1.0e+00
## Mrna Editing                                                                                                                         1.0e+00
## Mrna Editing C To U Conversion                                                                                                       1.0e+00
## Mrna Splicing                                                                                                                        1.0e+00
## Mrna Splicing Minor Pathway                                                                                                          1.0e+00
## Mtor Signalling                                                                                                                      1.0e+00
## Mtorc1 Mediated Signalling                                                                                                           1.0e+00
## Mucopolysaccharidoses                                                                                                                1.0e+00
## Multifunctional Anion Exchangers                                                                                                     1.0e+00
## Muscarinic Acetylcholine Receptors                                                                                                   1.0e+00
## Myoclonic Epilepsy Of Lafora                                                                                                         1.0e+00
## N Glycan Antennae Elongation                                                                                                         1.0e+00
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                               1.0e+00
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                    1.0e+00
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                          1.0e+00
## Na Cl Dependent Neurotransmitter Transporters                                                                                        1.0e+00
## Nade Modulates Death Signalling                                                                                                      1.0e+00
## Ncam1 Interactions                                                                                                                   1.0e+00
## Nectin Necl Trans Heterodimerization                                                                                                 1.0e+00
## Neddylation                                                                                                                          1.0e+00
## Nef And Signal Transduction                                                                                                          1.0e+00
## Nef Mediated Cd4 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Cd8 Down Regulation                                                                                                     1.0e+00
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                           1.0e+00
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                       1.0e+00
## Negative Feedback Regulation Of Mapk Pathway                                                                                         1.0e+00
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                           1.0e+00
## Negative Regulation Of Fgfr1 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr2 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr3 Signaling                                                                                               1.0e+00
## Negative Regulation Of Fgfr4 Signaling                                                                                               1.0e+00
## Negative Regulation Of Flt3                                                                                                          1.0e+00
## Negative Regulation Of Mapk Pathway                                                                                                  1.0e+00
## Negative Regulation Of Met Activity                                                                                                  1.0e+00
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                  1.0e+00
## Negative Regulation Of Notch4 Signaling                                                                                              1.0e+00
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                           1.0e+00
## Nephrin Family Interactions                                                                                                          1.0e+00
## Netrin Mediated Repulsion Signals                                                                                                    1.0e+00
## Neurexins And Neuroligins                                                                                                            1.0e+00
## Neurofascin Interactions                                                                                                             1.0e+00
## Neurotoxicity Of Clostridium Toxins                                                                                                  1.0e+00
## Neurotransmitter Clearance                                                                                                           1.0e+00
## Neurotransmitter Release Cycle                                                                                                       1.0e+00
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                             1.0e+00
## Ngf Independant Trka Activation                                                                                                      1.0e+00
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                            1.0e+00
## Non Integrin Membrane Ecm Interactions                                                                                               1.0e+00
## Noncanonical Activation Of Notch3                                                                                                    1.0e+00
## Nonhomologous End Joining Nhej                                                                                                       1.0e+00
## Nonsense Mediated Decay Nmd                                                                                                          1.0e+00
## Norepinephrine Neurotransmitter Release Cycle                                                                                        1.0e+00
## Notch Hlh Transcription Pathway                                                                                                      1.0e+00
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch3 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                          1.0e+00
## Notch4 Intracellular Domain Regulates Transcription                                                                                  1.0e+00
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                   1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                       1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                           1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                     1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                1.0e+00
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                     1.0e+00
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                      1.0e+00
## Nrcam Interactions                                                                                                                   1.0e+00
## Ns1 Mediated Effects On Host Pathways                                                                                                1.0e+00
## Ntrk2 Activates Rac1                                                                                                                 1.0e+00
## Nuclear Import Of Rev Protein                                                                                                        1.0e+00
## Nuclear Receptor Transcription Pathway                                                                                               1.0e+00
## Nuclear Signaling By Erbb4                                                                                                           1.0e+00
## Nucleobase Biosynthesis                                                                                                              1.0e+00
## Nucleobase Catabolism                                                                                                                1.0e+00
## Nucleotide Excision Repair                                                                                                           1.0e+00
## Nucleotide Like Purinergic Receptors                                                                                                 1.0e+00
## Nucleotide Salvage                                                                                                                   1.0e+00
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                    1.0e+00
## O Linked Glycosylation                                                                                                               1.0e+00
## O Linked Glycosylation Of Mucins                                                                                                     1.0e+00
## Oas Antiviral Response                                                                                                               1.0e+00
## Olfactory Signaling Pathway                                                                                                          1.0e+00
## Oncogene Induced Senescence                                                                                                          1.0e+00
## Oncogenic Mapk Signaling                                                                                                             1.0e+00
## Opsins                                                                                                                               1.0e+00
## Orc1 Removal From Chromatin                                                                                                          1.0e+00
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                              1.0e+00
## Organic Anion Transport                                                                                                              1.0e+00
## Organic Anion Transporters                                                                                                           1.0e+00
## Organic Cation Anion Zwitterion Transport                                                                                            1.0e+00
## Organic Cation Transport                                                                                                             1.0e+00
## Other Interleukin Signaling                                                                                                          1.0e+00
## P130cas Linkage To Mapk Signaling For Integrins                                                                                      1.0e+00
## P2y Receptors                                                                                                                        1.0e+00
## P38mapk Events                                                                                                                       1.0e+00
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                       1.0e+00
## P75ntr Regulates Axonogenesis                                                                                                        1.0e+00
## Passive Transport By Aquaporins                                                                                                      1.0e+00
## Pcna Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Pecam1 Interactions                                                                                                                  1.0e+00
## Pentose Phosphate Pathway                                                                                                            1.0e+00
## Peptide Hormone Biosynthesis                                                                                                         1.0e+00
## Peroxisomal Lipid Metabolism                                                                                                         1.0e+00
## Peroxisomal Protein Import                                                                                                           1.0e+00
## Pexophagy                                                                                                                            1.0e+00
## Phase 0 Rapid Depolarisation                                                                                                         1.0e+00
## Phase 1 Inactivation Of Fast Na Channels                                                                                             1.0e+00
## Phase 2 Plateau Phase                                                                                                                1.0e+00
## Phase 3 Rapid Repolarisation                                                                                                         1.0e+00
## Phase I Functionalization Of Compounds                                                                                               1.0e+00
## Phase Ii Conjugation Of Compounds                                                                                                    1.0e+00
## Phenylalanine And Tyrosine Metabolism                                                                                                1.0e+00
## Phenylalanine Metabolism                                                                                                             1.0e+00
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                        1.0e+00
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                           1.0e+00
## Phospholipase C Mediated Cascade Fgfr2                                                                                               1.0e+00
## Phospholipase C Mediated Cascade Fgfr4                                                                                               1.0e+00
## Phospholipid Metabolism                                                                                                              1.0e+00
## Physiological Factors                                                                                                                1.0e+00
## Pi 3k Cascade Fgfr1                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr2                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr3                                                                                                                  1.0e+00
## Pi 3k Cascade Fgfr4                                                                                                                  1.0e+00
## Pi Metabolism                                                                                                                        1.0e+00
## Pi3k Akt Activation                                                                                                                  1.0e+00
## Pi3k Events In Erbb2 Signaling                                                                                                       1.0e+00
## Pi3k Events In Erbb4 Signaling                                                                                                       1.0e+00
## Pi5p Regulates Tp53 Acetylation                                                                                                      1.0e+00
## Piwi Interacting Rna Pirna Biogenesis                                                                                                1.0e+00
## Pka Activation In Glucagon Signalling                                                                                                1.0e+00
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                1.0e+00
## Pkmts Methylate Histone Lysines                                                                                                      1.0e+00
## Platelet Adhesion To Exposed Collagen                                                                                                1.0e+00
## Platelet Aggregation Plug Formation                                                                                                  1.0e+00
## Platelet Calcium Homeostasis                                                                                                         1.0e+00
## Platelet Homeostasis                                                                                                                 1.0e+00
## Platelet Sensitization By Ldl                                                                                                        1.0e+00
## Polb Dependent Long Patch Base Excision Repair                                                                                       1.0e+00
## Polo Like Kinase Mediated Events                                                                                                     1.0e+00
## Polymerase Switching                                                                                                                 1.0e+00
## Polymerase Switching On The C Strand Of The Telomere                                                                                 1.0e+00
## Positive Epigenetic Regulation Of Rrna Expression                                                                                    1.0e+00
## Post Chaperonin Tubulin Folding Pathway                                                                                              1.0e+00
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                     1.0e+00
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                      1.0e+00
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                             1.0e+00
## Pre Notch Expression And Processing                                                                                                  1.0e+00
## Pre Notch Processing In Golgi                                                                                                        1.0e+00
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                    1.0e+00
## Pregnenolone Biosynthesis                                                                                                            1.0e+00
## Presynaptic Depolarization And Calcium Channel Opening                                                                               1.0e+00
## Presynaptic Function Of Kainate Receptors                                                                                            1.0e+00
## Prevention Of Phagosomal Lysosomal Fusion                                                                                            1.0e+00
## Processing And Activation Of Sumo                                                                                                    1.0e+00
## Processing Of Capped Intron Containing Pre Mrna                                                                                      1.0e+00
## Processing Of Capped Intronless Pre Mrna                                                                                             1.0e+00
## Processing Of Dna Double Strand Break Ends                                                                                           1.0e+00
## Processing Of Intronless Pre Mrnas                                                                                                   1.0e+00
## Processing Of Smdt1                                                                                                                  1.0e+00
## Processive Synthesis On The C Strand Of The Telomere                                                                                 1.0e+00
## Processive Synthesis On The Lagging Strand                                                                                           1.0e+00
## Prolactin Receptor Signaling                                                                                                         1.0e+00
## Prolonged Erk Activation Events                                                                                                      1.0e+00
## Propionyl Coa Catabolism                                                                                                             1.0e+00
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                1.0e+00
## Prostanoid Ligand Receptors                                                                                                          1.0e+00
## Protein Localization                                                                                                                 1.0e+00
## Protein Methylation                                                                                                                  1.0e+00
## Protein Protein Interactions At Synapses                                                                                             1.0e+00
## Protein Repair                                                                                                                       1.0e+00
## Protein Ubiquitination                                                                                                               1.0e+00
## Proton Coupled Monocarboxylate Transport                                                                                             1.0e+00
## Pten Regulation                                                                                                                      1.0e+00
## Ptk6 Expression                                                                                                                      1.0e+00
## Ptk6 Promotes Hif1a Stabilization                                                                                                    1.0e+00
## Ptk6 Regulates Cell Cycle                                                                                                            1.0e+00
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                   1.0e+00
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                1.0e+00
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                1.0e+00
## Purine Catabolism                                                                                                                    1.0e+00
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                     1.0e+00
## Purine Salvage                                                                                                                       1.0e+00
## Pyrimidine Catabolism                                                                                                                1.0e+00
## Pyrimidine Salvage                                                                                                                   1.0e+00
## Pyruvate Metabolism                                                                                                                  1.0e+00
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                        1.0e+00
## Ra Biosynthesis Pathway                                                                                                              1.0e+00
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                1.0e+00
## Rab Geranylgeranylation                                                                                                              1.0e+00
## Rab Regulation Of Trafficking                                                                                                        1.0e+00
## Raf Activation                                                                                                                       1.0e+00
## Rap1 Signalling                                                                                                                      1.0e+00
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                 1.0e+00
## Ras Processing                                                                                                                       1.0e+00
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                            1.0e+00
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                         1.0e+00
## Receptor Type Tyrosine Protein Phosphatases                                                                                          1.0e+00
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                               1.0e+00
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                     1.0e+00
## Recycling Of Bile Acids And Salts                                                                                                    1.0e+00
## Recycling Of Eif2 Gdp                                                                                                                1.0e+00
## Recycling Pathway Of L1                                                                                                              1.0e+00
## Reduction Of Cytosolic Ca Levels                                                                                                     1.0e+00
## Reelin Signalling Pathway                                                                                                            1.0e+00
## Regulated Proteolysis Of P75ntr                                                                                                      1.0e+00
## Regulation Of Bach1 Activity                                                                                                         1.0e+00
## Regulation Of Beta Cell Development                                                                                                  1.0e+00
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                1.0e+00
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                          1.0e+00
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                   1.0e+00
## Regulation Of Expression Of Slits And Robos                                                                                          1.0e+00
## Regulation Of Fzd By Ubiquitination                                                                                                  1.0e+00
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                            1.0e+00
## Regulation Of Gene Expression In Beta Cells                                                                                          1.0e+00
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                    1.0e+00
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                        1.0e+00
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                   1.0e+00
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                          1.0e+00
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                     1.0e+00
## Regulation Of Hmox1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Ifna Signaling                                                                                                         1.0e+00
## Regulation Of Ifng Signaling                                                                                                         1.0e+00
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                               1.0e+00
## Regulation Of Insulin Secretion                                                                                                      1.0e+00
## Regulation Of Kit Signaling                                                                                                          1.0e+00
## Regulation Of Localization Of Foxo Transcription Factors                                                                             1.0e+00
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                  1.0e+00
## Regulation Of Pten Gene Transcription                                                                                                1.0e+00
## Regulation Of Pten Localization                                                                                                      1.0e+00
## Regulation Of Pten Mrna Translation                                                                                                  1.0e+00
## Regulation Of Pten Stability And Activity                                                                                            1.0e+00
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                     1.0e+00
## Regulation Of Ras By Gaps                                                                                                            1.0e+00
## Regulation Of Runx1 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx2 Expression And Activity                                                                                          1.0e+00
## Regulation Of Runx3 Expression And Activity                                                                                          1.0e+00
## Regulation Of Signaling By Cbl                                                                                                       1.0e+00
## Regulation Of Signaling By Nodal                                                                                                     1.0e+00
## Regulation Of Tp53 Activity Through Acetylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Methylation                                                                                      1.0e+00
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                  1.0e+00
## Relaxin Receptors                                                                                                                    1.0e+00
## Release Of Apoptotic Factors From The Mitochondria                                                                                   1.0e+00
## Release Of Hh Np From The Secreting Cell                                                                                             1.0e+00
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                1.0e+00
## Reproduction                                                                                                                         1.0e+00
## Resolution Of Abasic Sites Ap Sites                                                                                                  1.0e+00
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                         1.0e+00
## Resolution Of D Loop Structures                                                                                                      1.0e+00
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                    1.0e+00
## Respiratory Electron Transport                                                                                                       1.0e+00
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                     1.0e+00
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                           1.0e+00
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                    1.0e+00
## Response Of Mtb To Phagocytosis                                                                                                      1.0e+00
## Response To Metal Ions                                                                                                               1.0e+00
## Ret Signaling                                                                                                                        1.0e+00
## Retinoid Cycle Disease Events                                                                                                        1.0e+00
## Retrograde Neurotrophin Signalling                                                                                                   1.0e+00
## Retrograde Transport At The Trans Golgi Network                                                                                      1.0e+00
## Reversible Hydration Of Carbon Dioxide                                                                                               1.0e+00
## Rho Gtpases Activate Cit                                                                                                             1.0e+00
## Rho Gtpases Activate Nadph Oxidases                                                                                                  1.0e+00
## Rho Gtpases Activate Pkns                                                                                                            1.0e+00
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                         1.0e+00
## Rho Gtpases Activate Rocks                                                                                                           1.0e+00
## Rhobtb Gtpase Cycle                                                                                                                  1.0e+00
## Rhobtb1 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb2 Gtpase Cycle                                                                                                                 1.0e+00
## Rhobtb3 Atpase Cycle                                                                                                                 1.0e+00
## Rhot1 Gtpase Cycle                                                                                                                   1.0e+00
## Rna Polymerase I Promoter Escape                                                                                                     1.0e+00
## Rna Polymerase I Transcription                                                                                                       1.0e+00
## Rna Polymerase I Transcription Initiation                                                                                            1.0e+00
## Rna Polymerase I Transcription Termination                                                                                           1.0e+00
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                            1.0e+00
## Rna Polymerase Ii Transcription Termination                                                                                          1.0e+00
## Rna Polymerase Iii Chain Elongation                                                                                                  1.0e+00
## Rna Polymerase Iii Transcription                                                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                     1.0e+00
## Rna Polymerase Iii Transcription Termination                                                                                         1.0e+00
## Robo Receptors Bind Akap5                                                                                                            1.0e+00
## Role Of Abl In Robo Slit Signaling                                                                                                   1.0e+00
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                        1.0e+00
## Role Of Phospholipids In Phagocytosis                                                                                                1.0e+00
## Role Of Second Messengers In Netrin 1 Signaling                                                                                      1.0e+00
## Rora Activates Gene Expression                                                                                                       1.0e+00
## Rrna Modification In The Mitochondrion                                                                                               1.0e+00
## Rrna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Rrna Processing                                                                                                                      1.0e+00
## Rrna Processing In The Mitochondrion                                                                                                 1.0e+00
## Rsk Activation                                                                                                                       1.0e+00
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                   1.0e+00
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                             1.0e+00
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                          1.0e+00
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                     1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                           1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                  1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                             1.0e+00
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                     1.0e+00
## Runx2 Regulates Bone Development                                                                                                     1.0e+00
## Runx2 Regulates Chondrocyte Maturation                                                                                               1.0e+00
## Runx2 Regulates Genes Involved In Cell Migration                                                                                     1.0e+00
## Runx2 Regulates Osteoblast Differentiation                                                                                           1.0e+00
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                            1.0e+00
## Runx3 Regulates Cdkn1a Transcription                                                                                                 1.0e+00
## Runx3 Regulates Immune Response And Cell Migration                                                                                   1.0e+00
## Runx3 Regulates Notch Signaling                                                                                                      1.0e+00
## Runx3 Regulates P14 Arf                                                                                                              1.0e+00
## Runx3 Regulates Yap1 Mediated Transcription                                                                                          1.0e+00
## Sars Cov 1 Genome Replication And Transcription                                                                                      1.0e+00
## Sars Cov 1 Infection                                                                                                                 1.0e+00
## Sars Cov 2 Infection                                                                                                                 1.0e+00
## Scavenging By Class F Receptors                                                                                                      1.0e+00
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                             1.0e+00
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                      1.0e+00
## Selenoamino Acid Metabolism                                                                                                          1.0e+00
## Sema3a Pak Dependent Axon Repulsion                                                                                                  1.0e+00
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                    1.0e+00
## Sema4d In Semaphorin Signaling                                                                                                       1.0e+00
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                               1.0e+00
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                          1.0e+00
## Sensing Of Dna Double Strand Breaks                                                                                                  1.0e+00
## Sensory Processing Of Sound                                                                                                          1.0e+00
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                       1.0e+00
## Separation Of Sister Chromatids                                                                                                      1.0e+00
## Serine Biosynthesis                                                                                                                  1.0e+00
## Serotonin And Melatonin Biosynthesis                                                                                                 1.0e+00
## Serotonin Neurotransmitter Release Cycle                                                                                             1.0e+00
## Serotonin Receptors                                                                                                                  1.0e+00
## Shc Mediated Cascade Fgfr1                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr3                                                                                                           1.0e+00
## Shc Mediated Cascade Fgfr4                                                                                                           1.0e+00
## Shc Related Events Triggered By Igf1r                                                                                                1.0e+00
## Shc1 Events In Egfr Signaling                                                                                                        1.0e+00
## Shc1 Events In Erbb2 Signaling                                                                                                       1.0e+00
## Shc1 Events In Erbb4 Signaling                                                                                                       1.0e+00
## Sialic Acid Metabolism                                                                                                               1.0e+00
## Signal Amplification                                                                                                                 1.0e+00
## Signal Attenuation                                                                                                                   1.0e+00
## Signal Regulatory Protein Family Interactions                                                                                        1.0e+00
## Signal Transduction By L1                                                                                                            1.0e+00
## Signaling By Activin                                                                                                                 1.0e+00
## Signaling By Bmp                                                                                                                     1.0e+00
## Signaling By Braf And Raf Fusions                                                                                                    1.0e+00
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                             1.0e+00
## Signaling By Egfr In Cancer                                                                                                          1.0e+00
## Signaling By Erbb2                                                                                                                   1.0e+00
## Signaling By Erbb2 Ecd Mutants                                                                                                       1.0e+00
## Signaling By Erbb2 In Cancer                                                                                                         1.0e+00
## Signaling By Erbb4                                                                                                                   1.0e+00
## Signaling By Erythropoietin                                                                                                          1.0e+00
## Signaling By Fgfr                                                                                                                    1.0e+00
## Signaling By Fgfr1                                                                                                                   1.0e+00
## Signaling By Fgfr2                                                                                                                   1.0e+00
## Signaling By Fgfr2 Iiia Tm                                                                                                           1.0e+00
## Signaling By Fgfr2 In Disease                                                                                                        1.0e+00
## Signaling By Fgfr3                                                                                                                   1.0e+00
## Signaling By Fgfr3 Fusions In Cancer                                                                                                 1.0e+00
## Signaling By Fgfr4                                                                                                                   1.0e+00
## Signaling By Fgfr4 In Disease                                                                                                        1.0e+00
## Signaling By Flt3 Fusion Proteins                                                                                                    1.0e+00
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                1.0e+00
## Signaling By Hedgehog                                                                                                                1.0e+00
## Signaling By Hippo                                                                                                                   1.0e+00
## Signaling By Lrp5 Mutants                                                                                                            1.0e+00
## Signaling By Mapk Mutants                                                                                                            1.0e+00
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                           1.0e+00
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                   1.0e+00
## Signaling By Mras Complex Mutants                                                                                                    1.0e+00
## Signaling By Mst1                                                                                                                    1.0e+00
## Signaling By Nodal                                                                                                                   1.0e+00
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                      1.0e+00
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                    1.0e+00
## Signaling By Notch3                                                                                                                  1.0e+00
## Signaling By Notch4                                                                                                                  1.0e+00
## Signaling By Ntrk2 Trkb                                                                                                              1.0e+00
## Signaling By Ntrk3 Trkc                                                                                                              1.0e+00
## Signaling By Retinoic Acid                                                                                                           1.0e+00
## Signaling By Rnf43 Mutants                                                                                                           1.0e+00
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                     1.0e+00
## Signaling By Wnt In Cancer                                                                                                           1.0e+00
## Signalling To Erks                                                                                                                   1.0e+00
## Signalling To P38 Via Rit And Rin                                                                                                    1.0e+00
## Signalling To Ras                                                                                                                    1.0e+00
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                 1.0e+00
## Slc Mediated Transmembrane Transport                                                                                                 1.0e+00
## Slc Transporter Disorders                                                                                                            1.0e+00
## Smac Xiap Regulated Apoptotic Response                                                                                               1.0e+00
## Small Interfering Rna Sirna Biogenesis                                                                                               1.0e+00
## Smooth Muscle Contraction                                                                                                            1.0e+00
## Snrnp Assembly                                                                                                                       1.0e+00
## Sodium Calcium Exchangers                                                                                                            1.0e+00
## Sodium Coupled Phosphate Cotransporters                                                                                              1.0e+00
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                          1.0e+00
## Sodium Proton Exchangers                                                                                                             1.0e+00
## Sos Mediated Signalling                                                                                                              1.0e+00
## Sperm Motility And Taxes                                                                                                             1.0e+00
## Sphingolipid De Novo Biosynthesis                                                                                                    1.0e+00
## Sphingolipid Metabolism                                                                                                              1.0e+00
## Spry Regulation Of Fgf Signaling                                                                                                     1.0e+00
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                          1.0e+00
## Stabilization Of P53                                                                                                                 1.0e+00
## Stat5 Activation                                                                                                                     1.0e+00
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                      1.0e+00
## Stimuli Sensing Channels                                                                                                             1.0e+00
## Sting Mediated Induction Of Host Immune Responses                                                                                    1.0e+00
## Striated Muscle Contraction                                                                                                          1.0e+00
## Sulfide Oxidation To Sulfate                                                                                                         1.0e+00
## Sulfur Amino Acid Metabolism                                                                                                         1.0e+00
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                   1.0e+00
## Sumo Is Proteolytically Processed                                                                                                    1.0e+00
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                         1.0e+00
## Sumoylation Of Chromatin Organization Proteins                                                                                       1.0e+00
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                               1.0e+00
## Sumoylation Of Dna Replication Proteins                                                                                              1.0e+00
## Sumoylation Of Intracellular Receptors                                                                                               1.0e+00
## Sumoylation Of Rna Binding Proteins                                                                                                  1.0e+00
## Sumoylation Of Sumoylation Proteins                                                                                                  1.0e+00
## Sumoylation Of Transcription Cofactors                                                                                               1.0e+00
## Sumoylation Of Transcription Factors                                                                                                 1.0e+00
## Sumoylation Of Ubiquitinylation Proteins                                                                                             1.0e+00
## Suppression Of Apoptosis                                                                                                             1.0e+00
## Suppression Of Phagosomal Maturation                                                                                                 1.0e+00
## Surfactant Metabolism                                                                                                                1.0e+00
## Switching Of Origins To A Post Replicative State                                                                                     1.0e+00
## Synaptic Adhesion Like Molecules                                                                                                     1.0e+00
## Syndecan Interactions                                                                                                                1.0e+00
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                    1.0e+00
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                1.0e+00
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                1.0e+00
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                             1.0e+00
## Synthesis Of Bile Acids And Bile Salts                                                                                               1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                     1.0e+00
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                 1.0e+00
## Synthesis Of Diphthamide Eef2                                                                                                        1.0e+00
## Synthesis Of Dolichyl Phosphate                                                                                                      1.0e+00
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                        1.0e+00
## Synthesis Of Gdp Mannose                                                                                                             1.0e+00
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                        1.0e+00
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                           1.0e+00
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                              1.0e+00
## Synthesis Of Ketone Bodies                                                                                                           1.0e+00
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                           1.0e+00
## Synthesis Of Lipoxins Lx                                                                                                             1.0e+00
## Synthesis Of Pa                                                                                                                      1.0e+00
## Synthesis Of Pc                                                                                                                      1.0e+00
## Synthesis Of Pe                                                                                                                      1.0e+00
## Synthesis Of Pg                                                                                                                      1.0e+00
## Synthesis Of Pi                                                                                                                      1.0e+00
## Synthesis Of Pips At The Early Endosome Membrane                                                                                     1.0e+00
## Synthesis Of Pips At The Er Membrane                                                                                                 1.0e+00
## Synthesis Of Pips At The Golgi Membrane                                                                                              1.0e+00
## Synthesis Of Pips At The Late Endosome Membrane                                                                                      1.0e+00
## Synthesis Of Pips At The Plasma Membrane                                                                                             1.0e+00
## Synthesis Of Pyrophosphates In The Cytosol                                                                                           1.0e+00
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                      1.0e+00
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                1.0e+00
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                         1.0e+00
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                           1.0e+00
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                       1.0e+00
## Tachykinin Receptors Bind Tachykinins                                                                                                1.0e+00
## Tbc Rabgaps                                                                                                                          1.0e+00
## Telomere C Strand Lagging Strand Synthesis                                                                                           1.0e+00
## Telomere C Strand Synthesis Initiation                                                                                               1.0e+00
## Telomere Extension By Telomerase                                                                                                     1.0e+00
## Telomere Maintenance                                                                                                                 1.0e+00
## Terminal Pathway Of Complement                                                                                                       1.0e+00
## Termination Of O Glycan Biosynthesis                                                                                                 1.0e+00
## Termination Of Translesion Dna Synthesis                                                                                             1.0e+00
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                   1.0e+00
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                      1.0e+00
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                         1.0e+00
## Tgf Beta Receptor Signaling Activates Smads                                                                                          1.0e+00
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                              1.0e+00
## The Activation Of Arylsulfatases                                                                                                     1.0e+00
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                 1.0e+00
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                         1.0e+00
## The Fatty Acid Cycling Model                                                                                                         1.0e+00
## The Phototransduction Cascade                                                                                                        1.0e+00
## The Retinoid Cycle In Cones Daylight Vision                                                                                          1.0e+00
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                        1.0e+00
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                      1.0e+00
## Thromboxane Signalling Through Tp Receptor                                                                                           1.0e+00
## Thyroxine Biosynthesis                                                                                                               1.0e+00
## Tie2 Signaling                                                                                                                       1.0e+00
## Tight Junction Interactions                                                                                                          1.0e+00
## Toxicity Of Botulinum Toxin Type D Botd                                                                                              1.0e+00
## Tp53 Regulates Metabolic Genes                                                                                                       1.0e+00
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                     1.0e+00
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                      1.0e+00
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                          1.0e+00
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                     1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                               1.0e+00
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                               1.0e+00
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain 1.0e+00
## Traf3 Dependent Irf Activation Pathway                                                                                               1.0e+00
## Traf6 Mediated Irf7 Activation                                                                                                       1.0e+00
## Trafficking Of Ampa Receptors                                                                                                        1.0e+00
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                       1.0e+00
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                  1.0e+00
## Trail Signaling                                                                                                                      1.0e+00
## Trans Golgi Network Vesicle Budding                                                                                                  1.0e+00
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                              1.0e+00
## Transcription Of The Hiv Genome                                                                                                      1.0e+00
## Transcriptional Regulation By E2f6                                                                                                   1.0e+00
## Transcriptional Regulation By Small Rnas                                                                                             1.0e+00
## Transcriptional Regulation By Ventx                                                                                                  1.0e+00
## Transcriptional Regulation Of Testis Differentiation                                                                                 1.0e+00
## Transferrin Endocytosis And Recycling                                                                                                1.0e+00
## Translation                                                                                                                          1.0e+00
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                       1.0e+00
## Translation Of Sars Cov 1 Structural Proteins                                                                                        1.0e+00
## Translation Of Sars Cov 2 Structural Proteins                                                                                        1.0e+00
## Translesion Synthesis By Polh                                                                                                        1.0e+00
## Translesion Synthesis By Polk                                                                                                        1.0e+00
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                   1.0e+00
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                 1.0e+00
## Transport And Synthesis Of Paps                                                                                                      1.0e+00
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                             1.0e+00
## Transport Of Connexons To The Plasma Membrane                                                                                        1.0e+00
## Transport Of Fatty Acids                                                                                                             1.0e+00
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                  1.0e+00
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                        1.0e+00
## Transport Of Mature Transcript To Cytoplasm                                                                                          1.0e+00
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                             1.0e+00
## Transport Of Nucleotide Sugars                                                                                                       1.0e+00
## Transport Of Organic Anions                                                                                                          1.0e+00
## Transport Of The Slbp Dependant Mature Mrna                                                                                          1.0e+00
## Transport Of Vitamins Nucleosides And Related Molecules                                                                              1.0e+00
## Triglyceride Biosynthesis                                                                                                            1.0e+00
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                1.0e+00
## Trna Aminoacylation                                                                                                                  1.0e+00
## Trna Modification In The Mitochondrion                                                                                               1.0e+00
## Trna Modification In The Nucleus And Cytosol                                                                                         1.0e+00
## Trna Processing                                                                                                                      1.0e+00
## Trna Processing In The Mitochondrion                                                                                                 1.0e+00
## Trna Processing In The Nucleus                                                                                                       1.0e+00
## Trp Channels                                                                                                                         1.0e+00
## Tryptophan Catabolism                                                                                                                1.0e+00
## Type I Hemidesmosome Assembly                                                                                                        1.0e+00
## Tyrosine Catabolism                                                                                                                  1.0e+00
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                  1.0e+00
## Ubiquinol Biosynthesis                                                                                                               1.0e+00
## Uch Proteinases                                                                                                                      1.0e+00
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                        1.0e+00
## Unwinding Of Dna                                                                                                                     1.0e+00
## Uptake And Actions Of Bacterial Toxins                                                                                               1.0e+00
## Uptake And Function Of Anthrax Toxins                                                                                                1.0e+00
## Uptake And Function Of Diphtheria Toxin                                                                                              1.0e+00
## Urea Cycle                                                                                                                           1.0e+00
## Vasopressin Like Receptors                                                                                                           1.0e+00
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                         1.0e+00
## Vegf Ligand Receptor Interactions                                                                                                    1.0e+00
## Vegfr2 Mediated Cell Proliferation                                                                                                   1.0e+00
## Viral Messenger Rna Synthesis                                                                                                        1.0e+00
## Vitamin B1 Thiamin Metabolism                                                                                                        1.0e+00
## Vitamin B2 Riboflavin Metabolism                                                                                                     1.0e+00
## Vitamin B5 Pantothenate Metabolism                                                                                                   1.0e+00
## Vitamin C Ascorbate Metabolism                                                                                                       1.0e+00
## Vitamin D Calciferol Metabolism                                                                                                      1.0e+00
## Vitamins                                                                                                                             1.0e+00
## Vldl Assembly                                                                                                                        1.0e+00
## Vldl Clearance                                                                                                                       1.0e+00
## Vldlr Internalisation And Degradation                                                                                                1.0e+00
## Voltage Gated Potassium Channels                                                                                                     1.0e+00
## Vxpx Cargo Targeting To Cilium                                                                                                       1.0e+00
## Wax And Plasmalogen Biosynthesis                                                                                                     1.0e+00
## Wnt Mediated Activation Of Dvl                                                                                                       1.0e+00
## Xenobiotics                                                                                                                          1.0e+00
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                        1.0e+00
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                             1.0e+00
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                      1.0e+00
## Zinc Transporters                                                                                                                    1.0e+00
##                                                                                                                                      signature
## Cytokine Signaling In Immune System                                                                                                         91
## Signaling By Interleukins                                                                                                                   91
## Innate Immune System                                                                                                                        91
## Interleukin 10 Signaling                                                                                                                    91
## Interleukin 4 And Interleukin 13 Signaling                                                                                                  91
## Toll Like Receptor Cascades                                                                                                                 91
## Peptide Ligand Binding Receptors                                                                                                            91
## Chemokine Receptors Bind Chemokines                                                                                                         91
## Neutrophil Degranulation                                                                                                                    91
## Interleukin 1 Family Signaling                                                                                                              91
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                           91
## Myd88 Independent Tlr4 Cascade                                                                                                              91
## Gpcr Ligand Binding                                                                                                                         91
## Class A 1 Rhodopsin Like Receptors                                                                                                          91
## Signaling By Gpcr                                                                                                                           91
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                        91
## Adaptive Immune System                                                                                                                      91
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                    91
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                           91
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                       91
## Interleukin 17 Signaling                                                                                                                    91
## G Alpha I Signalling Events                                                                                                                 91
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                91
## Death Receptor Signalling                                                                                                                   91
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                           91
## Programmed Cell Death                                                                                                                       91
## Regulated Necrosis                                                                                                                          91
## Interleukin 1 Signaling                                                                                                                     91
## Purinergic Signaling In Leishmaniasis Infection                                                                                             91
## Interleukin 18 Signaling                                                                                                                    91
## Leishmania Infection                                                                                                                        91
## Tnfs Bind Their Physiological Receptors                                                                                                     91
## Diseases Of Immune System                                                                                                                   91
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                    91
## Costimulation By The Cd28 Family                                                                                                            91
## Nod1 2 Signaling Pathway                                                                                                                    91
## Interleukin 2 Family Signaling                                                                                                              91
## P75ntr Signals Via Nf Kb                                                                                                                    91
## Heme Signaling                                                                                                                              91
## Regulation Of Tlr By Endogenous Ligand                                                                                                      91
## Complement Cascade                                                                                                                          91
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                 91
## Post Translational Protein Modification                                                                                                     91
## Pyroptosis                                                                                                                                  91
## Deubiquitination                                                                                                                            91
## Ovarian Tumor Domain Proteases                                                                                                              91
## Interleukin 1 Processing                                                                                                                    91
## P75 Ntr Receptor Mediated Signalling                                                                                                        91
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                        91
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                   91
## Apoptosis                                                                                                                                   91
## Dap12 Interactions                                                                                                                          91
## Infectious Disease                                                                                                                          91
## Cd28 Dependent Vav1 Pathway                                                                                                                 91
## Cell Surface Interactions At The Vascular Wall                                                                                              91
## Killing Mechanisms                                                                                                                          91
## Nf Kb Is Activated And Signals Survival                                                                                                     91
## P75ntr Recruits Signalling Complexes                                                                                                        91
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                     91
## Trafficking And Processing Of Endosomal Tlr                                                                                                 91
## Hemostasis                                                                                                                                  91
## Interleukin 15 Signaling                                                                                                                    91
## Interleukin 12 Family Signaling                                                                                                             91
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                            91
## Sumoylation Of Dna Methylation Proteins                                                                                                     91
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                       91
## Foxo Mediated Transcription                                                                                                                 91
## Irak4 Deficiency Tlr2 4                                                                                                                     91
## Scavenging By Class A Receptors                                                                                                             91
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                91
## Scavenging Of Heme From Plasma                                                                                                              91
## Circadian Clock                                                                                                                             91
## Ctla4 Inhibitory Signaling                                                                                                                  91
## Inflammasomes                                                                                                                               91
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                  91
## Ikk Complex Recruitment Mediated By Rip1                                                                                                    91
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                     91
## Traf6 Mediated Nf Kb Activation                                                                                                             91
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                               91
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                            91
## G0 And Early G1                                                                                                                             91
## Interleukin Receptor Shc Signaling                                                                                                          91
## Transcriptional Regulation Of Granulopoiesis                                                                                                91
## Pd 1 Signaling                                                                                                                              91
## Ripk1 Mediated Regulated Necrosis                                                                                                           91
## Interferon Gamma Signaling                                                                                                                  91
## Mapk6 Mapk4 Signaling                                                                                                                       91
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                    91
## Cellular Responses To External Stimuli                                                                                                      91
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                         91
## Nicotinate Metabolism                                                                                                                       91
## Perk Regulates Gene Expression                                                                                                              91
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                      91
## Clec7a Dectin 1 Signaling                                                                                                                   91
## Vesicle Mediated Transport                                                                                                                  91
## Cargo Concentration In The Er                                                                                                               91
## Cd28 Co Stimulation                                                                                                                         91
## Diseases Of Programmed Cell Death                                                                                                           91
## Regulation Of Tnfr1 Signaling                                                                                                               91
## Antigen Processing Cross Presentation                                                                                                       91
## Mapk Family Signaling Cascades                                                                                                              91
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                          91
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                     91
## Tcr Signaling                                                                                                                               91
## Tnf Signaling                                                                                                                               91
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                  91
## Interleukin 12 Signaling                                                                                                                    91
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                            91
## Response To Elevated Platelet Cytosolic Ca2                                                                                                 91
## Netrin 1 Signaling                                                                                                                          91
## C Type Lectin Receptors Clrs                                                                                                                91
## Rna Polymerase Ii Transcription                                                                                                             91
## Alternative Complement Activation                                                                                                           91
## Fasl Cd95l Signaling                                                                                                                        91
## G2 M Dna Replication Checkpoint                                                                                                             91
## Galactose Catabolism                                                                                                                        91
## Hdl Clearance                                                                                                                               91
## Intrinsic Pathway For Apoptosis                                                                                                             91
## Mecp2 Regulates Transcription Factors                                                                                                       91
## Nostrin Mediated Enos Trafficking                                                                                                           91
## Platelet Activation Signaling And Aggregation                                                                                               91
## Rhoj Gtpase Cycle                                                                                                                           91
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                             91
## Epigenetic Regulation Of Gene Expression                                                                                                    91
## Er To Golgi Anterograde Transport                                                                                                           91
## Rhoq Gtpase Cycle                                                                                                                           91
## Biosynthesis Of Epa Derived Spms                                                                                                            91
## Clec7a Inflammasome Pathway                                                                                                                 91
## Fibronectin Matrix Formation                                                                                                                91
## Phosphorylation Of Emi1                                                                                                                     91
## Scavenging By Class B Receptors                                                                                                             91
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                           91
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                        91
## Tnfr1 Mediated Ceramide Production                                                                                                          91
## Ca2 Pathway                                                                                                                                 91
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                91
## Transcriptional Regulation By Mecp2                                                                                                         91
## Dna Methylation                                                                                                                             91
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                   91
## Creb Phosphorylation                                                                                                                        91
## Ikba Variant Leads To Eda Id                                                                                                                91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                         91
## Copii Mediated Vesicle Transport                                                                                                            91
## Activation Of C3 And C5                                                                                                                     91
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                          91
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                91
## Hdl Assembly                                                                                                                                91
## Inactivation Of Cdc42 And Rac1                                                                                                              91
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                           91
## Runx3 Regulates Wnt Signaling                                                                                                               91
## Interferon Alpha Beta Signaling                                                                                                             91
## Prc2 Methylates Histones And Dna                                                                                                            91
## Signaling By Tgf Beta Receptor Complex                                                                                                      91
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                91
## Cd163 Mediating An Anti Inflammatory Response                                                                                               91
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                 91
## Extra Nuclear Estrogen Signaling                                                                                                            91
## Interleukin 23 Signaling                                                                                                                    91
## Interleukin 9 Signaling                                                                                                                     91
## Rhog Gtpase Cycle                                                                                                                           91
## Trif Mediated Programmed Cell Death                                                                                                         91
## Sumoylation                                                                                                                                 91
## Transport To The Golgi And Subsequent Modification                                                                                          91
## Metabolism Of Vitamins And Cofactors                                                                                                        91
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                      91
## Akt Phosphorylates Targets In The Nucleus                                                                                                   91
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                    91
## Chylomicron Assembly                                                                                                                        91
## Chylomicron Remodeling                                                                                                                      91
## Hdl Remodeling                                                                                                                              91
## Interleukin 21 Signaling                                                                                                                    91
## Mapk3 Erk1 Activation                                                                                                                       91
## Mastl Facilitates Mitotic Progression                                                                                                       91
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                  91
## Initial Triggering Of Complement                                                                                                            91
## Cellular Senescence                                                                                                                         91
## Condensation Of Prometaphase Chromosomes                                                                                                    91
## Dermatan Sulfate Biosynthesis                                                                                                               91
## Dscam Interactions                                                                                                                          91
## Endosomal Vacuolar Pathway                                                                                                                  91
## Enos Activation                                                                                                                             91
## Interleukin 27 Signaling                                                                                                                    91
## Interleukin 6 Signaling                                                                                                                     91
## Receptor Mediated Mitophagy                                                                                                                 91
## Regulation By C Flip                                                                                                                        91
## Rho Gtpases Activate Ktn1                                                                                                                   91
## Signaling By Leptin                                                                                                                         91
## Sumoylation Of Immune Response Proteins                                                                                                     91
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                            91
## Interferon Signaling                                                                                                                        91
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                           91
## Interleukin 2 Signaling                                                                                                                     91
## Interleukin 35 Signalling                                                                                                                   91
## Notch2 Intracellular Domain Regulates Transcription                                                                                         91
## Rac2 Gtpase Cycle                                                                                                                           91
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                   91
## Signaling By Receptor Tyrosine Kinases                                                                                                      91
## Tandem Pore Domain Potassium Channels                                                                                                       91
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                    91
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                        91
## Apoptosis Induced Dna Fragmentation                                                                                                         91
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                               91
## Dissolution Of Fibrin Clot                                                                                                                  91
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                              91
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                    91
## Tnfr1 Induced Proapoptotic Signaling                                                                                                        91
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                       91
## Unfolded Protein Response Upr                                                                                                               91
## Class B 2 Secretin Family Receptors                                                                                                         91
## Rac3 Gtpase Cycle                                                                                                                           91
## Dcc Mediated Attractive Signaling                                                                                                           91
## Early Phase Of Hiv Life Cycle                                                                                                               91
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                         91
## Irak1 Recruits Ikk Complex                                                                                                                  91
## Repression Of Wnt Target Genes                                                                                                              91
## Antimicrobial Peptides                                                                                                                      91
## Esr Mediated Signaling                                                                                                                      91
## Ub Specific Processing Proteases                                                                                                            91
## Depolymerisation Of The Nuclear Lamina                                                                                                      91
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                   91
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                    91
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                          91
## Wnt5a Dependent Internalization Of Fzd4                                                                                                     91
## Copi Mediated Anterograde Transport                                                                                                         91
## Foxo Mediated Transcription Of Cell Death Genes                                                                                             91
## Nrif Signals Cell Death From The Nucleus                                                                                                    91
## Signaling By Tgfb Family Members                                                                                                            91
## The Nlrp3 Inflammasome                                                                                                                      91
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                91
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                        91
## Pi3k Akt Signaling In Cancer                                                                                                                91
## Tcf Dependent Signaling In Response To Wnt                                                                                                  91
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                        91
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                             91
## Signaling By Vegf                                                                                                                           91
## Transcriptional Regulation By Runx1                                                                                                         91
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                            91
## Negative Epigenetic Regulation Of Rrna Expression                                                                                           91
## Abc Transporters In Lipid Homeostasis                                                                                                       91
## Amyloid Fiber Formation                                                                                                                     91
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                               91
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                            91
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                             91
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                 91
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                      91
## Senescence Associated Secretory Phenotype Sasp                                                                                              91
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                     91
## Initiation Of Nuclear Envelope Ne Reformation                                                                                               91
## Negative Regulation Of The Pi3k Akt Network                                                                                                 91
## Nicotinamide Salvaging                                                                                                                      91
## Other Semaphorin Interactions                                                                                                               91
## Phase 4 Resting Membrane Potential                                                                                                          91
## Plasma Lipoprotein Assembly                                                                                                                 91
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                        91
## G Beta Gamma Signalling Through Cdc42                                                                                                       91
## Phosphorylation Of The Apc C                                                                                                                91
## Pka Mediated Phosphorylation Of Creb                                                                                                        91
## Signaling By Kit In Disease                                                                                                                 91
## Signaling By Pdgfr In Disease                                                                                                               91
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                       91
## Branched Chain Amino Acid Catabolism                                                                                                        91
## Interleukin 37 Signaling                                                                                                                    91
## Rho Gtpases Activate Paks                                                                                                                   91
## Cd28 Dependent Pi3k Akt Signaling                                                                                                           91
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                 91
## E2f Mediated Regulation Of Dna Replication                                                                                                  91
## Pink1 Prkn Mediated Mitophagy                                                                                                               91
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                          91
## Cytoprotection By Hmox1                                                                                                                     91
## Incretin Synthesis Secretion And Inactivation                                                                                               91
## Mhc Class Ii Antigen Presentation                                                                                                           91
## Raf Independent Mapk1 3 Activation                                                                                                          91
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                91
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                      91
## Growth Hormone Receptor Signaling                                                                                                           91
## Interleukin 6 Family Signaling                                                                                                              91
## Triglyceride Catabolism                                                                                                                     91
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                    91
## Basigin Interactions                                                                                                                        91
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                     91
## Inactivation Of Csf3 G Csf Signaling                                                                                                        91
## Signaling By Ntrks                                                                                                                          91
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                               91
## Interleukin 20 Family Signaling                                                                                                             91
## Wnt Ligand Biogenesis And Trafficking                                                                                                       91
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                       91
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                            91
## Vegfr2 Mediated Vascular Permeability                                                                                                       91
## Activation Of Bh3 Only Proteins                                                                                                             91
## Beta Catenin Independent Wnt Signaling                                                                                                      91
## Dap12 Signaling                                                                                                                             91
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                              91
## Downstream Signal Transduction                                                                                                              91
## Egfr Downregulation                                                                                                                         91
## Extracellular Matrix Organization                                                                                                           91
## Fgfr1 Mutant Receptor Activation                                                                                                            91
## G1 S Specific Transcription                                                                                                                 91
## Mitophagy                                                                                                                                   91
## Mitotic G1 Phase And G1 S Transition                                                                                                        91
## Myogenesis                                                                                                                                  91
## Signaling By Csf3 G Csf                                                                                                                     91
## Signaling By Nuclear Receptors                                                                                                              91
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                        91
## Activation Of Matrix Metalloproteinases                                                                                                     91
## Asparagine N Linked Glycosylation                                                                                                           91
## G Protein Beta Gamma Signalling                                                                                                             91
## Intracellular Signaling By Second Messengers                                                                                                91
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                91
## Plasma Lipoprotein Clearance                                                                                                                91
## Plasma Lipoprotein Remodeling                                                                                                               91
## Regulation Of Mecp2 Expression And Activity                                                                                                 91
## Rho Gtpases Activate Iqgaps                                                                                                                 91
## Rhou Gtpase Cycle                                                                                                                           91
## Rhov Gtpase Cycle                                                                                                                           91
## Signaling By Notch2                                                                                                                         91
## Ca Dependent Events                                                                                                                         91
## Cdc42 Gtpase Cycle                                                                                                                          91
## Cellular Response To Chemical Stress                                                                                                        91
## Gpvi Mediated Activation Cascade                                                                                                            91
## Interleukin 7 Signaling                                                                                                                     91
## Metalloprotease Dubs                                                                                                                        91
## Nuclear Pore Complex Npc Disassembly                                                                                                        91
## Regulation Of Tp53 Expression And Degradation                                                                                               91
## Rho Gtpases Activate Wasps And Waves                                                                                                        91
## Rhoh Gtpase Cycle                                                                                                                           91
## Ros And Rns Production In Phagocytes                                                                                                        91
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                            91
## Generation Of Second Messenger Molecules                                                                                                    91
## Ngf Stimulated Transcription                                                                                                                91
## Signaling By Fgfr1 In Disease                                                                                                               91
## Signaling By Wnt                                                                                                                            91
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                91
## Triglyceride Metabolism                                                                                                                     91
## Beta Defensins                                                                                                                              91
## Dag And Ip3 Signaling                                                                                                                       91
## Ephb Mediated Forward Signaling                                                                                                             91
## Rhof Gtpase Cycle                                                                                                                           91
## Rnd1 Gtpase Cycle                                                                                                                           91
## Rnd2 Gtpase Cycle                                                                                                                           91
## Rnd3 Gtpase Cycle                                                                                                                           91
## Signaling By Scf Kit                                                                                                                        91
## Developmental Biology                                                                                                                       91
## Fc Epsilon Receptor Fceri Signaling                                                                                                         91
## Rac1 Gtpase Cycle                                                                                                                           91
## Irs Mediated Signalling                                                                                                                     91
## Metabolism Of Fat Soluble Vitamins                                                                                                          91
## Notch1 Intracellular Domain Regulates Transcription                                                                                         91
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                            91
## Apoptotic Execution Phase                                                                                                                   91
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                             91
## Class I Mhc Mediated Antigen Processing Presentation                                                                                        91
## Defensins                                                                                                                                   91
## Rhod Gtpase Cycle                                                                                                                           91
## Signaling By Egfr                                                                                                                           91
## G Protein Mediated Events                                                                                                                   91
## Insulin Receptor Signalling Cascade                                                                                                         91
## Nervous System Development                                                                                                                  91
## Nuclear Envelope Breakdown                                                                                                                  91
## Signaling By Ptk6                                                                                                                           91
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                             91
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                      91
## G Alpha Q Signalling Events                                                                                                                 91
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                           91
## Signaling By Pdgf                                                                                                                           91
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                          91
## Arachidonic Acid Metabolism                                                                                                                 91
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                              91
## Nrage Signals Death Through Jnk                                                                                                             91
## Nuclear Events Kinase And Transcription Factor Activation                                                                                   91
## Asymmetric Localization Of Pcp Proteins                                                                                                     91
## Collagen Degradation                                                                                                                        91
## Ncam Signaling For Neurite Out Growth                                                                                                       91
## Semaphorin Interactions                                                                                                                     91
## Signaling By Fgfr In Disease                                                                                                                91
## Membrane Trafficking                                                                                                                        91
## Sirt1 Negatively Regulates Rrna Expression                                                                                                  91
## Aurka Activation By Tpx2                                                                                                                    91
## Creation Of C4 And C2 Activators                                                                                                            91
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                        91
## Rhob Gtpase Cycle                                                                                                                           91
## Condensation Of Prophase Chromosomes                                                                                                        91
## Rhoc Gtpase Cycle                                                                                                                           91
## Signaling By Notch                                                                                                                          91
## Signaling By Notch1                                                                                                                         91
## Abc Transporter Disorders                                                                                                                   91
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                               91
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                           91
## Dna Double Strand Break Response                                                                                                            91
## Ecm Proteoglycans                                                                                                                           91
## Nuclear Envelope Ne Reassembly                                                                                                              91
## Rmts Methylate Histone Arginines                                                                                                            91
## Signaling By Insulin Receptor                                                                                                               91
## Signaling By Met                                                                                                                            91
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                   91
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                          91
## Potential Therapeutics For Sars                                                                                                             91
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                    91
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                             91
## Selective Autophagy                                                                                                                         91
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                            91
## Degradation Of Beta Catenin By The Destruction Complex                                                                                      91
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                               91
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                           91
## Fceri Mediated Mapk Activation                                                                                                              91
## Regulation Of Plk1 Activity At G2 M Transition                                                                                              91
## Eph Ephrin Signaling                                                                                                                        91
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                   91
## Opioid Signalling                                                                                                                           91
## Pcp Ce Pathway                                                                                                                              91
## Peptide Hormone Metabolism                                                                                                                  91
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                        91
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                          91
## Fcgr3a Mediated Il10 Synthesis                                                                                                              91
## G2 M Dna Damage Checkpoint                                                                                                                  91
## Metabolism Of Carbohydrates                                                                                                                 91
## Mitochondrial Biogenesis                                                                                                                    91
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                          91
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                  91
## Transcriptional Regulation By Runx3                                                                                                         91
## Organelle Biogenesis And Maintenance                                                                                                        91
## Protein Folding                                                                                                                             91
## Visual Phototransduction                                                                                                                    91
## Abc Family Proteins Mediated Transport                                                                                                      91
## Cellular Response To Heat Stress                                                                                                            91
## Potassium Channels                                                                                                                          91
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                         91
## Parasite Infection                                                                                                                          91
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                 91
## Transcriptional Regulation By Runx2                                                                                                         91
## Glycosaminoglycan Metabolism                                                                                                                91
## Cardiac Conduction                                                                                                                          91
## Oxidative Stress Induced Senescence                                                                                                         91
## Resolution Of Sister Chromatid Cohesion                                                                                                     91
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                     91
## Fceri Mediated Nf Kb Activation                                                                                                             91
## Degradation Of The Extracellular Matrix                                                                                                     91
## Hcmv Early Events                                                                                                                           91
## Rho Gtpases Activate Formins                                                                                                                91
## Clathrin Mediated Endocytosis                                                                                                               91
## Diseases Of Glycosylation                                                                                                                   91
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                91
## Mitotic Prophase                                                                                                                            91
## Sars Cov Infections                                                                                                                         91
## Autophagy                                                                                                                                   91
## Estrogen Dependent Gene Expression                                                                                                          91
## Hiv Life Cycle                                                                                                                              91
## Rhoa Gtpase Cycle                                                                                                                           91
## Regulation Of Tp53 Activity                                                                                                                 91
## Hcmv Infection                                                                                                                              91
## Neuronal System                                                                                                                             91
## S Phase                                                                                                                                     91
## Dna Double Strand Break Repair                                                                                                              91
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                       91
## G2 M Checkpoints                                                                                                                            91
## Signaling By The B Cell Receptor Bcr                                                                                                        91
## Disorders Of Transmembrane Transporters                                                                                                     91
## Fatty Acid Metabolism                                                                                                                       91
## Rho Gtpase Cycle                                                                                                                            91
## Muscle Contraction                                                                                                                          91
## Mitotic G2 G2 M Phases                                                                                                                      91
## Cilium Assembly                                                                                                                             91
## Metabolism Of Lipids                                                                                                                        91
## Mitotic Prometaphase                                                                                                                        91
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                             91
## Signaling By Robo Receptors                                                                                                                 91
## Hiv Infection                                                                                                                               91
## Mitotic Metaphase And Anaphase                                                                                                              91
## Diseases Of Metabolism                                                                                                                      91
## Cell Cycle Mitotic                                                                                                                          91
## Transmission Across Chemical Synapses                                                                                                       91
## Chromatin Modifying Enzymes                                                                                                                 91
## Cell Cycle Checkpoints                                                                                                                      91
## Rho Gtpase Effectors                                                                                                                        91
## Dna Repair                                                                                                                                  91
## Cell Cycle                                                                                                                                  91
## Transcriptional Regulation By Tp53                                                                                                          91
## Metabolism Of Amino Acids And Derivatives                                                                                                   91
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                           91
## M Phase                                                                                                                                     91
## Sensory Perception                                                                                                                          91
## Transport Of Small Molecules                                                                                                                91
## 2 Ltr Circle Formation                                                                                                                      91
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                             91
## Abacavir Metabolism                                                                                                                         91
## Abacavir Transmembrane Transport                                                                                                            91
## Abacavir Transport And Metabolism                                                                                                           91
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                            91
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                 91
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                               91
## Acetylcholine Binding And Downstream Events                                                                                                 91
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                      91
## Acetylcholine Neurotransmitter Release Cycle                                                                                                91
## Acetylcholine Regulates Insulin Secretion                                                                                                   91
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                         91
## Activated Notch1 Transmits Signal To The Nucleus                                                                                            91
## Activated Ntrk2 Signals Through Cdk5                                                                                                        91
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                               91
## Activated Ntrk2 Signals Through Fyn                                                                                                         91
## Activated Ntrk2 Signals Through Pi3k                                                                                                        91
## Activated Ntrk2 Signals Through Ras                                                                                                         91
## Activated Ntrk3 Signals Through Pi3k                                                                                                        91
## Activated Ntrk3 Signals Through Ras                                                                                                         91
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                               91
## Activation Of Ampk Downstream Of Nmdars                                                                                                     91
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                        91
## Activation Of Atr In Response To Replication Stress                                                                                         91
## Activation Of Bad And Translocation To Mitochondria                                                                                         91
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                 91
## Activation Of Gene Expression By Srebf Srebp                                                                                                91
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                      91
## Activation Of Noxa And Translocation To Mitochondria                                                                                        91
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                        91
## Activation Of Puma And Translocation To Mitochondria                                                                                        91
## Activation Of Rac1                                                                                                                          91
## Activation Of Rac1 Downstream Of Nmdars                                                                                                     91
## Activation Of Ras In B Cells                                                                                                                91
## Activation Of Smo                                                                                                                           91
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                       91
## Activation Of The Phototransduction Cascade                                                                                                 91
## Activation Of The Pre Replicative Complex                                                                                                   91
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                91
## Activation Of Trka Receptors                                                                                                                91
## Acyl Chain Remodeling Of Cl                                                                                                                 91
## Acyl Chain Remodeling Of Dag And Tag                                                                                                        91
## Acyl Chain Remodelling Of Pc                                                                                                                91
## Acyl Chain Remodelling Of Pe                                                                                                                91
## Acyl Chain Remodelling Of Pg                                                                                                                91
## Acyl Chain Remodelling Of Pi                                                                                                                91
## Acyl Chain Remodelling Of Ps                                                                                                                91
## Adenylate Cyclase Activating Pathway                                                                                                        91
## Adenylate Cyclase Inhibitory Pathway                                                                                                        91
## Adherens Junctions Interactions                                                                                                             91
## Adp Signalling Through P2y Purinoceptor 1                                                                                                   91
## Adp Signalling Through P2y Purinoceptor 12                                                                                                  91
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                         91
## Adrenoceptors                                                                                                                               91
## Aflatoxin Activation And Detoxification                                                                                                     91
## Aggrephagy                                                                                                                                  91
## Akt Phosphorylates Targets In The Cytosol                                                                                                   91
## Alpha Defensins                                                                                                                             91
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                  91
## Alpha Oxidation Of Phytanate                                                                                                                91
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                    91
## Amine Ligand Binding Receptors                                                                                                              91
## Amino Acid Conjugation                                                                                                                      91
## Amino Acid Transport Across The Plasma Membrane                                                                                             91
## Amino Acids Regulate Mtorc1                                                                                                                 91
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                    91
## Anchoring Fibril Formation                                                                                                                  91
## Androgen Biosynthesis                                                                                                                       91
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                            91
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                    91
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                 91
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                    91
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                     91
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                      91
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                             91
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                91
## Apoptotic Cleavage Of Cellular Proteins                                                                                                     91
## Apoptotic Factor Mediated Response                                                                                                          91
## Aquaporin Mediated Transport                                                                                                                91
## Arachidonate Production From Dag                                                                                                            91
## Arms Mediated Activation                                                                                                                    91
## Aryl Hydrocarbon Receptor Signalling                                                                                                        91
## Aspartate And Asparagine Metabolism                                                                                                         91
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                    91
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                            91
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                91
## Assembly Of The Hiv Virion                                                                                                                  91
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                    91
## Assembly Of The Pre Replicative Complex                                                                                                     91
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                   91
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                        91
## Attachment And Entry                                                                                                                        91
## Attachment Of Gpi Anchor To Upar                                                                                                            91
## Attenuation Phase                                                                                                                           91
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                   91
## B Wich Complex Positively Regulates Rrna Expression                                                                                         91
## Base Excision Repair                                                                                                                        91
## Base Excision Repair Ap Site Formation                                                                                                      91
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                   91
## Beta Catenin Phosphorylation Cascade                                                                                                        91
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                91
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                          91
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                              91
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                           91
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                              91
## Beta Oxidation Of Pristanoyl Coa                                                                                                            91
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                               91
## Bicarbonate Transporters                                                                                                                    91
## Bile Acid And Bile Salt Metabolism                                                                                                          91
## Biological Oxidations                                                                                                                       91
## Biosynthesis Of Maresin Like Spms                                                                                                           91
## Biosynthesis Of Maresins                                                                                                                    91
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                          91
## Biotin Transport And Metabolism                                                                                                             91
## Blood Group Systems Biosynthesis                                                                                                            91
## Budding And Maturation Of Hiv Virion                                                                                                        91
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                 91
## Butyrophilin Btn Family Interactions                                                                                                        91
## Ca2 Activated K Channels                                                                                                                    91
## Calcineurin Activates Nfat                                                                                                                  91
## Calcitonin Like Ligand Receptors                                                                                                            91
## Calnexin Calreticulin Cycle                                                                                                                 91
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                 91
## Cargo Trafficking To The Periciliary Membrane                                                                                               91
## Carnitine Metabolism                                                                                                                        91
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                        91
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                          91
## Cation Coupled Chloride Cotransporters                                                                                                      91
## Cd209 Dc Sign Signaling                                                                                                                     91
## Cd22 Mediated Bcr Regulation                                                                                                                91
## Cdc6 Association With The Orc Origin Complex                                                                                                91
## Cell Cell Communication                                                                                                                     91
## Cell Cell Junction Organization                                                                                                             91
## Cell Extracellular Matrix Interactions                                                                                                      91
## Cell Junction Organization                                                                                                                  91
## Cellular Hexose Transport                                                                                                                   91
## Cellular Response To Hypoxia                                                                                                                91
## Cellular Response To Starvation                                                                                                             91
## Cgmp Effects                                                                                                                                91
## Chaperone Mediated Autophagy                                                                                                                91
## Chl1 Interactions                                                                                                                           91
## Cholesterol Biosynthesis                                                                                                                    91
## Choline Catabolism                                                                                                                          91
## Chondroitin Sulfate Biosynthesis                                                                                                            91
## Chrebp Activates Metabolic Gene Expression                                                                                                  91
## Chromosome Maintenance                                                                                                                      91
## Chylomicron Clearance                                                                                                                       91
## Citric Acid Cycle Tca Cycle                                                                                                                 91
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                        91
## Class I Peroxisomal Membrane Protein Import                                                                                                 91
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                     91
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                          91
## Coenzyme A Biosynthesis                                                                                                                     91
## Cohesin Loading Onto Chromatin                                                                                                              91
## Collagen Biosynthesis And Modifying Enzymes                                                                                                 91
## Collagen Chain Trimerization                                                                                                                91
## Collagen Formation                                                                                                                          91
## Common Pathway Of Fibrin Clot Formation                                                                                                     91
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                  91
## Complex I Biogenesis                                                                                                                        91
## Conjugation Of Benzoate With Glycine                                                                                                        91
## Constitutive Signaling By Egfrviii                                                                                                          91
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                            91
## Constitutive Signaling By Overexpressed Erbb2                                                                                               91
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                  91
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                            91
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                          91
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                               91
## Copi Independent Golgi To Er Retrograde Traffic                                                                                             91
## Creatine Metabolism                                                                                                                         91
## Creb3 Factors Activate Genes                                                                                                                91
## Cristae Formation                                                                                                                           91
## Crmps In Sema3a Signaling                                                                                                                   91
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                             91
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                  91
## Crosslinking Of Collagen Fibrils                                                                                                            91
## Cs Ds Degradation                                                                                                                           91
## Cyclin D Associated Events In G1                                                                                                            91
## Cyp2e1 Reactions                                                                                                                            91
## Cytochrome C Mediated Apoptotic Response                                                                                                    91
## Cytochrome P450 Arranged By Substrate Type                                                                                                  91
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                      91
## Cytosolic Sulfonation Of Small Molecules                                                                                                    91
## Cytosolic Trna Aminoacylation                                                                                                               91
## Darpp 32 Events                                                                                                                             91
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                    91
## Deadenylation Dependent Mrna Decay                                                                                                          91
## Deadenylation Of Mrna                                                                                                                       91
## Dectin 2 Family                                                                                                                             91
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                 91
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                 91
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                               91
## Defective Cftr Causes Cystic Fibrosis                                                                                                       91
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                        91
## Defective Chst3 Causes Sedcjd                                                                                                               91
## Defective Chst6 Causes Mcdc1                                                                                                                91
## Defective Chsy1 Causes Tpbs                                                                                                                 91
## Defective Csf2rb Causes Smdp5                                                                                                               91
## Defective Ext2 Causes Exostoses 2                                                                                                           91
## Defective F9 Activation                                                                                                                     91
## Defective Factor Ix Causes Hemophilia B                                                                                                     91
## Defective Factor Viii Causes Hemophilia A                                                                                                   91
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                  91
## Defective Lfng Causes Scdo3                                                                                                                 91
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                 91
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                   91
## Defects In Biotin Btn Metabolism                                                                                                            91
## Defects In Cobalamin B12 Metabolism                                                                                                         91
## Defects In Vitamin And Cofactor Metabolism                                                                                                  91
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                    91
## Degradation Of Axin                                                                                                                         91
## Degradation Of Cysteine And Homocysteine                                                                                                    91
## Degradation Of Dvl                                                                                                                          91
## Degradation Of Gli1 By The Proteasome                                                                                                       91
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                            91
## Detoxification Of Reactive Oxygen Species                                                                                                   91
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                               91
## Digestion                                                                                                                                   91
## Digestion And Absorption                                                                                                                    91
## Digestion Of Dietary Carbohydrate                                                                                                           91
## Digestion Of Dietary Lipid                                                                                                                  91
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                       91
## Diseases Associated With N Glycosylation Of Proteins                                                                                        91
## Diseases Associated With O Glycosylation Of Proteins                                                                                        91
## Diseases Associated With Surfactant Metabolism                                                                                              91
## Diseases Of Base Excision Repair                                                                                                            91
## Diseases Of Carbohydrate Metabolism                                                                                                         91
## Diseases Of Dna Repair                                                                                                                      91
## Diseases Of Mismatch Repair Mmr                                                                                                             91
## Diseases Of Mitotic Cell Cycle                                                                                                              91
## Disinhibition Of Snare Formation                                                                                                            91
## Displacement Of Dna Glycosylase By Apex1                                                                                                    91
## Dna Damage Bypass                                                                                                                           91
## Dna Damage Recognition In Gg Ner                                                                                                            91
## Dna Damage Reversal                                                                                                                         91
## Dna Damage Telomere Stress Induced Senescence                                                                                               91
## Dna Replication                                                                                                                             91
## Dna Replication Initiation                                                                                                                  91
## Dna Replication Pre Initiation                                                                                                              91
## Dna Strand Elongation                                                                                                                       91
## Dopamine Neurotransmitter Release Cycle                                                                                                     91
## Dopamine Receptors                                                                                                                          91
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                     91
## Downregulation Of Erbb2 Signaling                                                                                                           91
## Downregulation Of Erbb4 Signaling                                                                                                           91
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                    91
## Downregulation Of Tgf Beta Receptor Signaling                                                                                               91
## Downstream Signaling Of Activated Fgfr1                                                                                                     91
## Downstream Signaling Of Activated Fgfr2                                                                                                     91
## Downstream Signaling Of Activated Fgfr3                                                                                                     91
## Downstream Signaling Of Activated Fgfr4                                                                                                     91
## Dual Incision In Gg Ner                                                                                                                     91
## Dual Incision In Tc Ner                                                                                                                     91
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                           91
## Effects Of Pip2 Hydrolysis                                                                                                                  91
## Egfr Interacts With Phospholipase C Gamma                                                                                                   91
## Egfr Transactivation By Gastrin                                                                                                             91
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                              91
## Eicosanoid Ligand Binding Receptors                                                                                                         91
## Eicosanoids                                                                                                                                 91
## Elastic Fibre Formation                                                                                                                     91
## Electric Transmission Across Gap Junctions                                                                                                  91
## Elevation Of Cytosolic Ca2 Levels                                                                                                           91
## Endogenous Sterols                                                                                                                          91
## Endosomal Sorting Complex Required For Transport Escrt                                                                                      91
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                            91
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                      91
## Epha Mediated Growth Cone Collapse                                                                                                          91
## Ephrin Signaling                                                                                                                            91
## Er Quality Control Compartment Erqc                                                                                                         91
## Erbb2 Activates Ptk6 Signaling                                                                                                              91
## Erbb2 Regulates Cell Motility                                                                                                               91
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                 91
## Erk Mapk Targets                                                                                                                            91
## Erks Are Inactivated                                                                                                                        91
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                      91
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                      91
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                     91
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                         91
## Erythropoietin Activates Ras                                                                                                                91
## Erythropoietin Activates Stat5                                                                                                              91
## Establishment Of Sister Chromatid Cohesion                                                                                                  91
## Estrogen Biosynthesis                                                                                                                       91
## Estrogen Stimulated Signaling Through Prkcz                                                                                                 91
## Ethanol Oxidation                                                                                                                           91
## Eukaryotic Translation Elongation                                                                                                           91
## Eukaryotic Translation Initiation                                                                                                           91
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                             91
## Extension Of Telomeres                                                                                                                      91
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                  91
## Fanconi Anemia Pathway                                                                                                                      91
## Fatty Acids                                                                                                                                 91
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                 91
## Fatty Acyl Coa Biosynthesis                                                                                                                 91
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                          91
## Fceri Mediated Ca 2 Mobilization                                                                                                            91
## Fcgr Activation                                                                                                                             91
## Fertilization                                                                                                                               91
## Fgfr1 Ligand Binding And Activation                                                                                                         91
## Fgfr1b Ligand Binding And Activation                                                                                                        91
## Fgfr1c Ligand Binding And Activation                                                                                                        91
## Fgfr2 Alternative Splicing                                                                                                                  91
## Fgfr2 Ligand Binding And Activation                                                                                                         91
## Fgfr2 Mutant Receptor Activation                                                                                                            91
## Fgfr2b Ligand Binding And Activation                                                                                                        91
## Fgfr2c Ligand Binding And Activation                                                                                                        91
## Fgfr3 Ligand Binding And Activation                                                                                                         91
## Fgfr3b Ligand Binding And Activation                                                                                                        91
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                        91
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                              91
## Flt3 Signaling                                                                                                                              91
## Flt3 Signaling By Cbl Mutants                                                                                                               91
## Flt3 Signaling In Disease                                                                                                                   91
## Flt3 Signaling Through Src Family Kinases                                                                                                   91
## Folding Of Actin By Cct Tric                                                                                                                91
## Formation Of Apoptosome                                                                                                                     91
## Formation Of Atp By Chemiosmotic Coupling                                                                                                   91
## Formation Of Fibrin Clot Clotting Cascade                                                                                                   91
## Formation Of Incision Complex In Gg Ner                                                                                                     91
## Formation Of Rna Pol Ii Elongation Complex                                                                                                  91
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                91
## Formation Of Tc Ner Pre Incision Complex                                                                                                    91
## Formation Of The Cornified Envelope                                                                                                         91
## Formation Of The Early Elongation Complex                                                                                                   91
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                      91
## Formation Of Xylulose 5 Phosphate                                                                                                           91
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                        91
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                91
## Free Fatty Acid Receptors                                                                                                                   91
## Free Fatty Acids Regulate Insulin Secretion                                                                                                 91
## Frs Mediated Fgfr1 Signaling                                                                                                                91
## Frs Mediated Fgfr2 Signaling                                                                                                                91
## Frs Mediated Fgfr3 Signaling                                                                                                                91
## Frs Mediated Fgfr4 Signaling                                                                                                                91
## Fructose Catabolism                                                                                                                         91
## Fructose Metabolism                                                                                                                         91
## G Alpha 12 13 Signalling Events                                                                                                             91
## G Alpha S Signalling Events                                                                                                                 91
## G Alpha Z Signalling Events                                                                                                                 91
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                   91
## G Protein Activation                                                                                                                        91
## G1 S Dna Damage Checkpoints                                                                                                                 91
## G2 Phase                                                                                                                                    91
## Gab1 Signalosome                                                                                                                            91
## Gaba B Receptor Activation                                                                                                                  91
## Gaba Receptor Activation                                                                                                                    91
## Gaba Synthesis Release Reuptake And Degradation                                                                                             91
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                         91
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                       91
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                     91
## Gap Junction Assembly                                                                                                                       91
## Gap Junction Degradation                                                                                                                    91
## Gap Junction Trafficking And Regulation                                                                                                     91
## Gdp Fucose Biosynthesis                                                                                                                     91
## Gene Silencing By Rna                                                                                                                       91
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                 91
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                             91
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                    91
## Glucagon Signaling In Metabolic Regulation                                                                                                  91
## Glucagon Type Ligand Receptors                                                                                                              91
## Glucocorticoid Biosynthesis                                                                                                                 91
## Gluconeogenesis                                                                                                                             91
## Glucose Metabolism                                                                                                                          91
## Glucuronidation                                                                                                                             91
## Glutamate And Glutamine Metabolism                                                                                                          91
## Glutamate Neurotransmitter Release Cycle                                                                                                    91
## Glutathione Conjugation                                                                                                                     91
## Glutathione Synthesis And Recycling                                                                                                         91
## Glycerophospholipid Biosynthesis                                                                                                            91
## Glycerophospholipid Catabolism                                                                                                              91
## Glycogen Breakdown Glycogenolysis                                                                                                           91
## Glycogen Metabolism                                                                                                                         91
## Glycogen Storage Diseases                                                                                                                   91
## Glycogen Synthesis                                                                                                                          91
## Glycolysis                                                                                                                                  91
## Glycosphingolipid Metabolism                                                                                                                91
## Glyoxylate Metabolism And Glycine Degradation                                                                                               91
## Golgi Associated Vesicle Biogenesis                                                                                                         91
## Golgi To Er Retrograde Transport                                                                                                            91
## Gp1b Ix V Activation Signalling                                                                                                             91
## Grb2 Events In Erbb2 Signaling                                                                                                              91
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                   91
## Grb7 Events In Erbb2 Signaling                                                                                                              91
## Hats Acetylate Histones                                                                                                                     91
## Hcmv Late Events                                                                                                                            91
## Hdacs Deacetylate Histones                                                                                                                  91
## Hdms Demethylate Histones                                                                                                                   91
## Hdr Through Homologous Recombination Hrr                                                                                                    91
## Hdr Through Mmej Alt Nhej                                                                                                                   91
## Hdr Through Single Strand Annealing Ssa                                                                                                     91
## Hedgehog Ligand Biogenesis                                                                                                                  91
## Hedgehog Off State                                                                                                                          91
## Hedgehog On State                                                                                                                           91
## Heme Biosynthesis                                                                                                                           91
## Heme Degradation                                                                                                                            91
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                   91
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                  91
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                     91
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                      91
## Histidine Catabolism                                                                                                                        91
## Hiv Elongation Arrest And Recovery                                                                                                          91
## Hiv Transcription Elongation                                                                                                                91
## Hiv Transcription Initiation                                                                                                                91
## Homologous Dna Pairing And Strand Exchange                                                                                                  91
## Homology Directed Repair                                                                                                                    91
## Hormone Ligand Binding Receptors                                                                                                            91
## Host Interactions Of Hiv Factors                                                                                                            91
## Hs Gag Biosynthesis                                                                                                                         91
## Hs Gag Degradation                                                                                                                          91
## Hsf1 Activation                                                                                                                             91
## Hsf1 Dependent Transactivation                                                                                                              91
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                     91
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                        91
## Hyaluronan Biosynthesis And Export                                                                                                          91
## Hyaluronan Metabolism                                                                                                                       91
## Hyaluronan Uptake And Degradation                                                                                                           91
## Hydrolysis Of Lpc                                                                                                                           91
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                             91
## Infection With Mycobacterium Tuberculosis                                                                                                   91
## Influenza Infection                                                                                                                         91
## Inhibition Of Dna Recombination At Telomere                                                                                                 91
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                             91
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                 91
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                               91
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                91
## Inositol Phosphate Metabolism                                                                                                               91
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                 91
## Insulin Processing                                                                                                                          91
## Insulin Receptor Recycling                                                                                                                  91
## Integration Of Energy Metabolism                                                                                                            91
## Integration Of Provirus                                                                                                                     91
## Integrin Cell Surface Interactions                                                                                                          91
## Integrin Signaling                                                                                                                          91
## Interaction Between L1 And Ankyrins                                                                                                         91
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                       91
## Interactions Of Rev With Host Cellular Proteins                                                                                             91
## Interactions Of Vpr With Host Cellular Proteins                                                                                             91
## Interconversion Of Nucleotide Di And Triphosphates                                                                                          91
## Interleukin 36 Pathway                                                                                                                      91
## Intestinal Absorption                                                                                                                       91
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                              91
## Intra Golgi Traffic                                                                                                                         91
## Intraflagellar Transport                                                                                                                    91
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                  91
## Inwardly Rectifying K Channels                                                                                                              91
## Ion Channel Transport                                                                                                                       91
## Ion Homeostasis                                                                                                                             91
## Ion Transport By P Type Atpases                                                                                                             91
## Ionotropic Activity Of Kainate Receptors                                                                                                    91
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                   91
## Ire1alpha Activates Chaperones                                                                                                              91
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                      91
## Irf3 Mediated Induction Of Type I Ifn                                                                                                       91
## Iron Uptake And Transport                                                                                                                   91
## Irs Activation                                                                                                                              91
## Josephin Domain Dubs                                                                                                                        91
## Keratan Sulfate Biosynthesis                                                                                                                91
## Keratan Sulfate Degradation                                                                                                                 91
## Keratan Sulfate Keratin Metabolism                                                                                                          91
## Keratinization                                                                                                                              91
## Ketone Body Metabolism                                                                                                                      91
## Kinesins                                                                                                                                    91
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                      91
## L1cam Interactions                                                                                                                          91
## Lagging Strand Synthesis                                                                                                                    91
## Laminin Interactions                                                                                                                        91
## Late Endosomal Microautophagy                                                                                                               91
## Ldl Clearance                                                                                                                               91
## Lectin Pathway Of Complement Activation                                                                                                     91
## Leukotriene Receptors                                                                                                                       91
## Lgi Adam Interactions                                                                                                                       91
## Ligand Receptor Interactions                                                                                                                91
## Linoleic Acid La Metabolism                                                                                                                 91
## Lipid Particle Organization                                                                                                                 91
## Lipophagy                                                                                                                                   91
## Listeria Monocytogenes Entry Into Host Cells                                                                                                91
## Long Term Potentiation                                                                                                                      91
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                  91
## Loss Of Function Of Smad2 3 In Cancer                                                                                                       91
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                      91
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                      91
## Ltc4 Cysltr Mediated Il4 Production                                                                                                         91
## Lysine Catabolism                                                                                                                           91
## Lysosome Vesicle Biogenesis                                                                                                                 91
## Lysosphingolipid And Lpa Receptors                                                                                                          91
## Map2k And Mapk Activation                                                                                                                   91
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                    91
## Mapk1 Erk2 Activation                                                                                                                       91
## Maturation Of Nucleoprotein                                                                                                                 91
## Maturation Of Protein 3a                                                                                                                    91
## Maturation Of Sars Cov 1 Spike Protein                                                                                                      91
## Maturation Of Sars Cov 2 Spike Protein                                                                                                      91
## Meiosis                                                                                                                                     91
## Meiotic Recombination                                                                                                                       91
## Meiotic Synapsis                                                                                                                            91
## Melanin Biosynthesis                                                                                                                        91
## Met Activates Pi3k Akt Signaling                                                                                                            91
## Met Activates Ptk2 Signaling                                                                                                                91
## Met Activates Ptpn11                                                                                                                        91
## Met Activates Rap1 And Rac1                                                                                                                 91
## Met Activates Ras Signaling                                                                                                                 91
## Met Interacts With Tns Proteins                                                                                                             91
## Met Promotes Cell Motility                                                                                                                  91
## Met Receptor Activation                                                                                                                     91
## Met Receptor Recycling                                                                                                                      91
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                         91
## Metabolism Of Amine Derived Hormones                                                                                                        91
## Metabolism Of Angiotensinogen To Angiotensins                                                                                               91
## Metabolism Of Cofactors                                                                                                                     91
## Metabolism Of Folate And Pterines                                                                                                           91
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                            91
## Metabolism Of Nucleotides                                                                                                                   91
## Metabolism Of Polyamines                                                                                                                    91
## Metabolism Of Porphyrins                                                                                                                    91
## Metabolism Of Rna                                                                                                                           91
## Metabolism Of Steroid Hormones                                                                                                              91
## Metabolism Of Steroids                                                                                                                      91
## Metal Ion Slc Transporters                                                                                                                  91
## Metal Sequestration By Antimicrobial Proteins                                                                                               91
## Metallothioneins Bind Metals                                                                                                                91
## Methionine Salvage Pathway                                                                                                                  91
## Methylation                                                                                                                                 91
## Microrna Mirna Biogenesis                                                                                                                   91
## Mineralocorticoid Biosynthesis                                                                                                              91
## Miro Gtpase Cycle                                                                                                                           91
## Miscellaneous Substrates                                                                                                                    91
## Miscellaneous Transport And Binding Events                                                                                                  91
## Mismatch Repair                                                                                                                             91
## Mitochondrial Calcium Ion Transport                                                                                                         91
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                     91
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                            91
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                          91
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                91
## Mitochondrial Protein Import                                                                                                                91
## Mitochondrial Translation                                                                                                                   91
## Mitochondrial Trna Aminoacylation                                                                                                           91
## Mitochondrial Uncoupling                                                                                                                    91
## Mitotic Spindle Checkpoint                                                                                                                  91
## Mitotic Telophase Cytokinesis                                                                                                               91
## Modulation By Mtb Of Host Immune System                                                                                                     91
## Molecules Associated With Elastic Fibres                                                                                                    91
## Molybdenum Cofactor Biosynthesis                                                                                                            91
## Mrna Capping                                                                                                                                91
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                        91
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                        91
## Mrna Editing                                                                                                                                91
## Mrna Editing C To U Conversion                                                                                                              91
## Mrna Splicing                                                                                                                               91
## Mrna Splicing Minor Pathway                                                                                                                 91
## Mtor Signalling                                                                                                                             91
## Mtorc1 Mediated Signalling                                                                                                                  91
## Mucopolysaccharidoses                                                                                                                       91
## Multifunctional Anion Exchangers                                                                                                            91
## Muscarinic Acetylcholine Receptors                                                                                                          91
## Myoclonic Epilepsy Of Lafora                                                                                                                91
## N Glycan Antennae Elongation                                                                                                                91
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                      91
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                           91
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                 91
## Na Cl Dependent Neurotransmitter Transporters                                                                                               91
## Nade Modulates Death Signalling                                                                                                             91
## Ncam1 Interactions                                                                                                                          91
## Nectin Necl Trans Heterodimerization                                                                                                        91
## Neddylation                                                                                                                                 91
## Nef And Signal Transduction                                                                                                                 91
## Nef Mediated Cd4 Down Regulation                                                                                                            91
## Nef Mediated Cd8 Down Regulation                                                                                                            91
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                  91
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                              91
## Negative Feedback Regulation Of Mapk Pathway                                                                                                91
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                  91
## Negative Regulation Of Fgfr1 Signaling                                                                                                      91
## Negative Regulation Of Fgfr2 Signaling                                                                                                      91
## Negative Regulation Of Fgfr3 Signaling                                                                                                      91
## Negative Regulation Of Fgfr4 Signaling                                                                                                      91
## Negative Regulation Of Flt3                                                                                                                 91
## Negative Regulation Of Mapk Pathway                                                                                                         91
## Negative Regulation Of Met Activity                                                                                                         91
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                         91
## Negative Regulation Of Notch4 Signaling                                                                                                     91
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                  91
## Nephrin Family Interactions                                                                                                                 91
## Netrin Mediated Repulsion Signals                                                                                                           91
## Neurexins And Neuroligins                                                                                                                   91
## Neurofascin Interactions                                                                                                                    91
## Neurotoxicity Of Clostridium Toxins                                                                                                         91
## Neurotransmitter Clearance                                                                                                                  91
## Neurotransmitter Release Cycle                                                                                                              91
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                    91
## Ngf Independant Trka Activation                                                                                                             91
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                   91
## Non Integrin Membrane Ecm Interactions                                                                                                      91
## Noncanonical Activation Of Notch3                                                                                                           91
## Nonhomologous End Joining Nhej                                                                                                              91
## Nonsense Mediated Decay Nmd                                                                                                                 91
## Norepinephrine Neurotransmitter Release Cycle                                                                                               91
## Notch Hlh Transcription Pathway                                                                                                             91
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch3 Intracellular Domain Regulates Transcription                                                                                         91
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                 91
## Notch4 Intracellular Domain Regulates Transcription                                                                                         91
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                          91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                              91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                  91
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                            91
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                       91
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                            91
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                             91
## Nrcam Interactions                                                                                                                          91
## Ns1 Mediated Effects On Host Pathways                                                                                                       91
## Ntrk2 Activates Rac1                                                                                                                        91
## Nuclear Import Of Rev Protein                                                                                                               91
## Nuclear Receptor Transcription Pathway                                                                                                      91
## Nuclear Signaling By Erbb4                                                                                                                  91
## Nucleobase Biosynthesis                                                                                                                     91
## Nucleobase Catabolism                                                                                                                       91
## Nucleotide Excision Repair                                                                                                                  91
## Nucleotide Like Purinergic Receptors                                                                                                        91
## Nucleotide Salvage                                                                                                                          91
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                           91
## O Linked Glycosylation                                                                                                                      91
## O Linked Glycosylation Of Mucins                                                                                                            91
## Oas Antiviral Response                                                                                                                      91
## Olfactory Signaling Pathway                                                                                                                 91
## Oncogene Induced Senescence                                                                                                                 91
## Oncogenic Mapk Signaling                                                                                                                    91
## Opsins                                                                                                                                      91
## Orc1 Removal From Chromatin                                                                                                                 91
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                     91
## Organic Anion Transport                                                                                                                     91
## Organic Anion Transporters                                                                                                                  91
## Organic Cation Anion Zwitterion Transport                                                                                                   91
## Organic Cation Transport                                                                                                                    91
## Other Interleukin Signaling                                                                                                                 91
## P130cas Linkage To Mapk Signaling For Integrins                                                                                             91
## P2y Receptors                                                                                                                               91
## P38mapk Events                                                                                                                              91
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                              91
## P75ntr Regulates Axonogenesis                                                                                                               91
## Passive Transport By Aquaporins                                                                                                             91
## Pcna Dependent Long Patch Base Excision Repair                                                                                              91
## Pecam1 Interactions                                                                                                                         91
## Pentose Phosphate Pathway                                                                                                                   91
## Peptide Hormone Biosynthesis                                                                                                                91
## Peroxisomal Lipid Metabolism                                                                                                                91
## Peroxisomal Protein Import                                                                                                                  91
## Pexophagy                                                                                                                                   91
## Phase 0 Rapid Depolarisation                                                                                                                91
## Phase 1 Inactivation Of Fast Na Channels                                                                                                    91
## Phase 2 Plateau Phase                                                                                                                       91
## Phase 3 Rapid Repolarisation                                                                                                                91
## Phase I Functionalization Of Compounds                                                                                                      91
## Phase Ii Conjugation Of Compounds                                                                                                           91
## Phenylalanine And Tyrosine Metabolism                                                                                                       91
## Phenylalanine Metabolism                                                                                                                    91
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                               91
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                  91
## Phospholipase C Mediated Cascade Fgfr2                                                                                                      91
## Phospholipase C Mediated Cascade Fgfr4                                                                                                      91
## Phospholipid Metabolism                                                                                                                     91
## Physiological Factors                                                                                                                       91
## Pi 3k Cascade Fgfr1                                                                                                                         91
## Pi 3k Cascade Fgfr2                                                                                                                         91
## Pi 3k Cascade Fgfr3                                                                                                                         91
## Pi 3k Cascade Fgfr4                                                                                                                         91
## Pi Metabolism                                                                                                                               91
## Pi3k Akt Activation                                                                                                                         91
## Pi3k Events In Erbb2 Signaling                                                                                                              91
## Pi3k Events In Erbb4 Signaling                                                                                                              91
## Pi5p Regulates Tp53 Acetylation                                                                                                             91
## Piwi Interacting Rna Pirna Biogenesis                                                                                                       91
## Pka Activation In Glucagon Signalling                                                                                                       91
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                       91
## Pkmts Methylate Histone Lysines                                                                                                             91
## Platelet Adhesion To Exposed Collagen                                                                                                       91
## Platelet Aggregation Plug Formation                                                                                                         91
## Platelet Calcium Homeostasis                                                                                                                91
## Platelet Homeostasis                                                                                                                        91
## Platelet Sensitization By Ldl                                                                                                               91
## Polb Dependent Long Patch Base Excision Repair                                                                                              91
## Polo Like Kinase Mediated Events                                                                                                            91
## Polymerase Switching                                                                                                                        91
## Polymerase Switching On The C Strand Of The Telomere                                                                                        91
## Positive Epigenetic Regulation Of Rrna Expression                                                                                           91
## Post Chaperonin Tubulin Folding Pathway                                                                                                     91
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                            91
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                             91
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                    91
## Pre Notch Expression And Processing                                                                                                         91
## Pre Notch Processing In Golgi                                                                                                               91
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                           91
## Pregnenolone Biosynthesis                                                                                                                   91
## Presynaptic Depolarization And Calcium Channel Opening                                                                                      91
## Presynaptic Function Of Kainate Receptors                                                                                                   91
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                   91
## Processing And Activation Of Sumo                                                                                                           91
## Processing Of Capped Intron Containing Pre Mrna                                                                                             91
## Processing Of Capped Intronless Pre Mrna                                                                                                    91
## Processing Of Dna Double Strand Break Ends                                                                                                  91
## Processing Of Intronless Pre Mrnas                                                                                                          91
## Processing Of Smdt1                                                                                                                         91
## Processive Synthesis On The C Strand Of The Telomere                                                                                        91
## Processive Synthesis On The Lagging Strand                                                                                                  91
## Prolactin Receptor Signaling                                                                                                                91
## Prolonged Erk Activation Events                                                                                                             91
## Propionyl Coa Catabolism                                                                                                                    91
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                       91
## Prostanoid Ligand Receptors                                                                                                                 91
## Protein Localization                                                                                                                        91
## Protein Methylation                                                                                                                         91
## Protein Protein Interactions At Synapses                                                                                                    91
## Protein Repair                                                                                                                              91
## Protein Ubiquitination                                                                                                                      91
## Proton Coupled Monocarboxylate Transport                                                                                                    91
## Pten Regulation                                                                                                                             91
## Ptk6 Expression                                                                                                                             91
## Ptk6 Promotes Hif1a Stabilization                                                                                                           91
## Ptk6 Regulates Cell Cycle                                                                                                                   91
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                          91
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                       91
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                       91
## Purine Catabolism                                                                                                                           91
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                            91
## Purine Salvage                                                                                                                              91
## Pyrimidine Catabolism                                                                                                                       91
## Pyrimidine Salvage                                                                                                                          91
## Pyruvate Metabolism                                                                                                                         91
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                               91
## Ra Biosynthesis Pathway                                                                                                                     91
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                       91
## Rab Geranylgeranylation                                                                                                                     91
## Rab Regulation Of Trafficking                                                                                                               91
## Raf Activation                                                                                                                              91
## Rap1 Signalling                                                                                                                             91
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                        91
## Ras Processing                                                                                                                              91
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                   91
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                91
## Receptor Type Tyrosine Protein Phosphatases                                                                                                 91
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                      91
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                            91
## Recycling Of Bile Acids And Salts                                                                                                           91
## Recycling Of Eif2 Gdp                                                                                                                       91
## Recycling Pathway Of L1                                                                                                                     91
## Reduction Of Cytosolic Ca Levels                                                                                                            91
## Reelin Signalling Pathway                                                                                                                   91
## Regulated Proteolysis Of P75ntr                                                                                                             91
## Regulation Of Bach1 Activity                                                                                                                91
## Regulation Of Beta Cell Development                                                                                                         91
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                       91
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                 91
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                          91
## Regulation Of Expression Of Slits And Robos                                                                                                 91
## Regulation Of Fzd By Ubiquitination                                                                                                         91
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                   91
## Regulation Of Gene Expression In Beta Cells                                                                                                 91
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                           91
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                               91
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                          91
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                 91
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                            91
## Regulation Of Hmox1 Expression And Activity                                                                                                 91
## Regulation Of Ifna Signaling                                                                                                                91
## Regulation Of Ifng Signaling                                                                                                                91
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                      91
## Regulation Of Insulin Secretion                                                                                                             91
## Regulation Of Kit Signaling                                                                                                                 91
## Regulation Of Localization Of Foxo Transcription Factors                                                                                    91
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                         91
## Regulation Of Pten Gene Transcription                                                                                                       91
## Regulation Of Pten Localization                                                                                                             91
## Regulation Of Pten Mrna Translation                                                                                                         91
## Regulation Of Pten Stability And Activity                                                                                                   91
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                            91
## Regulation Of Ras By Gaps                                                                                                                   91
## Regulation Of Runx1 Expression And Activity                                                                                                 91
## Regulation Of Runx2 Expression And Activity                                                                                                 91
## Regulation Of Runx3 Expression And Activity                                                                                                 91
## Regulation Of Signaling By Cbl                                                                                                              91
## Regulation Of Signaling By Nodal                                                                                                            91
## Regulation Of Tp53 Activity Through Acetylation                                                                                             91
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                             91
## Regulation Of Tp53 Activity Through Methylation                                                                                             91
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                         91
## Relaxin Receptors                                                                                                                           91
## Release Of Apoptotic Factors From The Mitochondria                                                                                          91
## Release Of Hh Np From The Secreting Cell                                                                                                    91
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                       91
## Reproduction                                                                                                                                91
## Resolution Of Abasic Sites Ap Sites                                                                                                         91
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                91
## Resolution Of D Loop Structures                                                                                                             91
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                           91
## Respiratory Electron Transport                                                                                                              91
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                            91
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                  91
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                           91
## Response Of Mtb To Phagocytosis                                                                                                             91
## Response To Metal Ions                                                                                                                      91
## Ret Signaling                                                                                                                               91
## Retinoid Cycle Disease Events                                                                                                               91
## Retrograde Neurotrophin Signalling                                                                                                          91
## Retrograde Transport At The Trans Golgi Network                                                                                             91
## Reversible Hydration Of Carbon Dioxide                                                                                                      91
## Rho Gtpases Activate Cit                                                                                                                    91
## Rho Gtpases Activate Nadph Oxidases                                                                                                         91
## Rho Gtpases Activate Pkns                                                                                                                   91
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                91
## Rho Gtpases Activate Rocks                                                                                                                  91
## Rhobtb Gtpase Cycle                                                                                                                         91
## Rhobtb1 Gtpase Cycle                                                                                                                        91
## Rhobtb2 Gtpase Cycle                                                                                                                        91
## Rhobtb3 Atpase Cycle                                                                                                                        91
## Rhot1 Gtpase Cycle                                                                                                                          91
## Rna Polymerase I Promoter Escape                                                                                                            91
## Rna Polymerase I Transcription                                                                                                              91
## Rna Polymerase I Transcription Initiation                                                                                                   91
## Rna Polymerase I Transcription Termination                                                                                                  91
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                   91
## Rna Polymerase Ii Transcription Termination                                                                                                 91
## Rna Polymerase Iii Chain Elongation                                                                                                         91
## Rna Polymerase Iii Transcription                                                                                                            91
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                            91
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                            91
## Rna Polymerase Iii Transcription Termination                                                                                                91
## Robo Receptors Bind Akap5                                                                                                                   91
## Role Of Abl In Robo Slit Signaling                                                                                                          91
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                               91
## Role Of Phospholipids In Phagocytosis                                                                                                       91
## Role Of Second Messengers In Netrin 1 Signaling                                                                                             91
## Rora Activates Gene Expression                                                                                                              91
## Rrna Modification In The Mitochondrion                                                                                                      91
## Rrna Modification In The Nucleus And Cytosol                                                                                                91
## Rrna Processing                                                                                                                             91
## Rrna Processing In The Mitochondrion                                                                                                        91
## Rsk Activation                                                                                                                              91
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                          91
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                    91
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                 91
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                       91
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                            91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                  91
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                         91
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                    91
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                            91
## Runx2 Regulates Bone Development                                                                                                            91
## Runx2 Regulates Chondrocyte Maturation                                                                                                      91
## Runx2 Regulates Genes Involved In Cell Migration                                                                                            91
## Runx2 Regulates Osteoblast Differentiation                                                                                                  91
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                   91
## Runx3 Regulates Cdkn1a Transcription                                                                                                        91
## Runx3 Regulates Immune Response And Cell Migration                                                                                          91
## Runx3 Regulates Notch Signaling                                                                                                             91
## Runx3 Regulates P14 Arf                                                                                                                     91
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                 91
## Sars Cov 1 Genome Replication And Transcription                                                                                             91
## Sars Cov 1 Infection                                                                                                                        91
## Sars Cov 2 Infection                                                                                                                        91
## Scavenging By Class F Receptors                                                                                                             91
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                    91
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                             91
## Selenoamino Acid Metabolism                                                                                                                 91
## Sema3a Pak Dependent Axon Repulsion                                                                                                         91
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                           91
## Sema4d In Semaphorin Signaling                                                                                                              91
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                      91
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                 91
## Sensing Of Dna Double Strand Breaks                                                                                                         91
## Sensory Processing Of Sound                                                                                                                 91
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                              91
## Separation Of Sister Chromatids                                                                                                             91
## Serine Biosynthesis                                                                                                                         91
## Serotonin And Melatonin Biosynthesis                                                                                                        91
## Serotonin Neurotransmitter Release Cycle                                                                                                    91
## Serotonin Receptors                                                                                                                         91
## Shc Mediated Cascade Fgfr1                                                                                                                  91
## Shc Mediated Cascade Fgfr3                                                                                                                  91
## Shc Mediated Cascade Fgfr4                                                                                                                  91
## Shc Related Events Triggered By Igf1r                                                                                                       91
## Shc1 Events In Egfr Signaling                                                                                                               91
## Shc1 Events In Erbb2 Signaling                                                                                                              91
## Shc1 Events In Erbb4 Signaling                                                                                                              91
## Sialic Acid Metabolism                                                                                                                      91
## Signal Amplification                                                                                                                        91
## Signal Attenuation                                                                                                                          91
## Signal Regulatory Protein Family Interactions                                                                                               91
## Signal Transduction By L1                                                                                                                   91
## Signaling By Activin                                                                                                                        91
## Signaling By Bmp                                                                                                                            91
## Signaling By Braf And Raf Fusions                                                                                                           91
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                    91
## Signaling By Egfr In Cancer                                                                                                                 91
## Signaling By Erbb2                                                                                                                          91
## Signaling By Erbb2 Ecd Mutants                                                                                                              91
## Signaling By Erbb2 In Cancer                                                                                                                91
## Signaling By Erbb4                                                                                                                          91
## Signaling By Erythropoietin                                                                                                                 91
## Signaling By Fgfr                                                                                                                           91
## Signaling By Fgfr1                                                                                                                          91
## Signaling By Fgfr2                                                                                                                          91
## Signaling By Fgfr2 Iiia Tm                                                                                                                  91
## Signaling By Fgfr2 In Disease                                                                                                               91
## Signaling By Fgfr3                                                                                                                          91
## Signaling By Fgfr3 Fusions In Cancer                                                                                                        91
## Signaling By Fgfr4                                                                                                                          91
## Signaling By Fgfr4 In Disease                                                                                                               91
## Signaling By Flt3 Fusion Proteins                                                                                                           91
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                       91
## Signaling By Hedgehog                                                                                                                       91
## Signaling By Hippo                                                                                                                          91
## Signaling By Lrp5 Mutants                                                                                                                   91
## Signaling By Mapk Mutants                                                                                                                   91
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                  91
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                          91
## Signaling By Mras Complex Mutants                                                                                                           91
## Signaling By Mst1                                                                                                                           91
## Signaling By Nodal                                                                                                                          91
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                             91
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                           91
## Signaling By Notch3                                                                                                                         91
## Signaling By Notch4                                                                                                                         91
## Signaling By Ntrk2 Trkb                                                                                                                     91
## Signaling By Ntrk3 Trkc                                                                                                                     91
## Signaling By Retinoic Acid                                                                                                                  91
## Signaling By Rnf43 Mutants                                                                                                                  91
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                            91
## Signaling By Wnt In Cancer                                                                                                                  91
## Signalling To Erks                                                                                                                          91
## Signalling To P38 Via Rit And Rin                                                                                                           91
## Signalling To Ras                                                                                                                           91
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                        91
## Slc Mediated Transmembrane Transport                                                                                                        91
## Slc Transporter Disorders                                                                                                                   91
## Smac Xiap Regulated Apoptotic Response                                                                                                      91
## Small Interfering Rna Sirna Biogenesis                                                                                                      91
## Smooth Muscle Contraction                                                                                                                   91
## Snrnp Assembly                                                                                                                              91
## Sodium Calcium Exchangers                                                                                                                   91
## Sodium Coupled Phosphate Cotransporters                                                                                                     91
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                 91
## Sodium Proton Exchangers                                                                                                                    91
## Sos Mediated Signalling                                                                                                                     91
## Sperm Motility And Taxes                                                                                                                    91
## Sphingolipid De Novo Biosynthesis                                                                                                           91
## Sphingolipid Metabolism                                                                                                                     91
## Spry Regulation Of Fgf Signaling                                                                                                            91
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                 91
## Stabilization Of P53                                                                                                                        91
## Stat5 Activation                                                                                                                            91
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                             91
## Stimuli Sensing Channels                                                                                                                    91
## Sting Mediated Induction Of Host Immune Responses                                                                                           91
## Striated Muscle Contraction                                                                                                                 91
## Sulfide Oxidation To Sulfate                                                                                                                91
## Sulfur Amino Acid Metabolism                                                                                                                91
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                          91
## Sumo Is Proteolytically Processed                                                                                                           91
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                91
## Sumoylation Of Chromatin Organization Proteins                                                                                              91
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                      91
## Sumoylation Of Dna Replication Proteins                                                                                                     91
## Sumoylation Of Intracellular Receptors                                                                                                      91
## Sumoylation Of Rna Binding Proteins                                                                                                         91
## Sumoylation Of Sumoylation Proteins                                                                                                         91
## Sumoylation Of Transcription Cofactors                                                                                                      91
## Sumoylation Of Transcription Factors                                                                                                        91
## Sumoylation Of Ubiquitinylation Proteins                                                                                                    91
## Suppression Of Apoptosis                                                                                                                    91
## Suppression Of Phagosomal Maturation                                                                                                        91
## Surfactant Metabolism                                                                                                                       91
## Switching Of Origins To A Post Replicative State                                                                                            91
## Synaptic Adhesion Like Molecules                                                                                                            91
## Syndecan Interactions                                                                                                                       91
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                           91
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                       91
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                       91
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                    91
## Synthesis Of Bile Acids And Bile Salts                                                                                                      91
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                            91
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                            91
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                        91
## Synthesis Of Diphthamide Eef2                                                                                                               91
## Synthesis Of Dolichyl Phosphate                                                                                                             91
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                               91
## Synthesis Of Gdp Mannose                                                                                                                    91
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                               91
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                  91
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                     91
## Synthesis Of Ketone Bodies                                                                                                                  91
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                  91
## Synthesis Of Lipoxins Lx                                                                                                                    91
## Synthesis Of Pa                                                                                                                             91
## Synthesis Of Pc                                                                                                                             91
## Synthesis Of Pe                                                                                                                             91
## Synthesis Of Pg                                                                                                                             91
## Synthesis Of Pi                                                                                                                             91
## Synthesis Of Pips At The Early Endosome Membrane                                                                                            91
## Synthesis Of Pips At The Er Membrane                                                                                                        91
## Synthesis Of Pips At The Golgi Membrane                                                                                                     91
## Synthesis Of Pips At The Late Endosome Membrane                                                                                             91
## Synthesis Of Pips At The Plasma Membrane                                                                                                    91
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                  91
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                             91
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                       91
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                91
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                  91
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                              91
## Tachykinin Receptors Bind Tachykinins                                                                                                       91
## Tbc Rabgaps                                                                                                                                 91
## Telomere C Strand Lagging Strand Synthesis                                                                                                  91
## Telomere C Strand Synthesis Initiation                                                                                                      91
## Telomere Extension By Telomerase                                                                                                            91
## Telomere Maintenance                                                                                                                        91
## Terminal Pathway Of Complement                                                                                                              91
## Termination Of O Glycan Biosynthesis                                                                                                        91
## Termination Of Translesion Dna Synthesis                                                                                                    91
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                          91
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                             91
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                91
## Tgf Beta Receptor Signaling Activates Smads                                                                                                 91
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                     91
## The Activation Of Arylsulfatases                                                                                                            91
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                        91
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                91
## The Fatty Acid Cycling Model                                                                                                                91
## The Phototransduction Cascade                                                                                                               91
## The Retinoid Cycle In Cones Daylight Vision                                                                                                 91
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                               91
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                             91
## Thromboxane Signalling Through Tp Receptor                                                                                                  91
## Thyroxine Biosynthesis                                                                                                                      91
## Tie2 Signaling                                                                                                                              91
## Tight Junction Interactions                                                                                                                 91
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                     91
## Tp53 Regulates Metabolic Genes                                                                                                              91
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                            91
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                             91
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                            91
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                 91
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                            91
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                      91
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                      91
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain        91
## Traf3 Dependent Irf Activation Pathway                                                                                                      91
## Traf6 Mediated Irf7 Activation                                                                                                              91
## Trafficking Of Ampa Receptors                                                                                                               91
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                              91
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                         91
## Trail Signaling                                                                                                                             91
## Trans Golgi Network Vesicle Budding                                                                                                         91
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                     91
## Transcription Of The Hiv Genome                                                                                                             91
## Transcriptional Regulation By E2f6                                                                                                          91
## Transcriptional Regulation By Small Rnas                                                                                                    91
## Transcriptional Regulation By Ventx                                                                                                         91
## Transcriptional Regulation Of Testis Differentiation                                                                                        91
## Transferrin Endocytosis And Recycling                                                                                                       91
## Translation                                                                                                                                 91
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                              91
## Translation Of Sars Cov 1 Structural Proteins                                                                                               91
## Translation Of Sars Cov 2 Structural Proteins                                                                                               91
## Translesion Synthesis By Polh                                                                                                               91
## Translesion Synthesis By Polk                                                                                                               91
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                          91
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                        91
## Transport And Synthesis Of Paps                                                                                                             91
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                    91
## Transport Of Connexons To The Plasma Membrane                                                                                               91
## Transport Of Fatty Acids                                                                                                                    91
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                         91
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                               91
## Transport Of Mature Transcript To Cytoplasm                                                                                                 91
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                    91
## Transport Of Nucleotide Sugars                                                                                                              91
## Transport Of Organic Anions                                                                                                                 91
## Transport Of The Slbp Dependant Mature Mrna                                                                                                 91
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                     91
## Triglyceride Biosynthesis                                                                                                                   91
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                       91
## Trna Aminoacylation                                                                                                                         91
## Trna Modification In The Mitochondrion                                                                                                      91
## Trna Modification In The Nucleus And Cytosol                                                                                                91
## Trna Processing                                                                                                                             91
## Trna Processing In The Mitochondrion                                                                                                        91
## Trna Processing In The Nucleus                                                                                                              91
## Trp Channels                                                                                                                                91
## Tryptophan Catabolism                                                                                                                       91
## Type I Hemidesmosome Assembly                                                                                                               91
## Tyrosine Catabolism                                                                                                                         91
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                         91
## Ubiquinol Biosynthesis                                                                                                                      91
## Uch Proteinases                                                                                                                             91
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                               91
## Unwinding Of Dna                                                                                                                            91
## Uptake And Actions Of Bacterial Toxins                                                                                                      91
## Uptake And Function Of Anthrax Toxins                                                                                                       91
## Uptake And Function Of Diphtheria Toxin                                                                                                     91
## Urea Cycle                                                                                                                                  91
## Vasopressin Like Receptors                                                                                                                  91
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                91
## Vegf Ligand Receptor Interactions                                                                                                           91
## Vegfr2 Mediated Cell Proliferation                                                                                                          91
## Viral Messenger Rna Synthesis                                                                                                               91
## Vitamin B1 Thiamin Metabolism                                                                                                               91
## Vitamin B2 Riboflavin Metabolism                                                                                                            91
## Vitamin B5 Pantothenate Metabolism                                                                                                          91
## Vitamin C Ascorbate Metabolism                                                                                                              91
## Vitamin D Calciferol Metabolism                                                                                                             91
## Vitamins                                                                                                                                    91
## Vldl Assembly                                                                                                                               91
## Vldl Clearance                                                                                                                              91
## Vldlr Internalisation And Degradation                                                                                                       91
## Voltage Gated Potassium Channels                                                                                                            91
## Vxpx Cargo Targeting To Cilium                                                                                                              91
## Wax And Plasmalogen Biosynthesis                                                                                                            91
## Wnt Mediated Activation Of Dvl                                                                                                              91
## Xenobiotics                                                                                                                                 91
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                               91
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                    91
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                             91
## Zinc Transporters                                                                                                                           91
##                                                                                                                                      geneset
## Cytokine Signaling In Immune System                                                                                                      719
## Signaling By Interleukins                                                                                                                463
## Innate Immune System                                                                                                                    1117
## Interleukin 10 Signaling                                                                                                                  46
## Interleukin 4 And Interleukin 13 Signaling                                                                                               111
## Toll Like Receptor Cascades                                                                                                              155
## Peptide Ligand Binding Receptors                                                                                                         198
## Chemokine Receptors Bind Chemokines                                                                                                       58
## Neutrophil Degranulation                                                                                                                 479
## Interleukin 1 Family Signaling                                                                                                           140
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         94
## Myd88 Independent Tlr4 Cascade                                                                                                            97
## Gpcr Ligand Binding                                                                                                                      463
## Class A 1 Rhodopsin Like Receptors                                                                                                       331
## Signaling By Gpcr                                                                                                                        698
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                     103
## Adaptive Immune System                                                                                                                   825
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  56
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                        101
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     32
## Interleukin 17 Signaling                                                                                                                  71
## G Alpha I Signalling Events                                                                                                              314
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              17
## Death Receptor Signalling                                                                                                                141
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         22
## Programmed Cell Death                                                                                                                    208
## Regulated Necrosis                                                                                                                        56
## Interleukin 1 Signaling                                                                                                                  102
## Purinergic Signaling In Leishmaniasis Infection                                                                                           26
## Interleukin 18 Signaling                                                                                                                   8
## Leishmania Infection                                                                                                                     308
## Tnfs Bind Their Physiological Receptors                                                                                                   29
## Diseases Of Immune System                                                                                                                 31
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                 191
## Costimulation By The Cd28 Family                                                                                                          74
## Nod1 2 Signaling Pathway                                                                                                                  36
## Interleukin 2 Family Signaling                                                                                                            44
## P75ntr Signals Via Nf Kb                                                                                                                  16
## Heme Signaling                                                                                                                            48
## Regulation Of Tlr By Endogenous Ligand                                                                                                    21
## Complement Cascade                                                                                                                       115
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23
## Post Translational Protein Modification                                                                                                 1435
## Pyroptosis                                                                                                                                27
## Deubiquitination                                                                                                                         298
## Ovarian Tumor Domain Proteases                                                                                                            38
## Interleukin 1 Processing                                                                                                                   9
## P75 Ntr Receptor Mediated Signalling                                                                                                      97
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      98
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 10
## Apoptosis                                                                                                                                179
## Dap12 Interactions                                                                                                                        45
## Infectious Disease                                                                                                                       924
## Cd28 Dependent Vav1 Pathway                                                                                                               12
## Cell Surface Interactions At The Vascular Wall                                                                                           194
## Killing Mechanisms                                                                                                                        12
## Nf Kb Is Activated And Signals Survival                                                                                                   13
## P75ntr Recruits Signalling Complexes                                                                                                      13
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   13
## Trafficking And Processing Of Endosomal Tlr                                                                                               13
## Hemostasis                                                                                                                               678
## Interleukin 15 Signaling                                                                                                                  14
## Interleukin 12 Family Signaling                                                                                                           57
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          16
## Sumoylation Of Dna Methylation Proteins                                                                                                   16
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     17
## Foxo Mediated Transcription                                                                                                               66
## Irak4 Deficiency Tlr2 4                                                                                                                   18
## Scavenging By Class A Receptors                                                                                                           19
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              19
## Scavenging Of Heme From Plasma                                                                                                            69
## Circadian Clock                                                                                                                           70
## Ctla4 Inhibitory Signaling                                                                                                                21
## Inflammasomes                                                                                                                             21
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                21
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   81
## Traf6 Mediated Nf Kb Activation                                                                                                           24
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             26
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          27
## G0 And Early G1                                                                                                                           27
## Interleukin Receptor Shc Signaling                                                                                                        27
## Transcriptional Regulation Of Granulopoiesis                                                                                              90
## Pd 1 Signaling                                                                                                                            28
## Ripk1 Mediated Regulated Necrosis                                                                                                         29
## Interferon Gamma Signaling                                                                                                                93
## Mapk6 Mapk4 Signaling                                                                                                                     93
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  30
## Cellular Responses To External Stimuli                                                                                                   706
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       31
## Nicotinate Metabolism                                                                                                                     31
## Perk Regulates Gene Expression                                                                                                            32
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    32
## Clec7a Dectin 1 Signaling                                                                                                                100
## Vesicle Mediated Transport                                                                                                               724
## Cargo Concentration In The Er                                                                                                             33
## Cd28 Co Stimulation                                                                                                                       33
## Diseases Of Programmed Cell Death                                                                                                        102
## Regulation Of Tnfr1 Signaling                                                                                                             35
## Antigen Processing Cross Presentation                                                                                                    106
## Mapk Family Signaling Cascades                                                                                                           327
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        38
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                  124
## Tcr Signaling                                                                                                                            124
## Tnf Signaling                                                                                                                             44
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                44
## Interleukin 12 Signaling                                                                                                                  47
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          48
## Response To Elevated Platelet Cytosolic Ca2                                                                                              132
## Netrin 1 Signaling                                                                                                                        50
## C Type Lectin Receptors Clrs                                                                                                             140
## Rna Polymerase Ii Transcription                                                                                                         1374
## Alternative Complement Activation                                                                                                          5
## Fasl Cd95l Signaling                                                                                                                       5
## G2 M Dna Replication Checkpoint                                                                                                            5
## Galactose Catabolism                                                                                                                       5
## Hdl Clearance                                                                                                                              5
## Intrinsic Pathway For Apoptosis                                                                                                           55
## Mecp2 Regulates Transcription Factors                                                                                                      5
## Nostrin Mediated Enos Trafficking                                                                                                          5
## Platelet Activation Signaling And Aggregation                                                                                            261
## Rhoj Gtpase Cycle                                                                                                                         55
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            5
## Epigenetic Regulation Of Gene Expression                                                                                                 148
## Er To Golgi Anterograde Transport                                                                                                        155
## Rhoq Gtpase Cycle                                                                                                                         59
## Biosynthesis Of Epa Derived Spms                                                                                                           6
## Clec7a Inflammasome Pathway                                                                                                                6
## Fibronectin Matrix Formation                                                                                                               6
## Phosphorylation Of Emi1                                                                                                                    6
## Scavenging By Class B Receptors                                                                                                            6
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          6
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       6
## Tnfr1 Mediated Ceramide Production                                                                                                         6
## Ca2 Pathway                                                                                                                               62
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              63
## Transcriptional Regulation By Mecp2                                                                                                       63
## Dna Methylation                                                                                                                           65
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  7
## Creb Phosphorylation                                                                                                                       7
## Ikba Variant Leads To Eda Id                                                                                                               7
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        7
## Copii Mediated Vesicle Transport                                                                                                          68
## Activation Of C3 And C5                                                                                                                    8
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         8
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               8
## Hdl Assembly                                                                                                                               8
## Inactivation Of Cdc42 And Rac1                                                                                                             8
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          8
## Runx3 Regulates Wnt Signaling                                                                                                              8
## Interferon Alpha Beta Signaling                                                                                                           73
## Prc2 Methylates Histones And Dna                                                                                                          73
## Signaling By Tgf Beta Receptor Complex                                                                                                    73
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               9
## Cd163 Mediating An Anti Inflammatory Response                                                                                              9
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                9
## Extra Nuclear Estrogen Signaling                                                                                                          75
## Interleukin 23 Signaling                                                                                                                   9
## Interleukin 9 Signaling                                                                                                                    9
## Rhog Gtpase Cycle                                                                                                                         74
## Trif Mediated Programmed Cell Death                                                                                                        9
## Sumoylation                                                                                                                              187
## Transport To The Golgi And Subsequent Modification                                                                                       186
## Metabolism Of Vitamins And Cofactors                                                                                                     189
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    10
## Akt Phosphorylates Targets In The Nucleus                                                                                                 10
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  10
## Chylomicron Assembly                                                                                                                      10
## Chylomicron Remodeling                                                                                                                    10
## Hdl Remodeling                                                                                                                            10
## Interleukin 21 Signaling                                                                                                                  10
## Mapk3 Erk1 Activation                                                                                                                     10
## Mastl Facilitates Mitotic Progression                                                                                                     10
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                10
## Initial Triggering Of Complement                                                                                                          80
## Cellular Senescence                                                                                                                      198
## Condensation Of Prometaphase Chromosomes                                                                                                  11
## Dermatan Sulfate Biosynthesis                                                                                                             11
## Dscam Interactions                                                                                                                        11
## Endosomal Vacuolar Pathway                                                                                                                11
## Enos Activation                                                                                                                           11
## Interleukin 27 Signaling                                                                                                                  11
## Interleukin 6 Signaling                                                                                                                   11
## Receptor Mediated Mitophagy                                                                                                               11
## Regulation By C Flip                                                                                                                      11
## Rho Gtpases Activate Ktn1                                                                                                                 11
## Signaling By Leptin                                                                                                                       11
## Sumoylation Of Immune Response Proteins                                                                                                   11
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          11
## Interferon Signaling                                                                                                                     203
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         12
## Interleukin 2 Signaling                                                                                                                   12
## Interleukin 35 Signalling                                                                                                                 12
## Notch2 Intracellular Domain Regulates Transcription                                                                                       12
## Rac2 Gtpase Cycle                                                                                                                         88
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 12
## Signaling By Receptor Tyrosine Kinases                                                                                                   504
## Tandem Pore Domain Potassium Channels                                                                                                     12
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  12
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      13
## Apoptosis Induced Dna Fragmentation                                                                                                       13
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             13
## Dissolution Of Fibrin Clot                                                                                                                13
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            13
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  13
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      13
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     13
## Unfolded Protein Response Upr                                                                                                             92
## Class B 2 Secretin Family Receptors                                                                                                       94
## Rac3 Gtpase Cycle                                                                                                                         94
## Dcc Mediated Attractive Signaling                                                                                                         14
## Early Phase Of Hiv Life Cycle                                                                                                             14
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       14
## Irak1 Recruits Ikk Complex                                                                                                                14
## Repression Of Wnt Target Genes                                                                                                            14
## Antimicrobial Peptides                                                                                                                    97
## Esr Mediated Signaling                                                                                                                   221
## Ub Specific Processing Proteases                                                                                                         221
## Depolymerisation Of The Nuclear Lamina                                                                                                    15
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 15
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  15
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        15
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   15
## Copi Mediated Anterograde Transport                                                                                                      102
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           16
## Nrif Signals Cell Death From The Nucleus                                                                                                  16
## Signaling By Tgfb Family Members                                                                                                         102
## The Nlrp3 Inflammasome                                                                                                                    16
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              16
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      16
## Pi3k Akt Signaling In Cancer                                                                                                             105
## Tcf Dependent Signaling In Response To Wnt                                                                                               234
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      17
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           17
## Signaling By Vegf                                                                                                                        106
## Transcriptional Regulation By Runx1                                                                                                      239
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                         394
## Negative Epigenetic Regulation Of Rrna Expression                                                                                        109
## Abc Transporters In Lipid Homeostasis                                                                                                     18
## Amyloid Fiber Formation                                                                                                                  110
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             18
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          18
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           18
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               18
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    18
## Senescence Associated Secretory Phenotype Sasp                                                                                           112
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   19
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             19
## Negative Regulation Of The Pi3k Akt Network                                                                                              113
## Nicotinamide Salvaging                                                                                                                    19
## Other Semaphorin Interactions                                                                                                             19
## Phase 4 Resting Membrane Potential                                                                                                        19
## Plasma Lipoprotein Assembly                                                                                                               19
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      19
## G Beta Gamma Signalling Through Cdc42                                                                                                     20
## Phosphorylation Of The Apc C                                                                                                              20
## Pka Mediated Phosphorylation Of Creb                                                                                                      20
## Signaling By Kit In Disease                                                                                                               20
## Signaling By Pdgfr In Disease                                                                                                             20
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     20
## Branched Chain Amino Acid Catabolism                                                                                                      21
## Interleukin 37 Signaling                                                                                                                  21
## Rho Gtpases Activate Paks                                                                                                                 21
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         22
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               22
## E2f Mediated Regulation Of Dna Replication                                                                                                22
## Pink1 Prkn Mediated Mitophagy                                                                                                             22
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                       123
## Cytoprotection By Hmox1                                                                                                                  124
## Incretin Synthesis Secretion And Inactivation                                                                                             23
## Mhc Class Ii Antigen Presentation                                                                                                        126
## Raf Independent Mapk1 3 Activation                                                                                                        23
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              24
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    24
## Growth Hormone Receptor Signaling                                                                                                         24
## Interleukin 6 Family Signaling                                                                                                            24
## Triglyceride Catabolism                                                                                                                   24
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  25
## Basigin Interactions                                                                                                                      25
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   25
## Inactivation Of Csf3 G Csf Signaling                                                                                                      25
## Signaling By Ntrks                                                                                                                       134
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             26
## Interleukin 20 Family Signaling                                                                                                           26
## Wnt Ligand Biogenesis And Trafficking                                                                                                     26
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     27
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          28
## Vegfr2 Mediated Vascular Permeability                                                                                                     27
## Activation Of Bh3 Only Proteins                                                                                                           30
## Beta Catenin Independent Wnt Signaling                                                                                                   146
## Dap12 Signaling                                                                                                                           29
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            31
## Downstream Signal Transduction                                                                                                            29
## Egfr Downregulation                                                                                                                       31
## Extracellular Matrix Organization                                                                                                        301
## Fgfr1 Mutant Receptor Activation                                                                                                          31
## G1 S Specific Transcription                                                                                                               29
## Mitophagy                                                                                                                                 29
## Mitotic G1 Phase And G1 S Transition                                                                                                     149
## Myogenesis                                                                                                                                29
## Signaling By Csf3 G Csf                                                                                                                   30
## Signaling By Nuclear Receptors                                                                                                           297
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      31
## Activation Of Matrix Metalloproteinases                                                                                                   33
## Asparagine N Linked Glycosylation                                                                                                        305
## G Protein Beta Gamma Signalling                                                                                                           32
## Intracellular Signaling By Second Messengers                                                                                             307
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              34
## Plasma Lipoprotein Clearance                                                                                                              33
## Plasma Lipoprotein Remodeling                                                                                                             32
## Regulation Of Mecp2 Expression And Activity                                                                                               32
## Rho Gtpases Activate Iqgaps                                                                                                               32
## Rhou Gtpase Cycle                                                                                                                         34
## Rhov Gtpase Cycle                                                                                                                         33
## Signaling By Notch2                                                                                                                       33
## Ca Dependent Events                                                                                                                       37
## Cdc42 Gtpase Cycle                                                                                                                       159
## Cellular Response To Chemical Stress                                                                                                     160
## Gpvi Mediated Activation Cascade                                                                                                          35
## Interleukin 7 Signaling                                                                                                                   36
## Metalloprotease Dubs                                                                                                                      37
## Nuclear Pore Complex Npc Disassembly                                                                                                      36
## Regulation Of Tp53 Expression And Degradation                                                                                             37
## Rho Gtpases Activate Wasps And Waves                                                                                                      36
## Rhoh Gtpase Cycle                                                                                                                         37
## Ros And Rns Production In Phagocytes                                                                                                      36
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          39
## Generation Of Second Messenger Molecules                                                                                                  39
## Ngf Stimulated Transcription                                                                                                              39
## Signaling By Fgfr1 In Disease                                                                                                             38
## Signaling By Wnt                                                                                                                         331
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              38
## Triglyceride Metabolism                                                                                                                   38
## Beta Defensins                                                                                                                            42
## Dag And Ip3 Signaling                                                                                                                     41
## Ephb Mediated Forward Signaling                                                                                                           42
## Rhof Gtpase Cycle                                                                                                                         42
## Rnd1 Gtpase Cycle                                                                                                                         42
## Rnd2 Gtpase Cycle                                                                                                                         43
## Rnd3 Gtpase Cycle                                                                                                                         42
## Signaling By Scf Kit                                                                                                                      43
## Developmental Biology                                                                                                                   1143
## Fc Epsilon Receptor Fceri Signaling                                                                                                      186
## Rac1 Gtpase Cycle                                                                                                                        184
## Irs Mediated Signalling                                                                                                                   48
## Metabolism Of Fat Soluble Vitamins                                                                                                        48
## Notch1 Intracellular Domain Regulates Transcription                                                                                       48
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          49
## Apoptotic Execution Phase                                                                                                                 52
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           50
## Class I Mhc Mediated Antigen Processing Presentation                                                                                     377
## Defensins                                                                                                                                 52
## Rhod Gtpase Cycle                                                                                                                         51
## Signaling By Egfr                                                                                                                         50
## G Protein Mediated Events                                                                                                                 54
## Insulin Receptor Signalling Cascade                                                                                                       54
## Nervous System Development                                                                                                               580
## Nuclear Envelope Breakdown                                                                                                                53
## Signaling By Ptk6                                                                                                                         54
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           54
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    55
## G Alpha Q Signalling Events                                                                                                              216
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         58
## Signaling By Pdgf                                                                                                                         58
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                       223
## Arachidonic Acid Metabolism                                                                                                               59
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            62
## Nrage Signals Death Through Jnk                                                                                                           59
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 61
## Asymmetric Localization Of Pcp Proteins                                                                                                   64
## Collagen Degradation                                                                                                                      64
## Ncam Signaling For Neurite Out Growth                                                                                                     63
## Semaphorin Interactions                                                                                                                   64
## Signaling By Fgfr In Disease                                                                                                              63
## Membrane Trafficking                                                                                                                     629
## Sirt1 Negatively Regulates Rrna Expression                                                                                                68
## Aurka Activation By Tpx2                                                                                                                  72
## Creation Of C4 And C2 Activators                                                                                                          71
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      71
## Rhob Gtpase Cycle                                                                                                                         70
## Condensation Of Prophase Chromosomes                                                                                                      74
## Rhoc Gtpase Cycle                                                                                                                         74
## Signaling By Notch                                                                                                                       247
## Signaling By Notch1                                                                                                                       74
## Abc Transporter Disorders                                                                                                                 77
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             76
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         78
## Dna Double Strand Break Response                                                                                                          78
## Ecm Proteoglycans                                                                                                                         76
## Nuclear Envelope Ne Reassembly                                                                                                            76
## Rmts Methylate Histone Arginines                                                                                                          79
## Signaling By Insulin Receptor                                                                                                             78
## Signaling By Met                                                                                                                          79
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 79
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        81
## Potential Therapeutics For Sars                                                                                                           81
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  81
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           82
## Selective Autophagy                                                                                                                       82
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          85
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    85
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             84
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         88
## Fceri Mediated Mapk Activation                                                                                                            87
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            87
## Eph Ephrin Signaling                                                                                                                      92
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 92
## Opioid Signalling                                                                                                                         90
## Pcp Ce Pathway                                                                                                                            92
## Peptide Hormone Metabolism                                                                                                                90
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      94
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        97
## Fcgr3a Mediated Il10 Synthesis                                                                                                            95
## G2 M Dna Damage Checkpoint                                                                                                                95
## Metabolism Of Carbohydrates                                                                                                              293
## Mitochondrial Biogenesis                                                                                                                  94
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        94
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                95
## Transcriptional Regulation By Runx3                                                                                                       96
## Organelle Biogenesis And Maintenance                                                                                                     296
## Protein Folding                                                                                                                           98
## Visual Phototransduction                                                                                                                 100
## Abc Family Proteins Mediated Transport                                                                                                   103
## Cellular Response To Heat Stress                                                                                                         101
## Potassium Channels                                                                                                                       103
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                      105
## Parasite Infection                                                                                                                       116
## Regulation Of Lipid Metabolism By Pparalpha                                                                                              120
## Transcriptional Regulation By Runx2                                                                                                      120
## Glycosaminoglycan Metabolism                                                                                                             124
## Cardiac Conduction                                                                                                                       127
## Oxidative Stress Induced Senescence                                                                                                      126
## Resolution Of Sister Chromatid Cohesion                                                                                                  126
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                  133
## Fceri Mediated Nf Kb Activation                                                                                                          136
## Degradation Of The Extracellular Matrix                                                                                                  140
## Hcmv Early Events                                                                                                                        138
## Rho Gtpases Activate Formins                                                                                                             140
## Clathrin Mediated Endocytosis                                                                                                            145
## Diseases Of Glycosylation                                                                                                                143
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                             143
## Mitotic Prophase                                                                                                                         143
## Sars Cov Infections                                                                                                                      146
## Autophagy                                                                                                                                151
## Estrogen Dependent Gene Expression                                                                                                       150
## Hiv Life Cycle                                                                                                                           149
## Rhoa Gtpase Cycle                                                                                                                        149
## Regulation Of Tp53 Activity                                                                                                              160
## Hcmv Infection                                                                                                                           162
## Neuronal System                                                                                                                          410
## S Phase                                                                                                                                  162
## Dna Double Strand Break Repair                                                                                                           167
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                    170
## G2 M Checkpoints                                                                                                                         168
## Signaling By The B Cell Receptor Bcr                                                                                                     166
## Disorders Of Transmembrane Transporters                                                                                                  176
## Fatty Acid Metabolism                                                                                                                    177
## Rho Gtpase Cycle                                                                                                                         444
## Muscle Contraction                                                                                                                       195
## Mitotic G2 G2 M Phases                                                                                                                   200
## Cilium Assembly                                                                                                                          202
## Metabolism Of Lipids                                                                                                                     741
## Mitotic Prometaphase                                                                                                                     203
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                          205
## Signaling By Robo Receptors                                                                                                              218
## Hiv Infection                                                                                                                            231
## Mitotic Metaphase And Anaphase                                                                                                           236
## Diseases Of Metabolism                                                                                                                   246
## Cell Cycle Mitotic                                                                                                                       561
## Transmission Across Chemical Synapses                                                                                                    269
## Chromatin Modifying Enzymes                                                                                                              274
## Cell Cycle Checkpoints                                                                                                                   292
## Rho Gtpase Effectors                                                                                                                     324
## Dna Repair                                                                                                                               332
## Cell Cycle                                                                                                                               693
## Transcriptional Regulation By Tp53                                                                                                       363
## Metabolism Of Amino Acids And Derivatives                                                                                                374
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                        717
## M Phase                                                                                                                                  417
## Sensory Perception                                                                                                                       575
## Transport Of Small Molecules                                                                                                             728
## 2 Ltr Circle Formation                                                                                                                     7
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           26
## Abacavir Metabolism                                                                                                                        5
## Abacavir Transmembrane Transport                                                                                                           5
## Abacavir Transport And Metabolism                                                                                                         10
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          20
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               17
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23
## Acetylcholine Binding And Downstream Events                                                                                               14
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     5
## Acetylcholine Neurotransmitter Release Cycle                                                                                              17
## Acetylcholine Regulates Insulin Secretion                                                                                                 10
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        6
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          31
## Activated Ntrk2 Signals Through Cdk5                                                                                                       6
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             11
## Activated Ntrk2 Signals Through Fyn                                                                                                        7
## Activated Ntrk2 Signals Through Pi3k                                                                                                       7
## Activated Ntrk2 Signals Through Ras                                                                                                        9
## Activated Ntrk3 Signals Through Pi3k                                                                                                       6
## Activated Ntrk3 Signals Through Ras                                                                                                        8
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             67
## Activation Of Ampk Downstream Of Nmdars                                                                                                   29
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                     122
## Activation Of Atr In Response To Replication Stress                                                                                       37
## Activation Of Bad And Translocation To Mitochondria                                                                                       15
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                6
## Activation Of Gene Expression By Srebf Srebp                                                                                              42
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    30
## Activation Of Noxa And Translocation To Mitochondria                                                                                       5
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      10
## Activation Of Puma And Translocation To Mitochondria                                                                                       9
## Activation Of Rac1                                                                                                                        13
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    7
## Activation Of Ras In B Cells                                                                                                               5
## Activation Of Smo                                                                                                                         18
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     60
## Activation Of The Phototransduction Cascade                                                                                               11
## Activation Of The Pre Replicative Complex                                                                                                 33
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              12
## Activation Of Trka Receptors                                                                                                               6
## Acyl Chain Remodeling Of Cl                                                                                                                6
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       7
## Acyl Chain Remodelling Of Pc                                                                                                              27
## Acyl Chain Remodelling Of Pe                                                                                                              29
## Acyl Chain Remodelling Of Pg                                                                                                              18
## Acyl Chain Remodelling Of Pi                                                                                                              17
## Acyl Chain Remodelling Of Ps                                                                                                              22
## Adenylate Cyclase Activating Pathway                                                                                                      10
## Adenylate Cyclase Inhibitory Pathway                                                                                                      14
## Adherens Junctions Interactions                                                                                                           33
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 25
## Adp Signalling Through P2y Purinoceptor 12                                                                                                22
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       28
## Adrenoceptors                                                                                                                              9
## Aflatoxin Activation And Detoxification                                                                                                   19
## Aggrephagy                                                                                                                                44
## Akt Phosphorylates Targets In The Cytosol                                                                                                 14
## Alpha Defensins                                                                                                                           10
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                13
## Alpha Oxidation Of Phytanate                                                                                                               6
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  11
## Amine Ligand Binding Receptors                                                                                                            42
## Amino Acid Conjugation                                                                                                                     9
## Amino Acid Transport Across The Plasma Membrane                                                                                           33
## Amino Acids Regulate Mtorc1                                                                                                               55
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   8
## Anchoring Fibril Formation                                                                                                                15
## Androgen Biosynthesis                                                                                                                     11
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          86
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                 308
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               82
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  74
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   26
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     7
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            5
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              11
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   38
## Apoptotic Factor Mediated Response                                                                                                        20
## Aquaporin Mediated Transport                                                                                                              52
## Arachidonate Production From Dag                                                                                                           5
## Arms Mediated Activation                                                                                                                   7
## Aryl Hydrocarbon Receptor Signalling                                                                                                       8
## Aspartate And Asparagine Metabolism                                                                                                       11
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  44
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          19
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              61
## Assembly Of The Hiv Virion                                                                                                                16
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   6
## Assembly Of The Pre Replicative Complex                                                                                                   68
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 10
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      12
## Attachment And Entry                                                                                                                       5
## Attachment Of Gpi Anchor To Upar                                                                                                           7
## Attenuation Phase                                                                                                                         28
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 55
## B Wich Complex Positively Regulates Rrna Expression                                                                                       91
## Base Excision Repair                                                                                                                      91
## Base Excision Repair Ap Site Formation                                                                                                    63
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23
## Beta Catenin Phosphorylation Cascade                                                                                                      17
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               5
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         6
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             5
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          5
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             5
## Beta Oxidation Of Pristanoyl Coa                                                                                                           9
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             11
## Bicarbonate Transporters                                                                                                                  10
## Bile Acid And Bile Salt Metabolism                                                                                                        43
## Biological Oxidations                                                                                                                    222
## Biosynthesis Of Maresin Like Spms                                                                                                          6
## Biosynthesis Of Maresins                                                                                                                   8
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        78
## Biotin Transport And Metabolism                                                                                                           11
## Blood Group Systems Biosynthesis                                                                                                          21
## Budding And Maturation Of Hiv Virion                                                                                                      28
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               17
## Butyrophilin Btn Family Interactions                                                                                                      12
## Ca2 Activated K Channels                                                                                                                   9
## Calcineurin Activates Nfat                                                                                                                 9
## Calcitonin Like Ligand Receptors                                                                                                          10
## Calnexin Calreticulin Cycle                                                                                                               26
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               46
## Cargo Trafficking To The Periciliary Membrane                                                                                             51
## Carnitine Metabolism                                                                                                                      14
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      10
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        12
## Cation Coupled Chloride Cotransporters                                                                                                     7
## Cd209 Dc Sign Signaling                                                                                                                   21
## Cd22 Mediated Bcr Regulation                                                                                                              61
## Cdc6 Association With The Orc Origin Complex                                                                                              11
## Cell Cell Communication                                                                                                                  130
## Cell Cell Junction Organization                                                                                                           65
## Cell Extracellular Matrix Interactions                                                                                                    18
## Cell Junction Organization                                                                                                                92
## Cellular Hexose Transport                                                                                                                 21
## Cellular Response To Hypoxia                                                                                                              75
## Cellular Response To Starvation                                                                                                          157
## Cgmp Effects                                                                                                                              16
## Chaperone Mediated Autophagy                                                                                                              22
## Chl1 Interactions                                                                                                                          9
## Cholesterol Biosynthesis                                                                                                                  25
## Choline Catabolism                                                                                                                         6
## Chondroitin Sulfate Biosynthesis                                                                                                          20
## Chrebp Activates Metabolic Gene Expression                                                                                                 8
## Chromosome Maintenance                                                                                                                   140
## Chylomicron Clearance                                                                                                                      5
## Citric Acid Cycle Tca Cycle                                                                                                               22
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      39
## Class I Peroxisomal Membrane Protein Import                                                                                               20
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   11
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        21
## Coenzyme A Biosynthesis                                                                                                                    8
## Cohesin Loading Onto Chromatin                                                                                                            10
## Collagen Biosynthesis And Modifying Enzymes                                                                                               67
## Collagen Chain Trimerization                                                                                                              44
## Collagen Formation                                                                                                                        90
## Common Pathway Of Fibrin Clot Formation                                                                                                   22
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 8
## Complex I Biogenesis                                                                                                                      57
## Conjugation Of Benzoate With Glycine                                                                                                       6
## Constitutive Signaling By Egfrviii                                                                                                        15
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          19
## Constitutive Signaling By Overexpressed Erbb2                                                                                             11
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                20
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          38
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        33
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                            100
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           53
## Creatine Metabolism                                                                                                                       11
## Creb3 Factors Activate Genes                                                                                                               9
## Cristae Formation                                                                                                                         31
## Crmps In Sema3a Signaling                                                                                                                 16
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            8
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                50
## Crosslinking Of Collagen Fibrils                                                                                                          18
## Cs Ds Degradation                                                                                                                         14
## Cyclin D Associated Events In G1                                                                                                          47
## Cyp2e1 Reactions                                                                                                                          11
## Cytochrome C Mediated Apoptotic Response                                                                                                  13
## Cytochrome P450 Arranged By Substrate Type                                                                                                66
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    13
## Cytosolic Sulfonation Of Small Molecules                                                                                                  24
## Cytosolic Trna Aminoacylation                                                                                                             24
## Darpp 32 Events                                                                                                                           24
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  42
## Deadenylation Dependent Mrna Decay                                                                                                        56
## Deadenylation Of Mrna                                                                                                                     25
## Dectin 2 Family                                                                                                                           26
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                8
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               20
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             17
## Defective Cftr Causes Cystic Fibrosis                                                                                                     61
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       8
## Defective Chst3 Causes Sedcjd                                                                                                              8
## Defective Chst6 Causes Mcdc1                                                                                                               8
## Defective Chsy1 Causes Tpbs                                                                                                                8
## Defective Csf2rb Causes Smdp5                                                                                                              8
## Defective Ext2 Causes Exostoses 2                                                                                                         14
## Defective F9 Activation                                                                                                                    6
## Defective Factor Ix Causes Hemophilia B                                                                                                    9
## Defective Factor Viii Causes Hemophilia A                                                                                                  7
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                16
## Defective Lfng Causes Scdo3                                                                                                                5
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                5
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  8
## Defects In Biotin Btn Metabolism                                                                                                           8
## Defects In Cobalamin B12 Metabolism                                                                                                       14
## Defects In Vitamin And Cofactor Metabolism                                                                                                22
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  16
## Degradation Of Axin                                                                                                                       55
## Degradation Of Cysteine And Homocysteine                                                                                                  14
## Degradation Of Dvl                                                                                                                        57
## Degradation Of Gli1 By The Proteasome                                                                                                     60
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          73
## Detoxification Of Reactive Oxygen Species                                                                                                 37
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              7
## Digestion                                                                                                                                 23
## Digestion And Absorption                                                                                                                  28
## Digestion Of Dietary Carbohydrate                                                                                                         11
## Digestion Of Dietary Lipid                                                                                                                 7
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     41
## Diseases Associated With N Glycosylation Of Proteins                                                                                      17
## Diseases Associated With O Glycosylation Of Proteins                                                                                      68
## Diseases Associated With Surfactant Metabolism                                                                                            10
## Diseases Of Base Excision Repair                                                                                                           5
## Diseases Of Carbohydrate Metabolism                                                                                                       34
## Diseases Of Dna Repair                                                                                                                    12
## Diseases Of Mismatch Repair Mmr                                                                                                            5
## Diseases Of Mitotic Cell Cycle                                                                                                            38
## Disinhibition Of Snare Formation                                                                                                           5
## Displacement Of Dna Glycosylase By Apex1                                                                                                   9
## Dna Damage Bypass                                                                                                                         48
## Dna Damage Recognition In Gg Ner                                                                                                          38
## Dna Damage Reversal                                                                                                                        8
## Dna Damage Telomere Stress Induced Senescence                                                                                             80
## Dna Replication                                                                                                                          128
## Dna Replication Initiation                                                                                                                 8
## Dna Replication Pre Initiation                                                                                                            85
## Dna Strand Elongation                                                                                                                     32
## Dopamine Neurotransmitter Release Cycle                                                                                                   23
## Dopamine Receptors                                                                                                                         5
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   13
## Downregulation Of Erbb2 Signaling                                                                                                         29
## Downregulation Of Erbb4 Signaling                                                                                                          9
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             26
## Downstream Signaling Of Activated Fgfr1                                                                                                   31
## Downstream Signaling Of Activated Fgfr2                                                                                                   30
## Downstream Signaling Of Activated Fgfr3                                                                                                   25
## Downstream Signaling Of Activated Fgfr4                                                                                                   27
## Dual Incision In Gg Ner                                                                                                                   41
## Dual Incision In Tc Ner                                                                                                                   65
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         59
## Effects Of Pip2 Hydrolysis                                                                                                                27
## Egfr Interacts With Phospholipase C Gamma                                                                                                  9
## Egfr Transactivation By Gastrin                                                                                                            9
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            29
## Eicosanoid Ligand Binding Receptors                                                                                                       15
## Eicosanoids                                                                                                                               12
## Elastic Fibre Formation                                                                                                                   45
## Electric Transmission Across Gap Junctions                                                                                                 5
## Elevation Of Cytosolic Ca2 Levels                                                                                                         16
## Endogenous Sterols                                                                                                                        28
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    31
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          29
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    51
## Epha Mediated Growth Cone Collapse                                                                                                        29
## Ephrin Signaling                                                                                                                          19
## Er Quality Control Compartment Erqc                                                                                                       21
## Erbb2 Activates Ptk6 Signaling                                                                                                            13
## Erbb2 Regulates Cell Motility                                                                                                             15
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               76
## Erk Mapk Targets                                                                                                                          22
## Erks Are Inactivated                                                                                                                      13
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    13
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     9
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   12
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        7
## Erythropoietin Activates Ras                                                                                                              14
## Erythropoietin Activates Stat5                                                                                                             7
## Establishment Of Sister Chromatid Cohesion                                                                                                11
## Estrogen Biosynthesis                                                                                                                      6
## Estrogen Stimulated Signaling Through Prkcz                                                                                                6
## Ethanol Oxidation                                                                                                                         12
## Eukaryotic Translation Elongation                                                                                                         94
## Eukaryotic Translation Initiation                                                                                                        120
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           33
## Extension Of Telomeres                                                                                                                    51
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 5
## Fanconi Anemia Pathway                                                                                                                    39
## Fatty Acids                                                                                                                               15
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                8
## Fatty Acyl Coa Biosynthesis                                                                                                               37
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         5
## Fceri Mediated Ca 2 Mobilization                                                                                                          86
## Fcgr Activation                                                                                                                           69
## Fertilization                                                                                                                             26
## Fgfr1 Ligand Binding And Activation                                                                                                       16
## Fgfr1b Ligand Binding And Activation                                                                                                       6
## Fgfr1c Ligand Binding And Activation                                                                                                      12
## Fgfr2 Alternative Splicing                                                                                                                27
## Fgfr2 Ligand Binding And Activation                                                                                                       20
## Fgfr2 Mutant Receptor Activation                                                                                                          33
## Fgfr2b Ligand Binding And Activation                                                                                                      10
## Fgfr2c Ligand Binding And Activation                                                                                                      13
## Fgfr3 Ligand Binding And Activation                                                                                                       13
## Fgfr3b Ligand Binding And Activation                                                                                                       7
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      13
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             5
## Flt3 Signaling                                                                                                                            38
## Flt3 Signaling By Cbl Mutants                                                                                                              7
## Flt3 Signaling In Disease                                                                                                                 28
## Flt3 Signaling Through Src Family Kinases                                                                                                  6
## Folding Of Actin By Cct Tric                                                                                                              10
## Formation Of Apoptosome                                                                                                                   11
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 18
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 39
## Formation Of Incision Complex In Gg Ner                                                                                                   43
## Formation Of Rna Pol Ii Elongation Complex                                                                                                58
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              17
## Formation Of Tc Ner Pre Incision Complex                                                                                                  53
## Formation Of The Cornified Envelope                                                                                                      129
## Formation Of The Early Elongation Complex                                                                                                 33
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    26
## Formation Of Xylulose 5 Phosphate                                                                                                          5
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       8
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              30
## Free Fatty Acid Receptors                                                                                                                  5
## Free Fatty Acids Regulate Insulin Secretion                                                                                               11
## Frs Mediated Fgfr1 Signaling                                                                                                              23
## Frs Mediated Fgfr2 Signaling                                                                                                              25
## Frs Mediated Fgfr3 Signaling                                                                                                              20
## Frs Mediated Fgfr4 Signaling                                                                                                              22
## Fructose Catabolism                                                                                                                        5
## Fructose Metabolism                                                                                                                        7
## G Alpha 12 13 Signalling Events                                                                                                           80
## G Alpha S Signalling Events                                                                                                              144
## G Alpha Z Signalling Events                                                                                                               48
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 25
## G Protein Activation                                                                                                                      24
## G1 S Dna Damage Checkpoints                                                                                                               68
## G2 Phase                                                                                                                                   5
## Gab1 Signalosome                                                                                                                          17
## Gaba B Receptor Activation                                                                                                                43
## Gaba Receptor Activation                                                                                                                  60
## Gaba Synthesis Release Reuptake And Degradation                                                                                           19
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       42
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     11
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   25
## Gap Junction Assembly                                                                                                                     38
## Gap Junction Degradation                                                                                                                  12
## Gap Junction Trafficking And Regulation                                                                                                   51
## Gdp Fucose Biosynthesis                                                                                                                    6
## Gene Silencing By Rna                                                                                                                    140
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                7
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           84
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  42
## Glucagon Signaling In Metabolic Regulation                                                                                                33
## Glucagon Type Ligand Receptors                                                                                                            33
## Glucocorticoid Biosynthesis                                                                                                               10
## Gluconeogenesis                                                                                                                           34
## Glucose Metabolism                                                                                                                        92
## Glucuronidation                                                                                                                           25
## Glutamate And Glutamine Metabolism                                                                                                        14
## Glutamate Neurotransmitter Release Cycle                                                                                                  24
## Glutathione Conjugation                                                                                                                   36
## Glutathione Synthesis And Recycling                                                                                                       12
## Glycerophospholipid Biosynthesis                                                                                                         128
## Glycerophospholipid Catabolism                                                                                                             7
## Glycogen Breakdown Glycogenolysis                                                                                                         15
## Glycogen Metabolism                                                                                                                       27
## Glycogen Storage Diseases                                                                                                                 16
## Glycogen Synthesis                                                                                                                        16
## Glycolysis                                                                                                                                72
## Glycosphingolipid Metabolism                                                                                                              45
## Glyoxylate Metabolism And Glycine Degradation                                                                                             31
## Golgi Associated Vesicle Biogenesis                                                                                                       56
## Golgi To Er Retrograde Transport                                                                                                         134
## Gp1b Ix V Activation Signalling                                                                                                           12
## Grb2 Events In Erbb2 Signaling                                                                                                            16
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 15
## Grb7 Events In Erbb2 Signaling                                                                                                             5
## Hats Acetylate Histones                                                                                                                  142
## Hcmv Late Events                                                                                                                         116
## Hdacs Deacetylate Histones                                                                                                                94
## Hdms Demethylate Histones                                                                                                                 50
## Hdr Through Homologous Recombination Hrr                                                                                                  67
## Hdr Through Mmej Alt Nhej                                                                                                                 10
## Hdr Through Single Strand Annealing Ssa                                                                                                   37
## Hedgehog Ligand Biogenesis                                                                                                                65
## Hedgehog Off State                                                                                                                       113
## Hedgehog On State                                                                                                                         86
## Heme Biosynthesis                                                                                                                         14
## Heme Degradation                                                                                                                          15
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 55
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 9
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   11
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     7
## Histidine Catabolism                                                                                                                       8
## Hiv Elongation Arrest And Recovery                                                                                                        33
## Hiv Transcription Elongation                                                                                                              43
## Hiv Transcription Initiation                                                                                                              47
## Homologous Dna Pairing And Strand Exchange                                                                                                42
## Homology Directed Repair                                                                                                                 138
## Hormone Ligand Binding Receptors                                                                                                          12
## Host Interactions Of Hiv Factors                                                                                                         131
## Hs Gag Biosynthesis                                                                                                                       31
## Hs Gag Degradation                                                                                                                        22
## Hsf1 Activation                                                                                                                           31
## Hsf1 Dependent Transactivation                                                                                                            38
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   57
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       8
## Hyaluronan Biosynthesis And Export                                                                                                         5
## Hyaluronan Metabolism                                                                                                                     17
## Hyaluronan Uptake And Degradation                                                                                                         12
## Hydrolysis Of Lpc                                                                                                                          9
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           17
## Infection With Mycobacterium Tuberculosis                                                                                                 27
## Influenza Infection                                                                                                                      157
## Inhibition Of Dna Recombination At Telomere                                                                                               68
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           13
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               21
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              9
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              15
## Inositol Phosphate Metabolism                                                                                                             48
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               22
## Insulin Processing                                                                                                                        27
## Insulin Receptor Recycling                                                                                                                26
## Integration Of Energy Metabolism                                                                                                         108
## Integration Of Provirus                                                                                                                    9
## Integrin Cell Surface Interactions                                                                                                        85
## Integrin Signaling                                                                                                                        27
## Interaction Between L1 And Ankyrins                                                                                                       31
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     11
## Interactions Of Rev With Host Cellular Proteins                                                                                           37
## Interactions Of Vpr With Host Cellular Proteins                                                                                           37
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        29
## Interleukin 36 Pathway                                                                                                                     7
## Intestinal Absorption                                                                                                                      5
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                           203
## Intra Golgi Traffic                                                                                                                       44
## Intraflagellar Transport                                                                                                                  54
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23
## Inwardly Rectifying K Channels                                                                                                            35
## Ion Channel Transport                                                                                                                    183
## Ion Homeostasis                                                                                                                           54
## Ion Transport By P Type Atpases                                                                                                           55
## Ionotropic Activity Of Kainate Receptors                                                                                                  10
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 10
## Ire1alpha Activates Chaperones                                                                                                            50
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     5
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     13
## Iron Uptake And Transport                                                                                                                 58
## Irs Activation                                                                                                                             5
## Josephin Domain Dubs                                                                                                                      12
## Keratan Sulfate Biosynthesis                                                                                                              28
## Keratan Sulfate Degradation                                                                                                               13
## Keratan Sulfate Keratin Metabolism                                                                                                        34
## Keratinization                                                                                                                           217
## Ketone Body Metabolism                                                                                                                    10
## Kinesins                                                                                                                                  61
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    17
## L1cam Interactions                                                                                                                       121
## Lagging Strand Synthesis                                                                                                                  20
## Laminin Interactions                                                                                                                      30
## Late Endosomal Microautophagy                                                                                                             34
## Ldl Clearance                                                                                                                             19
## Lectin Pathway Of Complement Activation                                                                                                    8
## Leukotriene Receptors                                                                                                                      5
## Lgi Adam Interactions                                                                                                                     14
## Ligand Receptor Interactions                                                                                                               8
## Linoleic Acid La Metabolism                                                                                                                8
## Lipid Particle Organization                                                                                                                6
## Lipophagy                                                                                                                                  9
## Listeria Monocytogenes Entry Into Host Cells                                                                                              20
## Long Term Potentiation                                                                                                                    23
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                13
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      7
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     7
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     5
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        7
## Lysine Catabolism                                                                                                                         12
## Lysosome Vesicle Biogenesis                                                                                                               35
## Lysosphingolipid And Lpa Receptors                                                                                                        14
## Map2k And Mapk Activation                                                                                                                 40
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  16
## Mapk1 Erk2 Activation                                                                                                                      9
## Maturation Of Nucleoprotein                                                                                                               10
## Maturation Of Protein 3a                                                                                                                   9
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     5
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    29
## Meiosis                                                                                                                                  119
## Meiotic Recombination                                                                                                                     87
## Meiotic Synapsis                                                                                                                          79
## Melanin Biosynthesis                                                                                                                       5
## Met Activates Pi3k Akt Signaling                                                                                                           6
## Met Activates Ptk2 Signaling                                                                                                              30
## Met Activates Ptpn11                                                                                                                       5
## Met Activates Rap1 And Rac1                                                                                                               11
## Met Activates Ras Signaling                                                                                                               11
## Met Interacts With Tns Proteins                                                                                                            5
## Met Promotes Cell Motility                                                                                                                41
## Met Receptor Activation                                                                                                                    6
## Met Receptor Recycling                                                                                                                    10
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       34
## Metabolism Of Amine Derived Hormones                                                                                                      18
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             18
## Metabolism Of Cofactors                                                                                                                   19
## Metabolism Of Folate And Pterines                                                                                                         17
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           8
## Metabolism Of Nucleotides                                                                                                                 98
## Metabolism Of Polyamines                                                                                                                  59
## Metabolism Of Porphyrins                                                                                                                  27
## Metabolism Of Rna                                                                                                                        672
## Metabolism Of Steroid Hormones                                                                                                            35
## Metabolism Of Steroids                                                                                                                   151
## Metal Ion Slc Transporters                                                                                                                26
## Metal Sequestration By Antimicrobial Proteins                                                                                              6
## Metallothioneins Bind Metals                                                                                                              11
## Methionine Salvage Pathway                                                                                                                 6
## Methylation                                                                                                                               14
## Microrna Mirna Biogenesis                                                                                                                 25
## Mineralocorticoid Biosynthesis                                                                                                             6
## Miro Gtpase Cycle                                                                                                                          8
## Miscellaneous Substrates                                                                                                                  12
## Miscellaneous Transport And Binding Events                                                                                                26
## Mismatch Repair                                                                                                                           15
## Mitochondrial Calcium Ion Transport                                                                                                       23
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   37
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          11
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         6
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              13
## Mitochondrial Protein Import                                                                                                              65
## Mitochondrial Translation                                                                                                                 96
## Mitochondrial Trna Aminoacylation                                                                                                         21
## Mitochondrial Uncoupling                                                                                                                   6
## Mitotic Spindle Checkpoint                                                                                                               111
## Mitotic Telophase Cytokinesis                                                                                                             13
## Modulation By Mtb Of Host Immune System                                                                                                    7
## Molecules Associated With Elastic Fibres                                                                                                  38
## Molybdenum Cofactor Biosynthesis                                                                                                           6
## Mrna Capping                                                                                                                              29
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      16
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      15
## Mrna Editing                                                                                                                              10
## Mrna Editing C To U Conversion                                                                                                             8
## Mrna Splicing                                                                                                                            188
## Mrna Splicing Minor Pathway                                                                                                               52
## Mtor Signalling                                                                                                                           41
## Mtorc1 Mediated Signalling                                                                                                                24
## Mucopolysaccharidoses                                                                                                                     11
## Multifunctional Anion Exchangers                                                                                                           9
## Muscarinic Acetylcholine Receptors                                                                                                         5
## Myoclonic Epilepsy Of Lafora                                                                                                               9
## N Glycan Antennae Elongation                                                                                                              15
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    26
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          5
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               35
## Na Cl Dependent Neurotransmitter Transporters                                                                                             19
## Nade Modulates Death Signalling                                                                                                            6
## Ncam1 Interactions                                                                                                                        42
## Nectin Necl Trans Heterodimerization                                                                                                       7
## Neddylation                                                                                                                              234
## Nef And Signal Transduction                                                                                                                8
## Nef Mediated Cd4 Down Regulation                                                                                                           9
## Nef Mediated Cd8 Down Regulation                                                                                                           7
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                10
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            21
## Negative Feedback Regulation Of Mapk Pathway                                                                                               6
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                10
## Negative Regulation Of Fgfr1 Signaling                                                                                                    33
## Negative Regulation Of Fgfr2 Signaling                                                                                                    34
## Negative Regulation Of Fgfr3 Signaling                                                                                                    29
## Negative Regulation Of Fgfr4 Signaling                                                                                                    31
## Negative Regulation Of Flt3                                                                                                               15
## Negative Regulation Of Mapk Pathway                                                                                                       43
## Negative Regulation Of Met Activity                                                                                                       21
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       21
## Negative Regulation Of Notch4 Signaling                                                                                                   54
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 5
## Nephrin Family Interactions                                                                                                               23
## Netrin Mediated Repulsion Signals                                                                                                          8
## Neurexins And Neuroligins                                                                                                                 56
## Neurofascin Interactions                                                                                                                   7
## Neurotoxicity Of Clostridium Toxins                                                                                                       10
## Neurotransmitter Clearance                                                                                                                10
## Neurotransmitter Release Cycle                                                                                                            51
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  12
## Ngf Independant Trka Activation                                                                                                            5
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 22
## Non Integrin Membrane Ecm Interactions                                                                                                    59
## Noncanonical Activation Of Notch3                                                                                                          8
## Nonhomologous End Joining Nhej                                                                                                            69
## Nonsense Mediated Decay Nmd                                                                                                              116
## Norepinephrine Neurotransmitter Release Cycle                                                                                             18
## Notch Hlh Transcription Pathway                                                                                                           28
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               22
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               25
## Notch3 Intracellular Domain Regulates Transcription                                                                                       25
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               11
## Notch4 Intracellular Domain Regulates Transcription                                                                                       20
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        47
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             5
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 9
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           5
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      9
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           5
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           37
## Nrcam Interactions                                                                                                                         7
## Ns1 Mediated Effects On Host Pathways                                                                                                     41
## Ntrk2 Activates Rac1                                                                                                                       5
## Nuclear Import Of Rev Protein                                                                                                             34
## Nuclear Receptor Transcription Pathway                                                                                                    53
## Nuclear Signaling By Erbb4                                                                                                                32
## Nucleobase Biosynthesis                                                                                                                   15
## Nucleobase Catabolism                                                                                                                     35
## Nucleotide Excision Repair                                                                                                               110
## Nucleotide Like Purinergic Receptors                                                                                                      16
## Nucleotide Salvage                                                                                                                        23
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         39
## O Linked Glycosylation                                                                                                                   111
## O Linked Glycosylation Of Mucins                                                                                                          62
## Oas Antiviral Response                                                                                                                     9
## Olfactory Signaling Pathway                                                                                                              400
## Oncogene Induced Senescence                                                                                                               35
## Oncogenic Mapk Signaling                                                                                                                  82
## Opsins                                                                                                                                     9
## Orc1 Removal From Chromatin                                                                                                               71
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    8
## Organic Anion Transport                                                                                                                    5
## Organic Anion Transporters                                                                                                                10
## Organic Cation Anion Zwitterion Transport                                                                                                 15
## Organic Cation Transport                                                                                                                  10
## Other Interleukin Signaling                                                                                                               24
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           15
## P2y Receptors                                                                                                                             12
## P38mapk Events                                                                                                                            13
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             6
## P75ntr Regulates Axonogenesis                                                                                                             10
## Passive Transport By Aquaporins                                                                                                           13
## Pcna Dependent Long Patch Base Excision Repair                                                                                            21
## Pecam1 Interactions                                                                                                                       12
## Pentose Phosphate Pathway                                                                                                                 15
## Peptide Hormone Biosynthesis                                                                                                              14
## Peroxisomal Lipid Metabolism                                                                                                              29
## Peroxisomal Protein Import                                                                                                                63
## Pexophagy                                                                                                                                 11
## Phase 0 Rapid Depolarisation                                                                                                              32
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   7
## Phase 2 Plateau Phase                                                                                                                     15
## Phase 3 Rapid Repolarisation                                                                                                               8
## Phase I Functionalization Of Compounds                                                                                                   106
## Phase Ii Conjugation Of Compounds                                                                                                        109
## Phenylalanine And Tyrosine Metabolism                                                                                                     11
## Phenylalanine Metabolism                                                                                                                   6
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              8
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 7
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    18
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    15
## Phospholipid Metabolism                                                                                                                  211
## Physiological Factors                                                                                                                     12
## Pi 3k Cascade Fgfr1                                                                                                                       21
## Pi 3k Cascade Fgfr2                                                                                                                       23
## Pi 3k Cascade Fgfr3                                                                                                                       18
## Pi 3k Cascade Fgfr4                                                                                                                       20
## Pi Metabolism                                                                                                                             84
## Pi3k Akt Activation                                                                                                                        9
## Pi3k Events In Erbb2 Signaling                                                                                                            16
## Pi3k Events In Erbb4 Signaling                                                                                                            10
## Pi5p Regulates Tp53 Acetylation                                                                                                            9
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     29
## Pka Activation In Glucagon Signalling                                                                                                     17
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      5
## Pkmts Methylate Histone Lysines                                                                                                           71
## Platelet Adhesion To Exposed Collagen                                                                                                     15
## Platelet Aggregation Plug Formation                                                                                                       39
## Platelet Calcium Homeostasis                                                                                                              28
## Platelet Homeostasis                                                                                                                      86
## Platelet Sensitization By Ldl                                                                                                             17
## Polb Dependent Long Patch Base Excision Repair                                                                                             8
## Polo Like Kinase Mediated Events                                                                                                          16
## Polymerase Switching                                                                                                                      14
## Polymerase Switching On The C Strand Of The Telomere                                                                                      26
## Positive Epigenetic Regulation Of Rrna Expression                                                                                        106
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          27
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           10
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   7
## Pre Notch Expression And Processing                                                                                                      120
## Pre Notch Processing In Golgi                                                                                                             18
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          6
## Pregnenolone Biosynthesis                                                                                                                 12
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    11
## Presynaptic Function Of Kainate Receptors                                                                                                 21
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  9
## Processing And Activation Of Sumo                                                                                                         10
## Processing Of Capped Intron Containing Pre Mrna                                                                                          242
## Processing Of Capped Intronless Pre Mrna                                                                                                  28
## Processing Of Dna Double Strand Break Ends                                                                                                98
## Processing Of Intronless Pre Mrnas                                                                                                        19
## Processing Of Smdt1                                                                                                                       16
## Processive Synthesis On The C Strand Of The Telomere                                                                                      19
## Processive Synthesis On The Lagging Strand                                                                                                15
## Prolactin Receptor Signaling                                                                                                              15
## Prolonged Erk Activation Events                                                                                                           14
## Propionyl Coa Catabolism                                                                                                                   5
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     19
## Prostanoid Ligand Receptors                                                                                                                9
## Protein Localization                                                                                                                     164
## Protein Methylation                                                                                                                       17
## Protein Protein Interactions At Synapses                                                                                                  87
## Protein Repair                                                                                                                             6
## Protein Ubiquitination                                                                                                                    79
## Proton Coupled Monocarboxylate Transport                                                                                                   6
## Pten Regulation                                                                                                                          139
## Ptk6 Expression                                                                                                                            5
## Ptk6 Promotes Hif1a Stabilization                                                                                                          6
## Ptk6 Regulates Cell Cycle                                                                                                                  6
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         5
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     14
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      9
## Purine Catabolism                                                                                                                         17
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          12
## Purine Salvage                                                                                                                            13
## Pyrimidine Catabolism                                                                                                                     12
## Pyrimidine Salvage                                                                                                                        11
## Pyruvate Metabolism                                                                                                                       31
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             55
## Ra Biosynthesis Pathway                                                                                                                   22
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     90
## Rab Geranylgeranylation                                                                                                                   65
## Rab Regulation Of Trafficking                                                                                                            122
## Raf Activation                                                                                                                            34
## Rap1 Signalling                                                                                                                           16
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      20
## Ras Processing                                                                                                                            24
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  7
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              10
## Receptor Type Tyrosine Protein Phosphatases                                                                                               20
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    56
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          30
## Recycling Of Bile Acids And Salts                                                                                                         16
## Recycling Of Eif2 Gdp                                                                                                                      8
## Recycling Pathway Of L1                                                                                                                   49
## Reduction Of Cytosolic Ca Levels                                                                                                          12
## Reelin Signalling Pathway                                                                                                                  5
## Regulated Proteolysis Of P75ntr                                                                                                           11
## Regulation Of Bach1 Activity                                                                                                              11
## Regulation Of Beta Cell Development                                                                                                       42
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     55
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               10
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         8
## Regulation Of Expression Of Slits And Robos                                                                                              172
## Regulation Of Fzd By Ubiquitination                                                                                                       21
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 11
## Regulation Of Gene Expression In Beta Cells                                                                                               21
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          8
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              5
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        16
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               32
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          12
## Regulation Of Hmox1 Expression And Activity                                                                                               65
## Regulation Of Ifna Signaling                                                                                                              26
## Regulation Of Ifng Signaling                                                                                                              14
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    15
## Regulation Of Insulin Secretion                                                                                                           78
## Regulation Of Kit Signaling                                                                                                               16
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  12
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       87
## Regulation Of Pten Gene Transcription                                                                                                     61
## Regulation Of Pten Localization                                                                                                            9
## Regulation Of Pten Mrna Translation                                                                                                        9
## Regulation Of Pten Stability And Activity                                                                                                 69
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          16
## Regulation Of Ras By Gaps                                                                                                                 68
## Regulation Of Runx1 Expression And Activity                                                                                               17
## Regulation Of Runx2 Expression And Activity                                                                                               73
## Regulation Of Runx3 Expression And Activity                                                                                               55
## Regulation Of Signaling By Cbl                                                                                                            22
## Regulation Of Signaling By Nodal                                                                                                          11
## Regulation Of Tp53 Activity Through Acetylation                                                                                           30
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           14
## Regulation Of Tp53 Activity Through Methylation                                                                                           19
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       92
## Relaxin Receptors                                                                                                                          8
## Release Of Apoptotic Factors From The Mitochondria                                                                                         7
## Release Of Hh Np From The Secreting Cell                                                                                                   8
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     10
## Reproduction                                                                                                                             145
## Resolution Of Abasic Sites Ap Sites                                                                                                       38
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              25
## Resolution Of D Loop Structures                                                                                                           34
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         26
## Respiratory Electron Transport                                                                                                           103
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                         127
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                15
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                        102
## Response Of Mtb To Phagocytosis                                                                                                           23
## Response To Metal Ions                                                                                                                    14
## Ret Signaling                                                                                                                             40
## Retinoid Cycle Disease Events                                                                                                             13
## Retrograde Neurotrophin Signalling                                                                                                        14
## Retrograde Transport At The Trans Golgi Network                                                                                           49
## Reversible Hydration Of Carbon Dioxide                                                                                                    12
## Rho Gtpases Activate Cit                                                                                                                  19
## Rho Gtpases Activate Nadph Oxidases                                                                                                       24
## Rho Gtpases Activate Pkns                                                                                                                 94
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               9
## Rho Gtpases Activate Rocks                                                                                                                19
## Rhobtb Gtpase Cycle                                                                                                                       35
## Rhobtb1 Gtpase Cycle                                                                                                                      23
## Rhobtb2 Gtpase Cycle                                                                                                                      23
## Rhobtb3 Atpase Cycle                                                                                                                      10
## Rhot1 Gtpase Cycle                                                                                                                         5
## Rna Polymerase I Promoter Escape                                                                                                          91
## Rna Polymerase I Transcription                                                                                                           111
## Rna Polymerase I Transcription Initiation                                                                                                 47
## Rna Polymerase I Transcription Termination                                                                                                31
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 81
## Rna Polymerase Ii Transcription Termination                                                                                               66
## Rna Polymerase Iii Chain Elongation                                                                                                       18
## Rna Polymerase Iii Transcription                                                                                                          41
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          28
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          28
## Rna Polymerase Iii Transcription Termination                                                                                              23
## Robo Receptors Bind Akap5                                                                                                                  9
## Role Of Abl In Robo Slit Signaling                                                                                                         8
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             71
## Role Of Phospholipids In Phagocytosis                                                                                                     82
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           10
## Rora Activates Gene Expression                                                                                                            18
## Rrna Modification In The Mitochondrion                                                                                                     8
## Rrna Modification In The Nucleus And Cytosol                                                                                              60
## Rrna Processing                                                                                                                          205
## Rrna Processing In The Mitochondrion                                                                                                      12
## Rsk Activation                                                                                                                             7
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        37
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   6
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                5
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     98
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           6
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                               130
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        8
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   5
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           6
## Runx2 Regulates Bone Development                                                                                                          31
## Runx2 Regulates Chondrocyte Maturation                                                                                                     5
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           8
## Runx2 Regulates Osteoblast Differentiation                                                                                                24
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  5
## Runx3 Regulates Cdkn1a Transcription                                                                                                       7
## Runx3 Regulates Immune Response And Cell Migration                                                                                         6
## Runx3 Regulates Notch Signaling                                                                                                           14
## Runx3 Regulates P14 Arf                                                                                                                   10
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                8
## Sars Cov 1 Genome Replication And Transcription                                                                                            6
## Sars Cov 1 Infection                                                                                                                      50
## Sars Cov 2 Infection                                                                                                                      67
## Scavenging By Class F Receptors                                                                                                            6
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  60
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           32
## Selenoamino Acid Metabolism                                                                                                              118
## Sema3a Pak Dependent Axon Repulsion                                                                                                       16
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         14
## Sema4d In Semaphorin Signaling                                                                                                            24
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    20
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                8
## Sensing Of Dna Double Strand Breaks                                                                                                        6
## Sensory Processing Of Sound                                                                                                               77
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            55
## Separation Of Sister Chromatids                                                                                                          191
## Serine Biosynthesis                                                                                                                        9
## Serotonin And Melatonin Biosynthesis                                                                                                       5
## Serotonin Neurotransmitter Release Cycle                                                                                                  18
## Serotonin Receptors                                                                                                                       12
## Shc Mediated Cascade Fgfr1                                                                                                                21
## Shc Mediated Cascade Fgfr3                                                                                                                18
## Shc Mediated Cascade Fgfr4                                                                                                                20
## Shc Related Events Triggered By Igf1r                                                                                                      9
## Shc1 Events In Egfr Signaling                                                                                                             14
## Shc1 Events In Erbb2 Signaling                                                                                                            22
## Shc1 Events In Erbb4 Signaling                                                                                                            14
## Sialic Acid Metabolism                                                                                                                    33
## Signal Amplification                                                                                                                      33
## Signal Attenuation                                                                                                                        10
## Signal Regulatory Protein Family Interactions                                                                                             16
## Signal Transduction By L1                                                                                                                 21
## Signaling By Activin                                                                                                                      13
## Signaling By Bmp                                                                                                                          28
## Signaling By Braf And Raf Fusions                                                                                                         65
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  15
## Signaling By Egfr In Cancer                                                                                                               25
## Signaling By Erbb2                                                                                                                        50
## Signaling By Erbb2 Ecd Mutants                                                                                                            16
## Signaling By Erbb2 In Cancer                                                                                                              26
## Signaling By Erbb4                                                                                                                        58
## Signaling By Erythropoietin                                                                                                               25
## Signaling By Fgfr                                                                                                                         87
## Signaling By Fgfr1                                                                                                                        50
## Signaling By Fgfr2                                                                                                                        73
## Signaling By Fgfr2 Iiia Tm                                                                                                                19
## Signaling By Fgfr2 In Disease                                                                                                             43
## Signaling By Fgfr3                                                                                                                        40
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      10
## Signaling By Fgfr4                                                                                                                        41
## Signaling By Fgfr4 In Disease                                                                                                             11
## Signaling By Flt3 Fusion Proteins                                                                                                         19
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     16
## Signaling By Hedgehog                                                                                                                    150
## Signaling By Hippo                                                                                                                        20
## Signaling By Lrp5 Mutants                                                                                                                  6
## Signaling By Mapk Mutants                                                                                                                  7
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 5
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        45
## Signaling By Mras Complex Mutants                                                                                                          8
## Signaling By Mst1                                                                                                                          5
## Signaling By Nodal                                                                                                                        20
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           15
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          7
## Signaling By Notch3                                                                                                                       49
## Signaling By Notch4                                                                                                                       82
## Signaling By Ntrk2 Trkb                                                                                                                   25
## Signaling By Ntrk3 Trkc                                                                                                                   17
## Signaling By Retinoic Acid                                                                                                                43
## Signaling By Rnf43 Mutants                                                                                                                 8
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           8
## Signaling By Wnt In Cancer                                                                                                                34
## Signalling To Erks                                                                                                                        34
## Signalling To P38 Via Rit And Rin                                                                                                          5
## Signalling To Ras                                                                                                                         20
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      11
## Slc Mediated Transmembrane Transport                                                                                                     250
## Slc Transporter Disorders                                                                                                                 99
## Smac Xiap Regulated Apoptotic Response                                                                                                     8
## Small Interfering Rna Sirna Biogenesis                                                                                                     9
## Smooth Muscle Contraction                                                                                                                 38
## Snrnp Assembly                                                                                                                            54
## Sodium Calcium Exchangers                                                                                                                 11
## Sodium Coupled Phosphate Cotransporters                                                                                                    5
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                5
## Sodium Proton Exchangers                                                                                                                   9
## Sos Mediated Signalling                                                                                                                    7
## Sperm Motility And Taxes                                                                                                                   9
## Sphingolipid De Novo Biosynthesis                                                                                                         45
## Sphingolipid Metabolism                                                                                                                   90
## Spry Regulation Of Fgf Signaling                                                                                                          16
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                              113
## Stabilization Of P53                                                                                                                      57
## Stat5 Activation                                                                                                                           7
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           10
## Stimuli Sensing Channels                                                                                                                 106
## Sting Mediated Induction Of Host Immune Responses                                                                                         16
## Striated Muscle Contraction                                                                                                               36
## Sulfide Oxidation To Sulfate                                                                                                               6
## Sulfur Amino Acid Metabolism                                                                                                              28
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         5
## Sumo Is Proteolytically Processed                                                                                                          6
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               7
## Sumoylation Of Chromatin Organization Proteins                                                                                            71
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    77
## Sumoylation Of Dna Replication Proteins                                                                                                   46
## Sumoylation Of Intracellular Receptors                                                                                                    30
## Sumoylation Of Rna Binding Proteins                                                                                                       47
## Sumoylation Of Sumoylation Proteins                                                                                                       35
## Sumoylation Of Transcription Cofactors                                                                                                    43
## Sumoylation Of Transcription Factors                                                                                                      20
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  39
## Suppression Of Apoptosis                                                                                                                   7
## Suppression Of Phagosomal Maturation                                                                                                      13
## Surfactant Metabolism                                                                                                                     30
## Switching Of Origins To A Post Replicative State                                                                                          91
## Synaptic Adhesion Like Molecules                                                                                                          21
## Syndecan Interactions                                                                                                                     27
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          7
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      9
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      9
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  30
## Synthesis Of Bile Acids And Bile Salts                                                                                                    34
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          14
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          15
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      24
## Synthesis Of Diphthamide Eef2                                                                                                              8
## Synthesis Of Dolichyl Phosphate                                                                                                            6
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              8
## Synthesis Of Gdp Mannose                                                                                                                   5
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             18
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                14
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   26
## Synthesis Of Ketone Bodies                                                                                                                 8
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                21
## Synthesis Of Lipoxins Lx                                                                                                                   6
## Synthesis Of Pa                                                                                                                           39
## Synthesis Of Pc                                                                                                                           28
## Synthesis Of Pe                                                                                                                           13
## Synthesis Of Pg                                                                                                                            8
## Synthesis Of Pi                                                                                                                            5
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          16
## Synthesis Of Pips At The Er Membrane                                                                                                       5
## Synthesis Of Pips At The Golgi Membrane                                                                                                   18
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           11
## Synthesis Of Pips At The Plasma Membrane                                                                                                  53
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                10
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           63
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      8
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              24
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 6
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            19
## Tachykinin Receptors Bind Tachykinins                                                                                                      5
## Tbc Rabgaps                                                                                                                               44
## Telomere C Strand Lagging Strand Synthesis                                                                                                34
## Telomere C Strand Synthesis Initiation                                                                                                    13
## Telomere Extension By Telomerase                                                                                                          23
## Telomere Maintenance                                                                                                                     113
## Terminal Pathway Of Complement                                                                                                             8
## Termination Of O Glycan Biosynthesis                                                                                                      23
## Termination Of Translesion Dna Synthesis                                                                                                  32
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        10
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           15
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               5
## Tgf Beta Receptor Signaling Activates Smads                                                                                               32
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   16
## The Activation Of Arylsulfatases                                                                                                          13
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                             178
## The Fatty Acid Cycling Model                                                                                                               5
## The Phototransduction Cascade                                                                                                             34
## The Retinoid Cycle In Cones Daylight Vision                                                                                                7
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             28
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           32
## Thromboxane Signalling Through Tp Receptor                                                                                                24
## Thyroxine Biosynthesis                                                                                                                    10
## Tie2 Signaling                                                                                                                            18
## Tight Junction Interactions                                                                                                               30
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    5
## Tp53 Regulates Metabolic Genes                                                                                                            87
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          21
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           12
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          44
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               12
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          62
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    20
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    14
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      14
## Traf3 Dependent Irf Activation Pathway                                                                                                    14
## Traf6 Mediated Irf7 Activation                                                                                                            29
## Trafficking Of Ampa Receptors                                                                                                             31
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            17
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        5
## Trail Signaling                                                                                                                            8
## Trans Golgi Network Vesicle Budding                                                                                                       72
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   78
## Transcription Of The Hiv Genome                                                                                                           70
## Transcriptional Regulation By E2f6                                                                                                        34
## Transcriptional Regulation By Small Rnas                                                                                                 107
## Transcriptional Regulation By Ventx                                                                                                       41
## Transcriptional Regulation Of Testis Differentiation                                                                                      13
## Transferrin Endocytosis And Recycling                                                                                                     31
## Translation                                                                                                                              295
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            13
## Translation Of Sars Cov 1 Structural Proteins                                                                                             28
## Translation Of Sars Cov 2 Structural Proteins                                                                                             44
## Translesion Synthesis By Polh                                                                                                             19
## Translesion Synthesis By Polk                                                                                                             17
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        39
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      72
## Transport And Synthesis Of Paps                                                                                                            6
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  86
## Transport Of Connexons To The Plasma Membrane                                                                                             21
## Transport Of Fatty Acids                                                                                                                   8
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                      106
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             43
## Transport Of Mature Transcript To Cytoplasm                                                                                               84
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  12
## Transport Of Nucleotide Sugars                                                                                                             9
## Transport Of Organic Anions                                                                                                               12
## Transport Of The Slbp Dependant Mature Mrna                                                                                               36
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   44
## Triglyceride Biosynthesis                                                                                                                 14
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     17
## Trna Aminoacylation                                                                                                                       42
## Trna Modification In The Mitochondrion                                                                                                     9
## Trna Modification In The Nucleus And Cytosol                                                                                              43
## Trna Processing                                                                                                                          111
## Trna Processing In The Mitochondrion                                                                                                       7
## Trna Processing In The Nucleus                                                                                                            59
## Trp Channels                                                                                                                              28
## Tryptophan Catabolism                                                                                                                     14
## Type I Hemidesmosome Assembly                                                                                                             11
## Tyrosine Catabolism                                                                                                                        5
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        7
## Ubiquinol Biosynthesis                                                                                                                     8
## Uch Proteinases                                                                                                                          102
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             21
## Unwinding Of Dna                                                                                                                          12
## Uptake And Actions Of Bacterial Toxins                                                                                                    29
## Uptake And Function Of Anthrax Toxins                                                                                                     11
## Uptake And Function Of Diphtheria Toxin                                                                                                    6
## Urea Cycle                                                                                                                                10
## Vasopressin Like Receptors                                                                                                                 6
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              43
## Vegf Ligand Receptor Interactions                                                                                                          8
## Vegfr2 Mediated Cell Proliferation                                                                                                        19
## Viral Messenger Rna Synthesis                                                                                                             44
## Vitamin B1 Thiamin Metabolism                                                                                                              5
## Vitamin B2 Riboflavin Metabolism                                                                                                           7
## Vitamin B5 Pantothenate Metabolism                                                                                                        17
## Vitamin C Ascorbate Metabolism                                                                                                             8
## Vitamin D Calciferol Metabolism                                                                                                           11
## Vitamins                                                                                                                                   6
## Vldl Assembly                                                                                                                              5
## Vldl Clearance                                                                                                                             6
## Vldlr Internalisation And Degradation                                                                                                     12
## Voltage Gated Potassium Channels                                                                                                          43
## Vxpx Cargo Targeting To Cilium                                                                                                            21
## Wax And Plasmalogen Biosynthesis                                                                                                           7
## Wnt Mediated Activation Of Dvl                                                                                                             8
## Xenobiotics                                                                                                                               25
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             15
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   7
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           10
## Zinc Transporters                                                                                                                         17
##                                                                                                                                      overlap
## Cytokine Signaling In Immune System                                                                                                       39
## Signaling By Interleukins                                                                                                                 32
## Innate Immune System                                                                                                                      38
## Interleukin 10 Signaling                                                                                                                  13
## Interleukin 4 And Interleukin 13 Signaling                                                                                                16
## Toll Like Receptor Cascades                                                                                                               13
## Peptide Ligand Binding Receptors                                                                                                          13
## Chemokine Receptors Bind Chemokines                                                                                                        9
## Neutrophil Degranulation                                                                                                                  17
## Interleukin 1 Family Signaling                                                                                                            11
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                          9
## Myd88 Independent Tlr4 Cascade                                                                                                             9
## Gpcr Ligand Binding                                                                                                                       15
## Class A 1 Rhodopsin Like Receptors                                                                                                        13
## Signaling By Gpcr                                                                                                                         17
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                       8
## Adaptive Immune System                                                                                                                    17
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                   6
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                          7
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                      5
## Interleukin 17 Signaling                                                                                                                   6
## G Alpha I Signalling Events                                                                                                               10
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                               4
## Death Receptor Signalling                                                                                                                  7
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                          4
## Programmed Cell Death                                                                                                                      8
## Regulated Necrosis                                                                                                                         5
## Interleukin 1 Signaling                                                                                                                    6
## Purinergic Signaling In Leishmaniasis Infection                                                                                            4
## Interleukin 18 Signaling                                                                                                                   3
## Leishmania Infection                                                                                                                       9
## Tnfs Bind Their Physiological Receptors                                                                                                    4
## Diseases Of Immune System                                                                                                                  4
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                   7
## Costimulation By The Cd28 Family                                                                                                           5
## Nod1 2 Signaling Pathway                                                                                                                   4
## Interleukin 2 Family Signaling                                                                                                             4
## P75ntr Signals Via Nf Kb                                                                                                                   3
## Heme Signaling                                                                                                                             4
## Regulation Of Tlr By Endogenous Ligand                                                                                                     3
## Complement Cascade                                                                                                                         5
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                3
## Post Translational Protein Modification                                                                                                   16
## Pyroptosis                                                                                                                                 3
## Deubiquitination                                                                                                                           7
## Ovarian Tumor Domain Proteases                                                                                                             3
## Interleukin 1 Processing                                                                                                                   2
## P75 Ntr Receptor Mediated Signalling                                                                                                       4
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                       4
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                  2
## Apoptosis                                                                                                                                  5
## Dap12 Interactions                                                                                                                         3
## Infectious Disease                                                                                                                        11
## Cd28 Dependent Vav1 Pathway                                                                                                                2
## Cell Surface Interactions At The Vascular Wall                                                                                             5
## Killing Mechanisms                                                                                                                         2
## Nf Kb Is Activated And Signals Survival                                                                                                    2
## P75ntr Recruits Signalling Complexes                                                                                                       2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                    2
## Trafficking And Processing Of Endosomal Tlr                                                                                                2
## Hemostasis                                                                                                                                 9
## Interleukin 15 Signaling                                                                                                                   2
## Interleukin 12 Family Signaling                                                                                                            3
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                           2
## Sumoylation Of Dna Methylation Proteins                                                                                                    2
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                      2
## Foxo Mediated Transcription                                                                                                                3
## Irak4 Deficiency Tlr2 4                                                                                                                    2
## Scavenging By Class A Receptors                                                                                                            2
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                               2
## Scavenging Of Heme From Plasma                                                                                                             3
## Circadian Clock                                                                                                                            3
## Ctla4 Inhibitory Signaling                                                                                                                 2
## Inflammasomes                                                                                                                              2
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                 2
## Ikk Complex Recruitment Mediated By Rip1                                                                                                   2
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                    3
## Traf6 Mediated Nf Kb Activation                                                                                                            2
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                              2
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                           2
## G0 And Early G1                                                                                                                            2
## Interleukin Receptor Shc Signaling                                                                                                         2
## Transcriptional Regulation Of Granulopoiesis                                                                                               3
## Pd 1 Signaling                                                                                                                             2
## Ripk1 Mediated Regulated Necrosis                                                                                                          2
## Interferon Gamma Signaling                                                                                                                 3
## Mapk6 Mapk4 Signaling                                                                                                                      3
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                   2
## Cellular Responses To External Stimuli                                                                                                     8
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                        2
## Nicotinate Metabolism                                                                                                                      2
## Perk Regulates Gene Expression                                                                                                             2
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                     2
## Clec7a Dectin 1 Signaling                                                                                                                  3
## Vesicle Mediated Transport                                                                                                                 8
## Cargo Concentration In The Er                                                                                                              2
## Cd28 Co Stimulation                                                                                                                        2
## Diseases Of Programmed Cell Death                                                                                                          3
## Regulation Of Tnfr1 Signaling                                                                                                              2
## Antigen Processing Cross Presentation                                                                                                      3
## Mapk Family Signaling Cascades                                                                                                             5
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                         2
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                    3
## Tcr Signaling                                                                                                                              3
## Tnf Signaling                                                                                                                              2
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                 2
## Interleukin 12 Signaling                                                                                                                   2
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                           2
## Response To Elevated Platelet Cytosolic Ca2                                                                                                3
## Netrin 1 Signaling                                                                                                                         2
## C Type Lectin Receptors Clrs                                                                                                               3
## Rna Polymerase Ii Transcription                                                                                                           11
## Alternative Complement Activation                                                                                                          1
## Fasl Cd95l Signaling                                                                                                                       1
## G2 M Dna Replication Checkpoint                                                                                                            1
## Galactose Catabolism                                                                                                                       1
## Hdl Clearance                                                                                                                              1
## Intrinsic Pathway For Apoptosis                                                                                                            2
## Mecp2 Regulates Transcription Factors                                                                                                      1
## Nostrin Mediated Enos Trafficking                                                                                                          1
## Platelet Activation Signaling And Aggregation                                                                                              4
## Rhoj Gtpase Cycle                                                                                                                          2
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                            1
## Epigenetic Regulation Of Gene Expression                                                                                                   3
## Er To Golgi Anterograde Transport                                                                                                          3
## Rhoq Gtpase Cycle                                                                                                                          2
## Biosynthesis Of Epa Derived Spms                                                                                                           1
## Clec7a Inflammasome Pathway                                                                                                                1
## Fibronectin Matrix Formation                                                                                                               1
## Phosphorylation Of Emi1                                                                                                                    1
## Scavenging By Class B Receptors                                                                                                            1
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                          1
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                       1
## Tnfr1 Mediated Ceramide Production                                                                                                         1
## Ca2 Pathway                                                                                                                                2
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                               2
## Transcriptional Regulation By Mecp2                                                                                                        2
## Dna Methylation                                                                                                                            2
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                  1
## Creb Phosphorylation                                                                                                                       1
## Ikba Variant Leads To Eda Id                                                                                                               1
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                        1
## Copii Mediated Vesicle Transport                                                                                                           2
## Activation Of C3 And C5                                                                                                                    1
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                         1
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                               1
## Hdl Assembly                                                                                                                               1
## Inactivation Of Cdc42 And Rac1                                                                                                             1
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                          1
## Runx3 Regulates Wnt Signaling                                                                                                              1
## Interferon Alpha Beta Signaling                                                                                                            2
## Prc2 Methylates Histones And Dna                                                                                                           2
## Signaling By Tgf Beta Receptor Complex                                                                                                     2
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                               1
## Cd163 Mediating An Anti Inflammatory Response                                                                                              1
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                1
## Extra Nuclear Estrogen Signaling                                                                                                           2
## Interleukin 23 Signaling                                                                                                                   1
## Interleukin 9 Signaling                                                                                                                    1
## Rhog Gtpase Cycle                                                                                                                          2
## Trif Mediated Programmed Cell Death                                                                                                        1
## Sumoylation                                                                                                                                3
## Transport To The Golgi And Subsequent Modification                                                                                         3
## Metabolism Of Vitamins And Cofactors                                                                                                       3
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                     1
## Akt Phosphorylates Targets In The Nucleus                                                                                                  1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                   1
## Chylomicron Assembly                                                                                                                       1
## Chylomicron Remodeling                                                                                                                     1
## Hdl Remodeling                                                                                                                             1
## Interleukin 21 Signaling                                                                                                                   1
## Mapk3 Erk1 Activation                                                                                                                      1
## Mastl Facilitates Mitotic Progression                                                                                                      1
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                 1
## Initial Triggering Of Complement                                                                                                           2
## Cellular Senescence                                                                                                                        3
## Condensation Of Prometaphase Chromosomes                                                                                                   1
## Dermatan Sulfate Biosynthesis                                                                                                              1
## Dscam Interactions                                                                                                                         1
## Endosomal Vacuolar Pathway                                                                                                                 1
## Enos Activation                                                                                                                            1
## Interleukin 27 Signaling                                                                                                                   1
## Interleukin 6 Signaling                                                                                                                    1
## Receptor Mediated Mitophagy                                                                                                                1
## Regulation By C Flip                                                                                                                       1
## Rho Gtpases Activate Ktn1                                                                                                                  1
## Signaling By Leptin                                                                                                                        1
## Sumoylation Of Immune Response Proteins                                                                                                    1
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                           1
## Interferon Signaling                                                                                                                       3
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                          1
## Interleukin 2 Signaling                                                                                                                    1
## Interleukin 35 Signalling                                                                                                                  1
## Notch2 Intracellular Domain Regulates Transcription                                                                                        1
## Rac2 Gtpase Cycle                                                                                                                          2
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                  1
## Signaling By Receptor Tyrosine Kinases                                                                                                     5
## Tandem Pore Domain Potassium Channels                                                                                                      1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                   1
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                       1
## Apoptosis Induced Dna Fragmentation                                                                                                        1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                              1
## Dissolution Of Fibrin Clot                                                                                                                 1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                             1
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                   1
## Tnfr1 Induced Proapoptotic Signaling                                                                                                       1
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                      1
## Unfolded Protein Response Upr                                                                                                              2
## Class B 2 Secretin Family Receptors                                                                                                        2
## Rac3 Gtpase Cycle                                                                                                                          2
## Dcc Mediated Attractive Signaling                                                                                                          1
## Early Phase Of Hiv Life Cycle                                                                                                              1
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                        1
## Irak1 Recruits Ikk Complex                                                                                                                 1
## Repression Of Wnt Target Genes                                                                                                             1
## Antimicrobial Peptides                                                                                                                     2
## Esr Mediated Signaling                                                                                                                     3
## Ub Specific Processing Proteases                                                                                                           3
## Depolymerisation Of The Nuclear Lamina                                                                                                     1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                  1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                   1
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                         1
## Wnt5a Dependent Internalization Of Fzd4                                                                                                    1
## Copi Mediated Anterograde Transport                                                                                                        2
## Foxo Mediated Transcription Of Cell Death Genes                                                                                            1
## Nrif Signals Cell Death From The Nucleus                                                                                                   1
## Signaling By Tgfb Family Members                                                                                                           2
## The Nlrp3 Inflammasome                                                                                                                     1
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                               1
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                       1
## Pi3k Akt Signaling In Cancer                                                                                                               2
## Tcf Dependent Signaling In Response To Wnt                                                                                                 3
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                       1
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                            1
## Signaling By Vegf                                                                                                                          2
## Transcriptional Regulation By Runx1                                                                                                        3
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                           4
## Negative Epigenetic Regulation Of Rrna Expression                                                                                          2
## Abc Transporters In Lipid Homeostasis                                                                                                      1
## Amyloid Fiber Formation                                                                                                                    2
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                              1
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                           1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                            1
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                1
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                     1
## Senescence Associated Secretory Phenotype Sasp                                                                                             2
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                    1
## Initiation Of Nuclear Envelope Ne Reformation                                                                                              1
## Negative Regulation Of The Pi3k Akt Network                                                                                                2
## Nicotinamide Salvaging                                                                                                                     1
## Other Semaphorin Interactions                                                                                                              1
## Phase 4 Resting Membrane Potential                                                                                                         1
## Plasma Lipoprotein Assembly                                                                                                                1
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                       1
## G Beta Gamma Signalling Through Cdc42                                                                                                      1
## Phosphorylation Of The Apc C                                                                                                               1
## Pka Mediated Phosphorylation Of Creb                                                                                                       1
## Signaling By Kit In Disease                                                                                                                1
## Signaling By Pdgfr In Disease                                                                                                              1
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                      1
## Branched Chain Amino Acid Catabolism                                                                                                       1
## Interleukin 37 Signaling                                                                                                                   1
## Rho Gtpases Activate Paks                                                                                                                  1
## Cd28 Dependent Pi3k Akt Signaling                                                                                                          1
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                1
## E2f Mediated Regulation Of Dna Replication                                                                                                 1
## Pink1 Prkn Mediated Mitophagy                                                                                                              1
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                         2
## Cytoprotection By Hmox1                                                                                                                    2
## Incretin Synthesis Secretion And Inactivation                                                                                              1
## Mhc Class Ii Antigen Presentation                                                                                                          2
## Raf Independent Mapk1 3 Activation                                                                                                         1
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                               1
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                     1
## Growth Hormone Receptor Signaling                                                                                                          1
## Interleukin 6 Family Signaling                                                                                                             1
## Triglyceride Catabolism                                                                                                                    1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                   1
## Basigin Interactions                                                                                                                       1
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                    1
## Inactivation Of Csf3 G Csf Signaling                                                                                                       1
## Signaling By Ntrks                                                                                                                         2
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                              1
## Interleukin 20 Family Signaling                                                                                                            1
## Wnt Ligand Biogenesis And Trafficking                                                                                                      1
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                      1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                           1
## Vegfr2 Mediated Vascular Permeability                                                                                                      1
## Activation Of Bh3 Only Proteins                                                                                                            1
## Beta Catenin Independent Wnt Signaling                                                                                                     2
## Dap12 Signaling                                                                                                                            1
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                             1
## Downstream Signal Transduction                                                                                                             1
## Egfr Downregulation                                                                                                                        1
## Extracellular Matrix Organization                                                                                                          3
## Fgfr1 Mutant Receptor Activation                                                                                                           1
## G1 S Specific Transcription                                                                                                                1
## Mitophagy                                                                                                                                  1
## Mitotic G1 Phase And G1 S Transition                                                                                                       2
## Myogenesis                                                                                                                                 1
## Signaling By Csf3 G Csf                                                                                                                    1
## Signaling By Nuclear Receptors                                                                                                             3
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                       1
## Activation Of Matrix Metalloproteinases                                                                                                    1
## Asparagine N Linked Glycosylation                                                                                                          3
## G Protein Beta Gamma Signalling                                                                                                            1
## Intracellular Signaling By Second Messengers                                                                                               3
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                               1
## Plasma Lipoprotein Clearance                                                                                                               1
## Plasma Lipoprotein Remodeling                                                                                                              1
## Regulation Of Mecp2 Expression And Activity                                                                                                1
## Rho Gtpases Activate Iqgaps                                                                                                                1
## Rhou Gtpase Cycle                                                                                                                          1
## Rhov Gtpase Cycle                                                                                                                          1
## Signaling By Notch2                                                                                                                        1
## Ca Dependent Events                                                                                                                        1
## Cdc42 Gtpase Cycle                                                                                                                         2
## Cellular Response To Chemical Stress                                                                                                       2
## Gpvi Mediated Activation Cascade                                                                                                           1
## Interleukin 7 Signaling                                                                                                                    1
## Metalloprotease Dubs                                                                                                                       1
## Nuclear Pore Complex Npc Disassembly                                                                                                       1
## Regulation Of Tp53 Expression And Degradation                                                                                              1
## Rho Gtpases Activate Wasps And Waves                                                                                                       1
## Rhoh Gtpase Cycle                                                                                                                          1
## Ros And Rns Production In Phagocytes                                                                                                       1
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                           1
## Generation Of Second Messenger Molecules                                                                                                   1
## Ngf Stimulated Transcription                                                                                                               1
## Signaling By Fgfr1 In Disease                                                                                                              1
## Signaling By Wnt                                                                                                                           3
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                               1
## Triglyceride Metabolism                                                                                                                    1
## Beta Defensins                                                                                                                             1
## Dag And Ip3 Signaling                                                                                                                      1
## Ephb Mediated Forward Signaling                                                                                                            1
## Rhof Gtpase Cycle                                                                                                                          1
## Rnd1 Gtpase Cycle                                                                                                                          1
## Rnd2 Gtpase Cycle                                                                                                                          1
## Rnd3 Gtpase Cycle                                                                                                                          1
## Signaling By Scf Kit                                                                                                                       1
## Developmental Biology                                                                                                                      7
## Fc Epsilon Receptor Fceri Signaling                                                                                                        2
## Rac1 Gtpase Cycle                                                                                                                          2
## Irs Mediated Signalling                                                                                                                    1
## Metabolism Of Fat Soluble Vitamins                                                                                                         1
## Notch1 Intracellular Domain Regulates Transcription                                                                                        1
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                           1
## Apoptotic Execution Phase                                                                                                                  1
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                            1
## Class I Mhc Mediated Antigen Processing Presentation                                                                                       3
## Defensins                                                                                                                                  1
## Rhod Gtpase Cycle                                                                                                                          1
## Signaling By Egfr                                                                                                                          1
## G Protein Mediated Events                                                                                                                  1
## Insulin Receptor Signalling Cascade                                                                                                        1
## Nervous System Development                                                                                                                 4
## Nuclear Envelope Breakdown                                                                                                                 1
## Signaling By Ptk6                                                                                                                          1
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                            1
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                     1
## G Alpha Q Signalling Events                                                                                                                2
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                          1
## Signaling By Pdgf                                                                                                                          1
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                         2
## Arachidonic Acid Metabolism                                                                                                                1
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                             1
## Nrage Signals Death Through Jnk                                                                                                            1
## Nuclear Events Kinase And Transcription Factor Activation                                                                                  1
## Asymmetric Localization Of Pcp Proteins                                                                                                    1
## Collagen Degradation                                                                                                                       1
## Ncam Signaling For Neurite Out Growth                                                                                                      1
## Semaphorin Interactions                                                                                                                    1
## Signaling By Fgfr In Disease                                                                                                               1
## Membrane Trafficking                                                                                                                       4
## Sirt1 Negatively Regulates Rrna Expression                                                                                                 1
## Aurka Activation By Tpx2                                                                                                                   1
## Creation Of C4 And C2 Activators                                                                                                           1
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                       1
## Rhob Gtpase Cycle                                                                                                                          1
## Condensation Of Prophase Chromosomes                                                                                                       1
## Rhoc Gtpase Cycle                                                                                                                          1
## Signaling By Notch                                                                                                                         2
## Signaling By Notch1                                                                                                                        1
## Abc Transporter Disorders                                                                                                                  1
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                              1
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                          1
## Dna Double Strand Break Response                                                                                                           1
## Ecm Proteoglycans                                                                                                                          1
## Nuclear Envelope Ne Reassembly                                                                                                             1
## Rmts Methylate Histone Arginines                                                                                                           1
## Signaling By Insulin Receptor                                                                                                              1
## Signaling By Met                                                                                                                           1
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                  1
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                         1
## Potential Therapeutics For Sars                                                                                                            1
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                   1
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                            1
## Selective Autophagy                                                                                                                        1
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                           1
## Degradation Of Beta Catenin By The Destruction Complex                                                                                     1
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                              1
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                          1
## Fceri Mediated Mapk Activation                                                                                                             1
## Regulation Of Plk1 Activity At G2 M Transition                                                                                             1
## Eph Ephrin Signaling                                                                                                                       1
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                  1
## Opioid Signalling                                                                                                                          1
## Pcp Ce Pathway                                                                                                                             1
## Peptide Hormone Metabolism                                                                                                                 1
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                       1
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                         1
## Fcgr3a Mediated Il10 Synthesis                                                                                                             1
## G2 M Dna Damage Checkpoint                                                                                                                 1
## Metabolism Of Carbohydrates                                                                                                                2
## Mitochondrial Biogenesis                                                                                                                   1
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                         1
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                 1
## Transcriptional Regulation By Runx3                                                                                                        1
## Organelle Biogenesis And Maintenance                                                                                                       2
## Protein Folding                                                                                                                            1
## Visual Phototransduction                                                                                                                   1
## Abc Family Proteins Mediated Transport                                                                                                     1
## Cellular Response To Heat Stress                                                                                                           1
## Potassium Channels                                                                                                                         1
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                        1
## Parasite Infection                                                                                                                         1
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                1
## Transcriptional Regulation By Runx2                                                                                                        1
## Glycosaminoglycan Metabolism                                                                                                               1
## Cardiac Conduction                                                                                                                         1
## Oxidative Stress Induced Senescence                                                                                                        1
## Resolution Of Sister Chromatid Cohesion                                                                                                    1
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                    1
## Fceri Mediated Nf Kb Activation                                                                                                            1
## Degradation Of The Extracellular Matrix                                                                                                    1
## Hcmv Early Events                                                                                                                          1
## Rho Gtpases Activate Formins                                                                                                               1
## Clathrin Mediated Endocytosis                                                                                                              1
## Diseases Of Glycosylation                                                                                                                  1
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                               1
## Mitotic Prophase                                                                                                                           1
## Sars Cov Infections                                                                                                                        1
## Autophagy                                                                                                                                  1
## Estrogen Dependent Gene Expression                                                                                                         1
## Hiv Life Cycle                                                                                                                             1
## Rhoa Gtpase Cycle                                                                                                                          1
## Regulation Of Tp53 Activity                                                                                                                1
## Hcmv Infection                                                                                                                             1
## Neuronal System                                                                                                                            2
## S Phase                                                                                                                                    1
## Dna Double Strand Break Repair                                                                                                             1
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                      1
## G2 M Checkpoints                                                                                                                           1
## Signaling By The B Cell Receptor Bcr                                                                                                       1
## Disorders Of Transmembrane Transporters                                                                                                    1
## Fatty Acid Metabolism                                                                                                                      1
## Rho Gtpase Cycle                                                                                                                           2
## Muscle Contraction                                                                                                                         1
## Mitotic G2 G2 M Phases                                                                                                                     1
## Cilium Assembly                                                                                                                            1
## Metabolism Of Lipids                                                                                                                       3
## Mitotic Prometaphase                                                                                                                       1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                            1
## Signaling By Robo Receptors                                                                                                                1
## Hiv Infection                                                                                                                              1
## Mitotic Metaphase And Anaphase                                                                                                             1
## Diseases Of Metabolism                                                                                                                     1
## Cell Cycle Mitotic                                                                                                                         2
## Transmission Across Chemical Synapses                                                                                                      1
## Chromatin Modifying Enzymes                                                                                                                1
## Cell Cycle Checkpoints                                                                                                                     1
## Rho Gtpase Effectors                                                                                                                       1
## Dna Repair                                                                                                                                 1
## Cell Cycle                                                                                                                                 2
## Transcriptional Regulation By Tp53                                                                                                         1
## Metabolism Of Amino Acids And Derivatives                                                                                                  1
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                          2
## M Phase                                                                                                                                    1
## Sensory Perception                                                                                                                         1
## Transport Of Small Molecules                                                                                                               1
## 2 Ltr Circle Formation                                                                                                                     0
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                            0
## Abacavir Metabolism                                                                                                                        0
## Abacavir Transmembrane Transport                                                                                                           0
## Abacavir Transport And Metabolism                                                                                                          0
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                           0
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                0
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                              0
## Acetylcholine Binding And Downstream Events                                                                                                0
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                     0
## Acetylcholine Neurotransmitter Release Cycle                                                                                               0
## Acetylcholine Regulates Insulin Secretion                                                                                                  0
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                        0
## Activated Notch1 Transmits Signal To The Nucleus                                                                                           0
## Activated Ntrk2 Signals Through Cdk5                                                                                                       0
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                              0
## Activated Ntrk2 Signals Through Fyn                                                                                                        0
## Activated Ntrk2 Signals Through Pi3k                                                                                                       0
## Activated Ntrk2 Signals Through Ras                                                                                                        0
## Activated Ntrk3 Signals Through Pi3k                                                                                                       0
## Activated Ntrk3 Signals Through Ras                                                                                                        0
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                              0
## Activation Of Ampk Downstream Of Nmdars                                                                                                    0
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                       0
## Activation Of Atr In Response To Replication Stress                                                                                        0
## Activation Of Bad And Translocation To Mitochondria                                                                                        0
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                0
## Activation Of Gene Expression By Srebf Srebp                                                                                               0
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                     0
## Activation Of Noxa And Translocation To Mitochondria                                                                                       0
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                       0
## Activation Of Puma And Translocation To Mitochondria                                                                                       0
## Activation Of Rac1                                                                                                                         0
## Activation Of Rac1 Downstream Of Nmdars                                                                                                    0
## Activation Of Ras In B Cells                                                                                                               0
## Activation Of Smo                                                                                                                          0
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                      0
## Activation Of The Phototransduction Cascade                                                                                                0
## Activation Of The Pre Replicative Complex                                                                                                  0
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                               0
## Activation Of Trka Receptors                                                                                                               0
## Acyl Chain Remodeling Of Cl                                                                                                                0
## Acyl Chain Remodeling Of Dag And Tag                                                                                                       0
## Acyl Chain Remodelling Of Pc                                                                                                               0
## Acyl Chain Remodelling Of Pe                                                                                                               0
## Acyl Chain Remodelling Of Pg                                                                                                               0
## Acyl Chain Remodelling Of Pi                                                                                                               0
## Acyl Chain Remodelling Of Ps                                                                                                               0
## Adenylate Cyclase Activating Pathway                                                                                                       0
## Adenylate Cyclase Inhibitory Pathway                                                                                                       0
## Adherens Junctions Interactions                                                                                                            0
## Adp Signalling Through P2y Purinoceptor 1                                                                                                  0
## Adp Signalling Through P2y Purinoceptor 12                                                                                                 0
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                        0
## Adrenoceptors                                                                                                                              0
## Aflatoxin Activation And Detoxification                                                                                                    0
## Aggrephagy                                                                                                                                 0
## Akt Phosphorylates Targets In The Cytosol                                                                                                  0
## Alpha Defensins                                                                                                                            0
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                 0
## Alpha Oxidation Of Phytanate                                                                                                               0
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                   0
## Amine Ligand Binding Receptors                                                                                                             0
## Amino Acid Conjugation                                                                                                                     0
## Amino Acid Transport Across The Plasma Membrane                                                                                            0
## Amino Acids Regulate Mtorc1                                                                                                                0
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                   0
## Anchoring Fibril Formation                                                                                                                 0
## Androgen Biosynthesis                                                                                                                      0
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                           0
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                   0
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                0
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                   0
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                    0
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                     0
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                            0
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                               0
## Apoptotic Cleavage Of Cellular Proteins                                                                                                    0
## Apoptotic Factor Mediated Response                                                                                                         0
## Aquaporin Mediated Transport                                                                                                               0
## Arachidonate Production From Dag                                                                                                           0
## Arms Mediated Activation                                                                                                                   0
## Aryl Hydrocarbon Receptor Signalling                                                                                                       0
## Aspartate And Asparagine Metabolism                                                                                                        0
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                   0
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                           0
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                               0
## Assembly Of The Hiv Virion                                                                                                                 0
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                   0
## Assembly Of The Pre Replicative Complex                                                                                                    0
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                  0
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                       0
## Attachment And Entry                                                                                                                       0
## Attachment Of Gpi Anchor To Upar                                                                                                           0
## Attenuation Phase                                                                                                                          0
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                  0
## B Wich Complex Positively Regulates Rrna Expression                                                                                        0
## Base Excision Repair                                                                                                                       0
## Base Excision Repair Ap Site Formation                                                                                                     0
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                  0
## Beta Catenin Phosphorylation Cascade                                                                                                       0
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                               0
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                         0
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                             0
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                          0
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                             0
## Beta Oxidation Of Pristanoyl Coa                                                                                                           0
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                              0
## Bicarbonate Transporters                                                                                                                   0
## Bile Acid And Bile Salt Metabolism                                                                                                         0
## Biological Oxidations                                                                                                                      0
## Biosynthesis Of Maresin Like Spms                                                                                                          0
## Biosynthesis Of Maresins                                                                                                                   0
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                         0
## Biotin Transport And Metabolism                                                                                                            0
## Blood Group Systems Biosynthesis                                                                                                           0
## Budding And Maturation Of Hiv Virion                                                                                                       0
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                0
## Butyrophilin Btn Family Interactions                                                                                                       0
## Ca2 Activated K Channels                                                                                                                   0
## Calcineurin Activates Nfat                                                                                                                 0
## Calcitonin Like Ligand Receptors                                                                                                           0
## Calnexin Calreticulin Cycle                                                                                                                0
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                0
## Cargo Trafficking To The Periciliary Membrane                                                                                              0
## Carnitine Metabolism                                                                                                                       0
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                       0
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                         0
## Cation Coupled Chloride Cotransporters                                                                                                     0
## Cd209 Dc Sign Signaling                                                                                                                    0
## Cd22 Mediated Bcr Regulation                                                                                                               0
## Cdc6 Association With The Orc Origin Complex                                                                                               0
## Cell Cell Communication                                                                                                                    0
## Cell Cell Junction Organization                                                                                                            0
## Cell Extracellular Matrix Interactions                                                                                                     0
## Cell Junction Organization                                                                                                                 0
## Cellular Hexose Transport                                                                                                                  0
## Cellular Response To Hypoxia                                                                                                               0
## Cellular Response To Starvation                                                                                                            0
## Cgmp Effects                                                                                                                               0
## Chaperone Mediated Autophagy                                                                                                               0
## Chl1 Interactions                                                                                                                          0
## Cholesterol Biosynthesis                                                                                                                   0
## Choline Catabolism                                                                                                                         0
## Chondroitin Sulfate Biosynthesis                                                                                                           0
## Chrebp Activates Metabolic Gene Expression                                                                                                 0
## Chromosome Maintenance                                                                                                                     0
## Chylomicron Clearance                                                                                                                      0
## Citric Acid Cycle Tca Cycle                                                                                                                0
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                       0
## Class I Peroxisomal Membrane Protein Import                                                                                                0
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                    0
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                         0
## Coenzyme A Biosynthesis                                                                                                                    0
## Cohesin Loading Onto Chromatin                                                                                                             0
## Collagen Biosynthesis And Modifying Enzymes                                                                                                0
## Collagen Chain Trimerization                                                                                                               0
## Collagen Formation                                                                                                                         0
## Common Pathway Of Fibrin Clot Formation                                                                                                    0
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                 0
## Complex I Biogenesis                                                                                                                       0
## Conjugation Of Benzoate With Glycine                                                                                                       0
## Constitutive Signaling By Egfrviii                                                                                                         0
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                           0
## Constitutive Signaling By Overexpressed Erbb2                                                                                              0
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                 0
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                           0
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                         0
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                              0
## Copi Independent Golgi To Er Retrograde Traffic                                                                                            0
## Creatine Metabolism                                                                                                                        0
## Creb3 Factors Activate Genes                                                                                                               0
## Cristae Formation                                                                                                                          0
## Crmps In Sema3a Signaling                                                                                                                  0
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                            0
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                 0
## Crosslinking Of Collagen Fibrils                                                                                                           0
## Cs Ds Degradation                                                                                                                          0
## Cyclin D Associated Events In G1                                                                                                           0
## Cyp2e1 Reactions                                                                                                                           0
## Cytochrome C Mediated Apoptotic Response                                                                                                   0
## Cytochrome P450 Arranged By Substrate Type                                                                                                 0
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                     0
## Cytosolic Sulfonation Of Small Molecules                                                                                                   0
## Cytosolic Trna Aminoacylation                                                                                                              0
## Darpp 32 Events                                                                                                                            0
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                   0
## Deadenylation Dependent Mrna Decay                                                                                                         0
## Deadenylation Of Mrna                                                                                                                      0
## Dectin 2 Family                                                                                                                            0
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                0
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                0
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                              0
## Defective Cftr Causes Cystic Fibrosis                                                                                                      0
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                       0
## Defective Chst3 Causes Sedcjd                                                                                                              0
## Defective Chst6 Causes Mcdc1                                                                                                               0
## Defective Chsy1 Causes Tpbs                                                                                                                0
## Defective Csf2rb Causes Smdp5                                                                                                              0
## Defective Ext2 Causes Exostoses 2                                                                                                          0
## Defective F9 Activation                                                                                                                    0
## Defective Factor Ix Causes Hemophilia B                                                                                                    0
## Defective Factor Viii Causes Hemophilia A                                                                                                  0
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                 0
## Defective Lfng Causes Scdo3                                                                                                                0
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                0
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                  0
## Defects In Biotin Btn Metabolism                                                                                                           0
## Defects In Cobalamin B12 Metabolism                                                                                                        0
## Defects In Vitamin And Cofactor Metabolism                                                                                                 0
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                   0
## Degradation Of Axin                                                                                                                        0
## Degradation Of Cysteine And Homocysteine                                                                                                   0
## Degradation Of Dvl                                                                                                                         0
## Degradation Of Gli1 By The Proteasome                                                                                                      0
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                           0
## Detoxification Of Reactive Oxygen Species                                                                                                  0
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                              0
## Digestion                                                                                                                                  0
## Digestion And Absorption                                                                                                                   0
## Digestion Of Dietary Carbohydrate                                                                                                          0
## Digestion Of Dietary Lipid                                                                                                                 0
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                      0
## Diseases Associated With N Glycosylation Of Proteins                                                                                       0
## Diseases Associated With O Glycosylation Of Proteins                                                                                       0
## Diseases Associated With Surfactant Metabolism                                                                                             0
## Diseases Of Base Excision Repair                                                                                                           0
## Diseases Of Carbohydrate Metabolism                                                                                                        0
## Diseases Of Dna Repair                                                                                                                     0
## Diseases Of Mismatch Repair Mmr                                                                                                            0
## Diseases Of Mitotic Cell Cycle                                                                                                             0
## Disinhibition Of Snare Formation                                                                                                           0
## Displacement Of Dna Glycosylase By Apex1                                                                                                   0
## Dna Damage Bypass                                                                                                                          0
## Dna Damage Recognition In Gg Ner                                                                                                           0
## Dna Damage Reversal                                                                                                                        0
## Dna Damage Telomere Stress Induced Senescence                                                                                              0
## Dna Replication                                                                                                                            0
## Dna Replication Initiation                                                                                                                 0
## Dna Replication Pre Initiation                                                                                                             0
## Dna Strand Elongation                                                                                                                      0
## Dopamine Neurotransmitter Release Cycle                                                                                                    0
## Dopamine Receptors                                                                                                                         0
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                    0
## Downregulation Of Erbb2 Signaling                                                                                                          0
## Downregulation Of Erbb4 Signaling                                                                                                          0
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                   0
## Downregulation Of Tgf Beta Receptor Signaling                                                                                              0
## Downstream Signaling Of Activated Fgfr1                                                                                                    0
## Downstream Signaling Of Activated Fgfr2                                                                                                    0
## Downstream Signaling Of Activated Fgfr3                                                                                                    0
## Downstream Signaling Of Activated Fgfr4                                                                                                    0
## Dual Incision In Gg Ner                                                                                                                    0
## Dual Incision In Tc Ner                                                                                                                    0
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                          0
## Effects Of Pip2 Hydrolysis                                                                                                                 0
## Egfr Interacts With Phospholipase C Gamma                                                                                                  0
## Egfr Transactivation By Gastrin                                                                                                            0
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                             0
## Eicosanoid Ligand Binding Receptors                                                                                                        0
## Eicosanoids                                                                                                                                0
## Elastic Fibre Formation                                                                                                                    0
## Electric Transmission Across Gap Junctions                                                                                                 0
## Elevation Of Cytosolic Ca2 Levels                                                                                                          0
## Endogenous Sterols                                                                                                                         0
## Endosomal Sorting Complex Required For Transport Escrt                                                                                     0
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                           0
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                     0
## Epha Mediated Growth Cone Collapse                                                                                                         0
## Ephrin Signaling                                                                                                                           0
## Er Quality Control Compartment Erqc                                                                                                        0
## Erbb2 Activates Ptk6 Signaling                                                                                                             0
## Erbb2 Regulates Cell Motility                                                                                                              0
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                0
## Erk Mapk Targets                                                                                                                           0
## Erks Are Inactivated                                                                                                                       0
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                     0
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                     0
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                    0
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                        0
## Erythropoietin Activates Ras                                                                                                               0
## Erythropoietin Activates Stat5                                                                                                             0
## Establishment Of Sister Chromatid Cohesion                                                                                                 0
## Estrogen Biosynthesis                                                                                                                      0
## Estrogen Stimulated Signaling Through Prkcz                                                                                                0
## Ethanol Oxidation                                                                                                                          0
## Eukaryotic Translation Elongation                                                                                                          0
## Eukaryotic Translation Initiation                                                                                                          0
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                            0
## Extension Of Telomeres                                                                                                                     0
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Fanconi Anemia Pathway                                                                                                                     0
## Fatty Acids                                                                                                                                0
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                0
## Fatty Acyl Coa Biosynthesis                                                                                                                0
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                         0
## Fceri Mediated Ca 2 Mobilization                                                                                                           0
## Fcgr Activation                                                                                                                            0
## Fertilization                                                                                                                              0
## Fgfr1 Ligand Binding And Activation                                                                                                        0
## Fgfr1b Ligand Binding And Activation                                                                                                       0
## Fgfr1c Ligand Binding And Activation                                                                                                       0
## Fgfr2 Alternative Splicing                                                                                                                 0
## Fgfr2 Ligand Binding And Activation                                                                                                        0
## Fgfr2 Mutant Receptor Activation                                                                                                           0
## Fgfr2b Ligand Binding And Activation                                                                                                       0
## Fgfr2c Ligand Binding And Activation                                                                                                       0
## Fgfr3 Ligand Binding And Activation                                                                                                        0
## Fgfr3b Ligand Binding And Activation                                                                                                       0
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                       0
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                             0
## Flt3 Signaling                                                                                                                             0
## Flt3 Signaling By Cbl Mutants                                                                                                              0
## Flt3 Signaling In Disease                                                                                                                  0
## Flt3 Signaling Through Src Family Kinases                                                                                                  0
## Folding Of Actin By Cct Tric                                                                                                               0
## Formation Of Apoptosome                                                                                                                    0
## Formation Of Atp By Chemiosmotic Coupling                                                                                                  0
## Formation Of Fibrin Clot Clotting Cascade                                                                                                  0
## Formation Of Incision Complex In Gg Ner                                                                                                    0
## Formation Of Rna Pol Ii Elongation Complex                                                                                                 0
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                               0
## Formation Of Tc Ner Pre Incision Complex                                                                                                   0
## Formation Of The Cornified Envelope                                                                                                        0
## Formation Of The Early Elongation Complex                                                                                                  0
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                     0
## Formation Of Xylulose 5 Phosphate                                                                                                          0
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                       0
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                               0
## Free Fatty Acid Receptors                                                                                                                  0
## Free Fatty Acids Regulate Insulin Secretion                                                                                                0
## Frs Mediated Fgfr1 Signaling                                                                                                               0
## Frs Mediated Fgfr2 Signaling                                                                                                               0
## Frs Mediated Fgfr3 Signaling                                                                                                               0
## Frs Mediated Fgfr4 Signaling                                                                                                               0
## Fructose Catabolism                                                                                                                        0
## Fructose Metabolism                                                                                                                        0
## G Alpha 12 13 Signalling Events                                                                                                            0
## G Alpha S Signalling Events                                                                                                                0
## G Alpha Z Signalling Events                                                                                                                0
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                  0
## G Protein Activation                                                                                                                       0
## G1 S Dna Damage Checkpoints                                                                                                                0
## G2 Phase                                                                                                                                   0
## Gab1 Signalosome                                                                                                                           0
## Gaba B Receptor Activation                                                                                                                 0
## Gaba Receptor Activation                                                                                                                   0
## Gaba Synthesis Release Reuptake And Degradation                                                                                            0
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                        0
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                      0
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                    0
## Gap Junction Assembly                                                                                                                      0
## Gap Junction Degradation                                                                                                                   0
## Gap Junction Trafficking And Regulation                                                                                                    0
## Gdp Fucose Biosynthesis                                                                                                                    0
## Gene Silencing By Rna                                                                                                                      0
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                0
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                            0
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                   0
## Glucagon Signaling In Metabolic Regulation                                                                                                 0
## Glucagon Type Ligand Receptors                                                                                                             0
## Glucocorticoid Biosynthesis                                                                                                                0
## Gluconeogenesis                                                                                                                            0
## Glucose Metabolism                                                                                                                         0
## Glucuronidation                                                                                                                            0
## Glutamate And Glutamine Metabolism                                                                                                         0
## Glutamate Neurotransmitter Release Cycle                                                                                                   0
## Glutathione Conjugation                                                                                                                    0
## Glutathione Synthesis And Recycling                                                                                                        0
## Glycerophospholipid Biosynthesis                                                                                                           0
## Glycerophospholipid Catabolism                                                                                                             0
## Glycogen Breakdown Glycogenolysis                                                                                                          0
## Glycogen Metabolism                                                                                                                        0
## Glycogen Storage Diseases                                                                                                                  0
## Glycogen Synthesis                                                                                                                         0
## Glycolysis                                                                                                                                 0
## Glycosphingolipid Metabolism                                                                                                               0
## Glyoxylate Metabolism And Glycine Degradation                                                                                              0
## Golgi Associated Vesicle Biogenesis                                                                                                        0
## Golgi To Er Retrograde Transport                                                                                                           0
## Gp1b Ix V Activation Signalling                                                                                                            0
## Grb2 Events In Erbb2 Signaling                                                                                                             0
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                  0
## Grb7 Events In Erbb2 Signaling                                                                                                             0
## Hats Acetylate Histones                                                                                                                    0
## Hcmv Late Events                                                                                                                           0
## Hdacs Deacetylate Histones                                                                                                                 0
## Hdms Demethylate Histones                                                                                                                  0
## Hdr Through Homologous Recombination Hrr                                                                                                   0
## Hdr Through Mmej Alt Nhej                                                                                                                  0
## Hdr Through Single Strand Annealing Ssa                                                                                                    0
## Hedgehog Ligand Biogenesis                                                                                                                 0
## Hedgehog Off State                                                                                                                         0
## Hedgehog On State                                                                                                                          0
## Heme Biosynthesis                                                                                                                          0
## Heme Degradation                                                                                                                           0
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                  0
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                 0
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                    0
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                     0
## Histidine Catabolism                                                                                                                       0
## Hiv Elongation Arrest And Recovery                                                                                                         0
## Hiv Transcription Elongation                                                                                                               0
## Hiv Transcription Initiation                                                                                                               0
## Homologous Dna Pairing And Strand Exchange                                                                                                 0
## Homology Directed Repair                                                                                                                   0
## Hormone Ligand Binding Receptors                                                                                                           0
## Host Interactions Of Hiv Factors                                                                                                           0
## Hs Gag Biosynthesis                                                                                                                        0
## Hs Gag Degradation                                                                                                                         0
## Hsf1 Activation                                                                                                                            0
## Hsf1 Dependent Transactivation                                                                                                             0
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                    0
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                       0
## Hyaluronan Biosynthesis And Export                                                                                                         0
## Hyaluronan Metabolism                                                                                                                      0
## Hyaluronan Uptake And Degradation                                                                                                          0
## Hydrolysis Of Lpc                                                                                                                          0
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                            0
## Infection With Mycobacterium Tuberculosis                                                                                                  0
## Influenza Infection                                                                                                                        0
## Inhibition Of Dna Recombination At Telomere                                                                                                0
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                            0
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                0
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                              0
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                               0
## Inositol Phosphate Metabolism                                                                                                              0
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                0
## Insulin Processing                                                                                                                         0
## Insulin Receptor Recycling                                                                                                                 0
## Integration Of Energy Metabolism                                                                                                           0
## Integration Of Provirus                                                                                                                    0
## Integrin Cell Surface Interactions                                                                                                         0
## Integrin Signaling                                                                                                                         0
## Interaction Between L1 And Ankyrins                                                                                                        0
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                      0
## Interactions Of Rev With Host Cellular Proteins                                                                                            0
## Interactions Of Vpr With Host Cellular Proteins                                                                                            0
## Interconversion Of Nucleotide Di And Triphosphates                                                                                         0
## Interleukin 36 Pathway                                                                                                                     0
## Intestinal Absorption                                                                                                                      0
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                             0
## Intra Golgi Traffic                                                                                                                        0
## Intraflagellar Transport                                                                                                                   0
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                 0
## Inwardly Rectifying K Channels                                                                                                             0
## Ion Channel Transport                                                                                                                      0
## Ion Homeostasis                                                                                                                            0
## Ion Transport By P Type Atpases                                                                                                            0
## Ionotropic Activity Of Kainate Receptors                                                                                                   0
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                  0
## Ire1alpha Activates Chaperones                                                                                                             0
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                     0
## Irf3 Mediated Induction Of Type I Ifn                                                                                                      0
## Iron Uptake And Transport                                                                                                                  0
## Irs Activation                                                                                                                             0
## Josephin Domain Dubs                                                                                                                       0
## Keratan Sulfate Biosynthesis                                                                                                               0
## Keratan Sulfate Degradation                                                                                                                0
## Keratan Sulfate Keratin Metabolism                                                                                                         0
## Keratinization                                                                                                                             0
## Ketone Body Metabolism                                                                                                                     0
## Kinesins                                                                                                                                   0
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                     0
## L1cam Interactions                                                                                                                         0
## Lagging Strand Synthesis                                                                                                                   0
## Laminin Interactions                                                                                                                       0
## Late Endosomal Microautophagy                                                                                                              0
## Ldl Clearance                                                                                                                              0
## Lectin Pathway Of Complement Activation                                                                                                    0
## Leukotriene Receptors                                                                                                                      0
## Lgi Adam Interactions                                                                                                                      0
## Ligand Receptor Interactions                                                                                                               0
## Linoleic Acid La Metabolism                                                                                                                0
## Lipid Particle Organization                                                                                                                0
## Lipophagy                                                                                                                                  0
## Listeria Monocytogenes Entry Into Host Cells                                                                                               0
## Long Term Potentiation                                                                                                                     0
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                 0
## Loss Of Function Of Smad2 3 In Cancer                                                                                                      0
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                     0
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                     0
## Ltc4 Cysltr Mediated Il4 Production                                                                                                        0
## Lysine Catabolism                                                                                                                          0
## Lysosome Vesicle Biogenesis                                                                                                                0
## Lysosphingolipid And Lpa Receptors                                                                                                         0
## Map2k And Mapk Activation                                                                                                                  0
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                   0
## Mapk1 Erk2 Activation                                                                                                                      0
## Maturation Of Nucleoprotein                                                                                                                0
## Maturation Of Protein 3a                                                                                                                   0
## Maturation Of Sars Cov 1 Spike Protein                                                                                                     0
## Maturation Of Sars Cov 2 Spike Protein                                                                                                     0
## Meiosis                                                                                                                                    0
## Meiotic Recombination                                                                                                                      0
## Meiotic Synapsis                                                                                                                           0
## Melanin Biosynthesis                                                                                                                       0
## Met Activates Pi3k Akt Signaling                                                                                                           0
## Met Activates Ptk2 Signaling                                                                                                               0
## Met Activates Ptpn11                                                                                                                       0
## Met Activates Rap1 And Rac1                                                                                                                0
## Met Activates Ras Signaling                                                                                                                0
## Met Interacts With Tns Proteins                                                                                                            0
## Met Promotes Cell Motility                                                                                                                 0
## Met Receptor Activation                                                                                                                    0
## Met Receptor Recycling                                                                                                                     0
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                        0
## Metabolism Of Amine Derived Hormones                                                                                                       0
## Metabolism Of Angiotensinogen To Angiotensins                                                                                              0
## Metabolism Of Cofactors                                                                                                                    0
## Metabolism Of Folate And Pterines                                                                                                          0
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                           0
## Metabolism Of Nucleotides                                                                                                                  0
## Metabolism Of Polyamines                                                                                                                   0
## Metabolism Of Porphyrins                                                                                                                   0
## Metabolism Of Rna                                                                                                                          0
## Metabolism Of Steroid Hormones                                                                                                             0
## Metabolism Of Steroids                                                                                                                     0
## Metal Ion Slc Transporters                                                                                                                 0
## Metal Sequestration By Antimicrobial Proteins                                                                                              0
## Metallothioneins Bind Metals                                                                                                               0
## Methionine Salvage Pathway                                                                                                                 0
## Methylation                                                                                                                                0
## Microrna Mirna Biogenesis                                                                                                                  0
## Mineralocorticoid Biosynthesis                                                                                                             0
## Miro Gtpase Cycle                                                                                                                          0
## Miscellaneous Substrates                                                                                                                   0
## Miscellaneous Transport And Binding Events                                                                                                 0
## Mismatch Repair                                                                                                                            0
## Mitochondrial Calcium Ion Transport                                                                                                        0
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                    0
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                           0
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                         0
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                               0
## Mitochondrial Protein Import                                                                                                               0
## Mitochondrial Translation                                                                                                                  0
## Mitochondrial Trna Aminoacylation                                                                                                          0
## Mitochondrial Uncoupling                                                                                                                   0
## Mitotic Spindle Checkpoint                                                                                                                 0
## Mitotic Telophase Cytokinesis                                                                                                              0
## Modulation By Mtb Of Host Immune System                                                                                                    0
## Molecules Associated With Elastic Fibres                                                                                                   0
## Molybdenum Cofactor Biosynthesis                                                                                                           0
## Mrna Capping                                                                                                                               0
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                       0
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                       0
## Mrna Editing                                                                                                                               0
## Mrna Editing C To U Conversion                                                                                                             0
## Mrna Splicing                                                                                                                              0
## Mrna Splicing Minor Pathway                                                                                                                0
## Mtor Signalling                                                                                                                            0
## Mtorc1 Mediated Signalling                                                                                                                 0
## Mucopolysaccharidoses                                                                                                                      0
## Multifunctional Anion Exchangers                                                                                                           0
## Muscarinic Acetylcholine Receptors                                                                                                         0
## Myoclonic Epilepsy Of Lafora                                                                                                               0
## N Glycan Antennae Elongation                                                                                                               0
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                     0
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                          0
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                0
## Na Cl Dependent Neurotransmitter Transporters                                                                                              0
## Nade Modulates Death Signalling                                                                                                            0
## Ncam1 Interactions                                                                                                                         0
## Nectin Necl Trans Heterodimerization                                                                                                       0
## Neddylation                                                                                                                                0
## Nef And Signal Transduction                                                                                                                0
## Nef Mediated Cd4 Down Regulation                                                                                                           0
## Nef Mediated Cd8 Down Regulation                                                                                                           0
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                 0
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                             0
## Negative Feedback Regulation Of Mapk Pathway                                                                                               0
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                 0
## Negative Regulation Of Fgfr1 Signaling                                                                                                     0
## Negative Regulation Of Fgfr2 Signaling                                                                                                     0
## Negative Regulation Of Fgfr3 Signaling                                                                                                     0
## Negative Regulation Of Fgfr4 Signaling                                                                                                     0
## Negative Regulation Of Flt3                                                                                                                0
## Negative Regulation Of Mapk Pathway                                                                                                        0
## Negative Regulation Of Met Activity                                                                                                        0
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                        0
## Negative Regulation Of Notch4 Signaling                                                                                                    0
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                 0
## Nephrin Family Interactions                                                                                                                0
## Netrin Mediated Repulsion Signals                                                                                                          0
## Neurexins And Neuroligins                                                                                                                  0
## Neurofascin Interactions                                                                                                                   0
## Neurotoxicity Of Clostridium Toxins                                                                                                        0
## Neurotransmitter Clearance                                                                                                                 0
## Neurotransmitter Release Cycle                                                                                                             0
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                   0
## Ngf Independant Trka Activation                                                                                                            0
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                  0
## Non Integrin Membrane Ecm Interactions                                                                                                     0
## Noncanonical Activation Of Notch3                                                                                                          0
## Nonhomologous End Joining Nhej                                                                                                             0
## Nonsense Mediated Decay Nmd                                                                                                                0
## Norepinephrine Neurotransmitter Release Cycle                                                                                              0
## Notch Hlh Transcription Pathway                                                                                                            0
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch3 Intracellular Domain Regulates Transcription                                                                                        0
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                0
## Notch4 Intracellular Domain Regulates Transcription                                                                                        0
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                         0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                             0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                 0
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                           0
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                      0
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                           0
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                            0
## Nrcam Interactions                                                                                                                         0
## Ns1 Mediated Effects On Host Pathways                                                                                                      0
## Ntrk2 Activates Rac1                                                                                                                       0
## Nuclear Import Of Rev Protein                                                                                                              0
## Nuclear Receptor Transcription Pathway                                                                                                     0
## Nuclear Signaling By Erbb4                                                                                                                 0
## Nucleobase Biosynthesis                                                                                                                    0
## Nucleobase Catabolism                                                                                                                      0
## Nucleotide Excision Repair                                                                                                                 0
## Nucleotide Like Purinergic Receptors                                                                                                       0
## Nucleotide Salvage                                                                                                                         0
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                          0
## O Linked Glycosylation                                                                                                                     0
## O Linked Glycosylation Of Mucins                                                                                                           0
## Oas Antiviral Response                                                                                                                     0
## Olfactory Signaling Pathway                                                                                                                0
## Oncogene Induced Senescence                                                                                                                0
## Oncogenic Mapk Signaling                                                                                                                   0
## Opsins                                                                                                                                     0
## Orc1 Removal From Chromatin                                                                                                                0
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                    0
## Organic Anion Transport                                                                                                                    0
## Organic Anion Transporters                                                                                                                 0
## Organic Cation Anion Zwitterion Transport                                                                                                  0
## Organic Cation Transport                                                                                                                   0
## Other Interleukin Signaling                                                                                                                0
## P130cas Linkage To Mapk Signaling For Integrins                                                                                            0
## P2y Receptors                                                                                                                              0
## P38mapk Events                                                                                                                             0
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                             0
## P75ntr Regulates Axonogenesis                                                                                                              0
## Passive Transport By Aquaporins                                                                                                            0
## Pcna Dependent Long Patch Base Excision Repair                                                                                             0
## Pecam1 Interactions                                                                                                                        0
## Pentose Phosphate Pathway                                                                                                                  0
## Peptide Hormone Biosynthesis                                                                                                               0
## Peroxisomal Lipid Metabolism                                                                                                               0
## Peroxisomal Protein Import                                                                                                                 0
## Pexophagy                                                                                                                                  0
## Phase 0 Rapid Depolarisation                                                                                                               0
## Phase 1 Inactivation Of Fast Na Channels                                                                                                   0
## Phase 2 Plateau Phase                                                                                                                      0
## Phase 3 Rapid Repolarisation                                                                                                               0
## Phase I Functionalization Of Compounds                                                                                                     0
## Phase Ii Conjugation Of Compounds                                                                                                          0
## Phenylalanine And Tyrosine Metabolism                                                                                                      0
## Phenylalanine Metabolism                                                                                                                   0
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                              0
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                 0
## Phospholipase C Mediated Cascade Fgfr2                                                                                                     0
## Phospholipase C Mediated Cascade Fgfr4                                                                                                     0
## Phospholipid Metabolism                                                                                                                    0
## Physiological Factors                                                                                                                      0
## Pi 3k Cascade Fgfr1                                                                                                                        0
## Pi 3k Cascade Fgfr2                                                                                                                        0
## Pi 3k Cascade Fgfr3                                                                                                                        0
## Pi 3k Cascade Fgfr4                                                                                                                        0
## Pi Metabolism                                                                                                                              0
## Pi3k Akt Activation                                                                                                                        0
## Pi3k Events In Erbb2 Signaling                                                                                                             0
## Pi3k Events In Erbb4 Signaling                                                                                                             0
## Pi5p Regulates Tp53 Acetylation                                                                                                            0
## Piwi Interacting Rna Pirna Biogenesis                                                                                                      0
## Pka Activation In Glucagon Signalling                                                                                                      0
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                      0
## Pkmts Methylate Histone Lysines                                                                                                            0
## Platelet Adhesion To Exposed Collagen                                                                                                      0
## Platelet Aggregation Plug Formation                                                                                                        0
## Platelet Calcium Homeostasis                                                                                                               0
## Platelet Homeostasis                                                                                                                       0
## Platelet Sensitization By Ldl                                                                                                              0
## Polb Dependent Long Patch Base Excision Repair                                                                                             0
## Polo Like Kinase Mediated Events                                                                                                           0
## Polymerase Switching                                                                                                                       0
## Polymerase Switching On The C Strand Of The Telomere                                                                                       0
## Positive Epigenetic Regulation Of Rrna Expression                                                                                          0
## Post Chaperonin Tubulin Folding Pathway                                                                                                    0
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                           0
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                            0
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                   0
## Pre Notch Expression And Processing                                                                                                        0
## Pre Notch Processing In Golgi                                                                                                              0
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                          0
## Pregnenolone Biosynthesis                                                                                                                  0
## Presynaptic Depolarization And Calcium Channel Opening                                                                                     0
## Presynaptic Function Of Kainate Receptors                                                                                                  0
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                  0
## Processing And Activation Of Sumo                                                                                                          0
## Processing Of Capped Intron Containing Pre Mrna                                                                                            0
## Processing Of Capped Intronless Pre Mrna                                                                                                   0
## Processing Of Dna Double Strand Break Ends                                                                                                 0
## Processing Of Intronless Pre Mrnas                                                                                                         0
## Processing Of Smdt1                                                                                                                        0
## Processive Synthesis On The C Strand Of The Telomere                                                                                       0
## Processive Synthesis On The Lagging Strand                                                                                                 0
## Prolactin Receptor Signaling                                                                                                               0
## Prolonged Erk Activation Events                                                                                                            0
## Propionyl Coa Catabolism                                                                                                                   0
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                      0
## Prostanoid Ligand Receptors                                                                                                                0
## Protein Localization                                                                                                                       0
## Protein Methylation                                                                                                                        0
## Protein Protein Interactions At Synapses                                                                                                   0
## Protein Repair                                                                                                                             0
## Protein Ubiquitination                                                                                                                     0
## Proton Coupled Monocarboxylate Transport                                                                                                   0
## Pten Regulation                                                                                                                            0
## Ptk6 Expression                                                                                                                            0
## Ptk6 Promotes Hif1a Stabilization                                                                                                          0
## Ptk6 Regulates Cell Cycle                                                                                                                  0
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                         0
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                      0
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                      0
## Purine Catabolism                                                                                                                          0
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                           0
## Purine Salvage                                                                                                                             0
## Pyrimidine Catabolism                                                                                                                      0
## Pyrimidine Salvage                                                                                                                         0
## Pyruvate Metabolism                                                                                                                        0
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                              0
## Ra Biosynthesis Pathway                                                                                                                    0
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                      0
## Rab Geranylgeranylation                                                                                                                    0
## Rab Regulation Of Trafficking                                                                                                              0
## Raf Activation                                                                                                                             0
## Rap1 Signalling                                                                                                                            0
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                       0
## Ras Processing                                                                                                                             0
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                  0
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                               0
## Receptor Type Tyrosine Protein Phosphatases                                                                                                0
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                     0
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                           0
## Recycling Of Bile Acids And Salts                                                                                                          0
## Recycling Of Eif2 Gdp                                                                                                                      0
## Recycling Pathway Of L1                                                                                                                    0
## Reduction Of Cytosolic Ca Levels                                                                                                           0
## Reelin Signalling Pathway                                                                                                                  0
## Regulated Proteolysis Of P75ntr                                                                                                            0
## Regulation Of Bach1 Activity                                                                                                               0
## Regulation Of Beta Cell Development                                                                                                        0
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                      0
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                0
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                         0
## Regulation Of Expression Of Slits And Robos                                                                                                0
## Regulation Of Fzd By Ubiquitination                                                                                                        0
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                  0
## Regulation Of Gene Expression In Beta Cells                                                                                                0
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                          0
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                              0
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                         0
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                0
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                           0
## Regulation Of Hmox1 Expression And Activity                                                                                                0
## Regulation Of Ifna Signaling                                                                                                               0
## Regulation Of Ifng Signaling                                                                                                               0
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                     0
## Regulation Of Insulin Secretion                                                                                                            0
## Regulation Of Kit Signaling                                                                                                                0
## Regulation Of Localization Of Foxo Transcription Factors                                                                                   0
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                        0
## Regulation Of Pten Gene Transcription                                                                                                      0
## Regulation Of Pten Localization                                                                                                            0
## Regulation Of Pten Mrna Translation                                                                                                        0
## Regulation Of Pten Stability And Activity                                                                                                  0
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                           0
## Regulation Of Ras By Gaps                                                                                                                  0
## Regulation Of Runx1 Expression And Activity                                                                                                0
## Regulation Of Runx2 Expression And Activity                                                                                                0
## Regulation Of Runx3 Expression And Activity                                                                                                0
## Regulation Of Signaling By Cbl                                                                                                             0
## Regulation Of Signaling By Nodal                                                                                                           0
## Regulation Of Tp53 Activity Through Acetylation                                                                                            0
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                            0
## Regulation Of Tp53 Activity Through Methylation                                                                                            0
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                        0
## Relaxin Receptors                                                                                                                          0
## Release Of Apoptotic Factors From The Mitochondria                                                                                         0
## Release Of Hh Np From The Secreting Cell                                                                                                   0
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                      0
## Reproduction                                                                                                                               0
## Resolution Of Abasic Sites Ap Sites                                                                                                        0
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                               0
## Resolution Of D Loop Structures                                                                                                            0
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                          0
## Respiratory Electron Transport                                                                                                             0
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                           0
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                 0
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                          0
## Response Of Mtb To Phagocytosis                                                                                                            0
## Response To Metal Ions                                                                                                                     0
## Ret Signaling                                                                                                                              0
## Retinoid Cycle Disease Events                                                                                                              0
## Retrograde Neurotrophin Signalling                                                                                                         0
## Retrograde Transport At The Trans Golgi Network                                                                                            0
## Reversible Hydration Of Carbon Dioxide                                                                                                     0
## Rho Gtpases Activate Cit                                                                                                                   0
## Rho Gtpases Activate Nadph Oxidases                                                                                                        0
## Rho Gtpases Activate Pkns                                                                                                                  0
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                               0
## Rho Gtpases Activate Rocks                                                                                                                 0
## Rhobtb Gtpase Cycle                                                                                                                        0
## Rhobtb1 Gtpase Cycle                                                                                                                       0
## Rhobtb2 Gtpase Cycle                                                                                                                       0
## Rhobtb3 Atpase Cycle                                                                                                                       0
## Rhot1 Gtpase Cycle                                                                                                                         0
## Rna Polymerase I Promoter Escape                                                                                                           0
## Rna Polymerase I Transcription                                                                                                             0
## Rna Polymerase I Transcription Initiation                                                                                                  0
## Rna Polymerase I Transcription Termination                                                                                                 0
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                  0
## Rna Polymerase Ii Transcription Termination                                                                                                0
## Rna Polymerase Iii Chain Elongation                                                                                                        0
## Rna Polymerase Iii Transcription                                                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                           0
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                           0
## Rna Polymerase Iii Transcription Termination                                                                                               0
## Robo Receptors Bind Akap5                                                                                                                  0
## Role Of Abl In Robo Slit Signaling                                                                                                         0
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                              0
## Role Of Phospholipids In Phagocytosis                                                                                                      0
## Role Of Second Messengers In Netrin 1 Signaling                                                                                            0
## Rora Activates Gene Expression                                                                                                             0
## Rrna Modification In The Mitochondrion                                                                                                     0
## Rrna Modification In The Nucleus And Cytosol                                                                                               0
## Rrna Processing                                                                                                                            0
## Rrna Processing In The Mitochondrion                                                                                                       0
## Rsk Activation                                                                                                                             0
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                         0
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                   0
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                0
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                      0
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                           0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                 0
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                        0
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                   0
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                           0
## Runx2 Regulates Bone Development                                                                                                           0
## Runx2 Regulates Chondrocyte Maturation                                                                                                     0
## Runx2 Regulates Genes Involved In Cell Migration                                                                                           0
## Runx2 Regulates Osteoblast Differentiation                                                                                                 0
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                  0
## Runx3 Regulates Cdkn1a Transcription                                                                                                       0
## Runx3 Regulates Immune Response And Cell Migration                                                                                         0
## Runx3 Regulates Notch Signaling                                                                                                            0
## Runx3 Regulates P14 Arf                                                                                                                    0
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                0
## Sars Cov 1 Genome Replication And Transcription                                                                                            0
## Sars Cov 1 Infection                                                                                                                       0
## Sars Cov 2 Infection                                                                                                                       0
## Scavenging By Class F Receptors                                                                                                            0
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                   0
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                            0
## Selenoamino Acid Metabolism                                                                                                                0
## Sema3a Pak Dependent Axon Repulsion                                                                                                        0
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                          0
## Sema4d In Semaphorin Signaling                                                                                                             0
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                     0
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                0
## Sensing Of Dna Double Strand Breaks                                                                                                        0
## Sensory Processing Of Sound                                                                                                                0
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                             0
## Separation Of Sister Chromatids                                                                                                            0
## Serine Biosynthesis                                                                                                                        0
## Serotonin And Melatonin Biosynthesis                                                                                                       0
## Serotonin Neurotransmitter Release Cycle                                                                                                   0
## Serotonin Receptors                                                                                                                        0
## Shc Mediated Cascade Fgfr1                                                                                                                 0
## Shc Mediated Cascade Fgfr3                                                                                                                 0
## Shc Mediated Cascade Fgfr4                                                                                                                 0
## Shc Related Events Triggered By Igf1r                                                                                                      0
## Shc1 Events In Egfr Signaling                                                                                                              0
## Shc1 Events In Erbb2 Signaling                                                                                                             0
## Shc1 Events In Erbb4 Signaling                                                                                                             0
## Sialic Acid Metabolism                                                                                                                     0
## Signal Amplification                                                                                                                       0
## Signal Attenuation                                                                                                                         0
## Signal Regulatory Protein Family Interactions                                                                                              0
## Signal Transduction By L1                                                                                                                  0
## Signaling By Activin                                                                                                                       0
## Signaling By Bmp                                                                                                                           0
## Signaling By Braf And Raf Fusions                                                                                                          0
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                   0
## Signaling By Egfr In Cancer                                                                                                                0
## Signaling By Erbb2                                                                                                                         0
## Signaling By Erbb2 Ecd Mutants                                                                                                             0
## Signaling By Erbb2 In Cancer                                                                                                               0
## Signaling By Erbb4                                                                                                                         0
## Signaling By Erythropoietin                                                                                                                0
## Signaling By Fgfr                                                                                                                          0
## Signaling By Fgfr1                                                                                                                         0
## Signaling By Fgfr2                                                                                                                         0
## Signaling By Fgfr2 Iiia Tm                                                                                                                 0
## Signaling By Fgfr2 In Disease                                                                                                              0
## Signaling By Fgfr3                                                                                                                         0
## Signaling By Fgfr3 Fusions In Cancer                                                                                                       0
## Signaling By Fgfr4                                                                                                                         0
## Signaling By Fgfr4 In Disease                                                                                                              0
## Signaling By Flt3 Fusion Proteins                                                                                                          0
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                      0
## Signaling By Hedgehog                                                                                                                      0
## Signaling By Hippo                                                                                                                         0
## Signaling By Lrp5 Mutants                                                                                                                  0
## Signaling By Mapk Mutants                                                                                                                  0
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                 0
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                         0
## Signaling By Mras Complex Mutants                                                                                                          0
## Signaling By Mst1                                                                                                                          0
## Signaling By Nodal                                                                                                                         0
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                            0
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                          0
## Signaling By Notch3                                                                                                                        0
## Signaling By Notch4                                                                                                                        0
## Signaling By Ntrk2 Trkb                                                                                                                    0
## Signaling By Ntrk3 Trkc                                                                                                                    0
## Signaling By Retinoic Acid                                                                                                                 0
## Signaling By Rnf43 Mutants                                                                                                                 0
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                           0
## Signaling By Wnt In Cancer                                                                                                                 0
## Signalling To Erks                                                                                                                         0
## Signalling To P38 Via Rit And Rin                                                                                                          0
## Signalling To Ras                                                                                                                          0
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                       0
## Slc Mediated Transmembrane Transport                                                                                                       0
## Slc Transporter Disorders                                                                                                                  0
## Smac Xiap Regulated Apoptotic Response                                                                                                     0
## Small Interfering Rna Sirna Biogenesis                                                                                                     0
## Smooth Muscle Contraction                                                                                                                  0
## Snrnp Assembly                                                                                                                             0
## Sodium Calcium Exchangers                                                                                                                  0
## Sodium Coupled Phosphate Cotransporters                                                                                                    0
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                0
## Sodium Proton Exchangers                                                                                                                   0
## Sos Mediated Signalling                                                                                                                    0
## Sperm Motility And Taxes                                                                                                                   0
## Sphingolipid De Novo Biosynthesis                                                                                                          0
## Sphingolipid Metabolism                                                                                                                    0
## Spry Regulation Of Fgf Signaling                                                                                                           0
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                0
## Stabilization Of P53                                                                                                                       0
## Stat5 Activation                                                                                                                           0
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                            0
## Stimuli Sensing Channels                                                                                                                   0
## Sting Mediated Induction Of Host Immune Responses                                                                                          0
## Striated Muscle Contraction                                                                                                                0
## Sulfide Oxidation To Sulfate                                                                                                               0
## Sulfur Amino Acid Metabolism                                                                                                               0
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                         0
## Sumo Is Proteolytically Processed                                                                                                          0
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                               0
## Sumoylation Of Chromatin Organization Proteins                                                                                             0
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                     0
## Sumoylation Of Dna Replication Proteins                                                                                                    0
## Sumoylation Of Intracellular Receptors                                                                                                     0
## Sumoylation Of Rna Binding Proteins                                                                                                        0
## Sumoylation Of Sumoylation Proteins                                                                                                        0
## Sumoylation Of Transcription Cofactors                                                                                                     0
## Sumoylation Of Transcription Factors                                                                                                       0
## Sumoylation Of Ubiquitinylation Proteins                                                                                                   0
## Suppression Of Apoptosis                                                                                                                   0
## Suppression Of Phagosomal Maturation                                                                                                       0
## Surfactant Metabolism                                                                                                                      0
## Switching Of Origins To A Post Replicative State                                                                                           0
## Synaptic Adhesion Like Molecules                                                                                                           0
## Syndecan Interactions                                                                                                                      0
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                          0
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                      0
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                      0
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                   0
## Synthesis Of Bile Acids And Bile Salts                                                                                                     0
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                           0
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                       0
## Synthesis Of Diphthamide Eef2                                                                                                              0
## Synthesis Of Dolichyl Phosphate                                                                                                            0
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                              0
## Synthesis Of Gdp Mannose                                                                                                                   0
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                              0
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                 0
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                    0
## Synthesis Of Ketone Bodies                                                                                                                 0
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                 0
## Synthesis Of Lipoxins Lx                                                                                                                   0
## Synthesis Of Pa                                                                                                                            0
## Synthesis Of Pc                                                                                                                            0
## Synthesis Of Pe                                                                                                                            0
## Synthesis Of Pg                                                                                                                            0
## Synthesis Of Pi                                                                                                                            0
## Synthesis Of Pips At The Early Endosome Membrane                                                                                           0
## Synthesis Of Pips At The Er Membrane                                                                                                       0
## Synthesis Of Pips At The Golgi Membrane                                                                                                    0
## Synthesis Of Pips At The Late Endosome Membrane                                                                                            0
## Synthesis Of Pips At The Plasma Membrane                                                                                                   0
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                 0
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                            0
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                      0
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                               0
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                 0
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                             0
## Tachykinin Receptors Bind Tachykinins                                                                                                      0
## Tbc Rabgaps                                                                                                                                0
## Telomere C Strand Lagging Strand Synthesis                                                                                                 0
## Telomere C Strand Synthesis Initiation                                                                                                     0
## Telomere Extension By Telomerase                                                                                                           0
## Telomere Maintenance                                                                                                                       0
## Terminal Pathway Of Complement                                                                                                             0
## Termination Of O Glycan Biosynthesis                                                                                                       0
## Termination Of Translesion Dna Synthesis                                                                                                   0
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                         0
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                            0
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                               0
## Tgf Beta Receptor Signaling Activates Smads                                                                                                0
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                    0
## The Activation Of Arylsulfatases                                                                                                           0
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                       0
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                               0
## The Fatty Acid Cycling Model                                                                                                               0
## The Phototransduction Cascade                                                                                                              0
## The Retinoid Cycle In Cones Daylight Vision                                                                                                0
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                              0
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                            0
## Thromboxane Signalling Through Tp Receptor                                                                                                 0
## Thyroxine Biosynthesis                                                                                                                     0
## Tie2 Signaling                                                                                                                             0
## Tight Junction Interactions                                                                                                                0
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                    0
## Tp53 Regulates Metabolic Genes                                                                                                             0
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                           0
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                            0
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                           0
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                0
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                           0
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                     0
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                     0
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain       0
## Traf3 Dependent Irf Activation Pathway                                                                                                     0
## Traf6 Mediated Irf7 Activation                                                                                                             0
## Trafficking Of Ampa Receptors                                                                                                              0
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                             0
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                        0
## Trail Signaling                                                                                                                            0
## Trans Golgi Network Vesicle Budding                                                                                                        0
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                    0
## Transcription Of The Hiv Genome                                                                                                            0
## Transcriptional Regulation By E2f6                                                                                                         0
## Transcriptional Regulation By Small Rnas                                                                                                   0
## Transcriptional Regulation By Ventx                                                                                                        0
## Transcriptional Regulation Of Testis Differentiation                                                                                       0
## Transferrin Endocytosis And Recycling                                                                                                      0
## Translation                                                                                                                                0
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                             0
## Translation Of Sars Cov 1 Structural Proteins                                                                                              0
## Translation Of Sars Cov 2 Structural Proteins                                                                                              0
## Translesion Synthesis By Polh                                                                                                              0
## Translesion Synthesis By Polk                                                                                                              0
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                         0
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                       0
## Transport And Synthesis Of Paps                                                                                                            0
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                   0
## Transport Of Connexons To The Plasma Membrane                                                                                              0
## Transport Of Fatty Acids                                                                                                                   0
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                        0
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                              0
## Transport Of Mature Transcript To Cytoplasm                                                                                                0
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                   0
## Transport Of Nucleotide Sugars                                                                                                             0
## Transport Of Organic Anions                                                                                                                0
## Transport Of The Slbp Dependant Mature Mrna                                                                                                0
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                    0
## Triglyceride Biosynthesis                                                                                                                  0
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                      0
## Trna Aminoacylation                                                                                                                        0
## Trna Modification In The Mitochondrion                                                                                                     0
## Trna Modification In The Nucleus And Cytosol                                                                                               0
## Trna Processing                                                                                                                            0
## Trna Processing In The Mitochondrion                                                                                                       0
## Trna Processing In The Nucleus                                                                                                             0
## Trp Channels                                                                                                                               0
## Tryptophan Catabolism                                                                                                                      0
## Type I Hemidesmosome Assembly                                                                                                              0
## Tyrosine Catabolism                                                                                                                        0
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                        0
## Ubiquinol Biosynthesis                                                                                                                     0
## Uch Proteinases                                                                                                                            0
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                              0
## Unwinding Of Dna                                                                                                                           0
## Uptake And Actions Of Bacterial Toxins                                                                                                     0
## Uptake And Function Of Anthrax Toxins                                                                                                      0
## Uptake And Function Of Diphtheria Toxin                                                                                                    0
## Urea Cycle                                                                                                                                 0
## Vasopressin Like Receptors                                                                                                                 0
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                               0
## Vegf Ligand Receptor Interactions                                                                                                          0
## Vegfr2 Mediated Cell Proliferation                                                                                                         0
## Viral Messenger Rna Synthesis                                                                                                              0
## Vitamin B1 Thiamin Metabolism                                                                                                              0
## Vitamin B2 Riboflavin Metabolism                                                                                                           0
## Vitamin B5 Pantothenate Metabolism                                                                                                         0
## Vitamin C Ascorbate Metabolism                                                                                                             0
## Vitamin D Calciferol Metabolism                                                                                                            0
## Vitamins                                                                                                                                   0
## Vldl Assembly                                                                                                                              0
## Vldl Clearance                                                                                                                             0
## Vldlr Internalisation And Degradation                                                                                                      0
## Voltage Gated Potassium Channels                                                                                                           0
## Vxpx Cargo Targeting To Cilium                                                                                                             0
## Wax And Plasmalogen Biosynthesis                                                                                                           0
## Wnt Mediated Activation Of Dvl                                                                                                             0
## Xenobiotics                                                                                                                                0
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                              0
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                   0
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                            0
## Zinc Transporters                                                                                                                          0
##                                                                                                                                      background
## Cytokine Signaling In Immune System                                                                                                       23467
## Signaling By Interleukins                                                                                                                 23467
## Innate Immune System                                                                                                                      23467
## Interleukin 10 Signaling                                                                                                                  23467
## Interleukin 4 And Interleukin 13 Signaling                                                                                                23467
## Toll Like Receptor Cascades                                                                                                               23467
## Peptide Ligand Binding Receptors                                                                                                          23467
## Chemokine Receptors Bind Chemokines                                                                                                       23467
## Neutrophil Degranulation                                                                                                                  23467
## Interleukin 1 Family Signaling                                                                                                            23467
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                         23467
## Myd88 Independent Tlr4 Cascade                                                                                                            23467
## Gpcr Ligand Binding                                                                                                                       23467
## Class A 1 Rhodopsin Like Receptors                                                                                                        23467
## Signaling By Gpcr                                                                                                                         23467
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                      23467
## Adaptive Immune System                                                                                                                    23467
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                  23467
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                         23467
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                     23467
## Interleukin 17 Signaling                                                                                                                  23467
## G Alpha I Signalling Events                                                                                                               23467
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                              23467
## Death Receptor Signalling                                                                                                                 23467
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                         23467
## Programmed Cell Death                                                                                                                     23467
## Regulated Necrosis                                                                                                                        23467
## Interleukin 1 Signaling                                                                                                                   23467
## Purinergic Signaling In Leishmaniasis Infection                                                                                           23467
## Interleukin 18 Signaling                                                                                                                  23467
## Leishmania Infection                                                                                                                      23467
## Tnfs Bind Their Physiological Receptors                                                                                                   23467
## Diseases Of Immune System                                                                                                                 23467
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                  23467
## Costimulation By The Cd28 Family                                                                                                          23467
## Nod1 2 Signaling Pathway                                                                                                                  23467
## Interleukin 2 Family Signaling                                                                                                            23467
## P75ntr Signals Via Nf Kb                                                                                                                  23467
## Heme Signaling                                                                                                                            23467
## Regulation Of Tlr By Endogenous Ligand                                                                                                    23467
## Complement Cascade                                                                                                                        23467
## Activated Tak1 Mediates P38 Mapk Activation                                                                                               23467
## Post Translational Protein Modification                                                                                                   23467
## Pyroptosis                                                                                                                                23467
## Deubiquitination                                                                                                                          23467
## Ovarian Tumor Domain Proteases                                                                                                            23467
## Interleukin 1 Processing                                                                                                                  23467
## P75 Ntr Receptor Mediated Signalling                                                                                                      23467
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                      23467
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                 23467
## Apoptosis                                                                                                                                 23467
## Dap12 Interactions                                                                                                                        23467
## Infectious Disease                                                                                                                        23467
## Cd28 Dependent Vav1 Pathway                                                                                                               23467
## Cell Surface Interactions At The Vascular Wall                                                                                            23467
## Killing Mechanisms                                                                                                                        23467
## Nf Kb Is Activated And Signals Survival                                                                                                   23467
## P75ntr Recruits Signalling Complexes                                                                                                      23467
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                   23467
## Trafficking And Processing Of Endosomal Tlr                                                                                               23467
## Hemostasis                                                                                                                                23467
## Interleukin 15 Signaling                                                                                                                  23467
## Interleukin 12 Family Signaling                                                                                                           23467
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                          23467
## Sumoylation Of Dna Methylation Proteins                                                                                                   23467
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                     23467
## Foxo Mediated Transcription                                                                                                               23467
## Irak4 Deficiency Tlr2 4                                                                                                                   23467
## Scavenging By Class A Receptors                                                                                                           23467
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                              23467
## Scavenging Of Heme From Plasma                                                                                                            23467
## Circadian Clock                                                                                                                           23467
## Ctla4 Inhibitory Signaling                                                                                                                23467
## Inflammasomes                                                                                                                             23467
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                23467
## Ikk Complex Recruitment Mediated By Rip1                                                                                                  23467
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                   23467
## Traf6 Mediated Nf Kb Activation                                                                                                           23467
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                             23467
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                          23467
## G0 And Early G1                                                                                                                           23467
## Interleukin Receptor Shc Signaling                                                                                                        23467
## Transcriptional Regulation Of Granulopoiesis                                                                                              23467
## Pd 1 Signaling                                                                                                                            23467
## Ripk1 Mediated Regulated Necrosis                                                                                                         23467
## Interferon Gamma Signaling                                                                                                                23467
## Mapk6 Mapk4 Signaling                                                                                                                     23467
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                  23467
## Cellular Responses To External Stimuli                                                                                                    23467
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                       23467
## Nicotinate Metabolism                                                                                                                     23467
## Perk Regulates Gene Expression                                                                                                            23467
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                    23467
## Clec7a Dectin 1 Signaling                                                                                                                 23467
## Vesicle Mediated Transport                                                                                                                23467
## Cargo Concentration In The Er                                                                                                             23467
## Cd28 Co Stimulation                                                                                                                       23467
## Diseases Of Programmed Cell Death                                                                                                         23467
## Regulation Of Tnfr1 Signaling                                                                                                             23467
## Antigen Processing Cross Presentation                                                                                                     23467
## Mapk Family Signaling Cascades                                                                                                            23467
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                        23467
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                   23467
## Tcr Signaling                                                                                                                             23467
## Tnf Signaling                                                                                                                             23467
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                23467
## Interleukin 12 Signaling                                                                                                                  23467
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                          23467
## Response To Elevated Platelet Cytosolic Ca2                                                                                               23467
## Netrin 1 Signaling                                                                                                                        23467
## C Type Lectin Receptors Clrs                                                                                                              23467
## Rna Polymerase Ii Transcription                                                                                                           23467
## Alternative Complement Activation                                                                                                         23467
## Fasl Cd95l Signaling                                                                                                                      23467
## G2 M Dna Replication Checkpoint                                                                                                           23467
## Galactose Catabolism                                                                                                                      23467
## Hdl Clearance                                                                                                                             23467
## Intrinsic Pathway For Apoptosis                                                                                                           23467
## Mecp2 Regulates Transcription Factors                                                                                                     23467
## Nostrin Mediated Enos Trafficking                                                                                                         23467
## Platelet Activation Signaling And Aggregation                                                                                             23467
## Rhoj Gtpase Cycle                                                                                                                         23467
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                           23467
## Epigenetic Regulation Of Gene Expression                                                                                                  23467
## Er To Golgi Anterograde Transport                                                                                                         23467
## Rhoq Gtpase Cycle                                                                                                                         23467
## Biosynthesis Of Epa Derived Spms                                                                                                          23467
## Clec7a Inflammasome Pathway                                                                                                               23467
## Fibronectin Matrix Formation                                                                                                              23467
## Phosphorylation Of Emi1                                                                                                                   23467
## Scavenging By Class B Receptors                                                                                                           23467
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                         23467
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                      23467
## Tnfr1 Mediated Ceramide Production                                                                                                        23467
## Ca2 Pathway                                                                                                                               23467
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                              23467
## Transcriptional Regulation By Mecp2                                                                                                       23467
## Dna Methylation                                                                                                                           23467
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                 23467
## Creb Phosphorylation                                                                                                                      23467
## Ikba Variant Leads To Eda Id                                                                                                              23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                       23467
## Copii Mediated Vesicle Transport                                                                                                          23467
## Activation Of C3 And C5                                                                                                                   23467
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                        23467
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                              23467
## Hdl Assembly                                                                                                                              23467
## Inactivation Of Cdc42 And Rac1                                                                                                            23467
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                         23467
## Runx3 Regulates Wnt Signaling                                                                                                             23467
## Interferon Alpha Beta Signaling                                                                                                           23467
## Prc2 Methylates Histones And Dna                                                                                                          23467
## Signaling By Tgf Beta Receptor Complex                                                                                                    23467
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                              23467
## Cd163 Mediating An Anti Inflammatory Response                                                                                             23467
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                               23467
## Extra Nuclear Estrogen Signaling                                                                                                          23467
## Interleukin 23 Signaling                                                                                                                  23467
## Interleukin 9 Signaling                                                                                                                   23467
## Rhog Gtpase Cycle                                                                                                                         23467
## Trif Mediated Programmed Cell Death                                                                                                       23467
## Sumoylation                                                                                                                               23467
## Transport To The Golgi And Subsequent Modification                                                                                        23467
## Metabolism Of Vitamins And Cofactors                                                                                                      23467
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                    23467
## Akt Phosphorylates Targets In The Nucleus                                                                                                 23467
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                  23467
## Chylomicron Assembly                                                                                                                      23467
## Chylomicron Remodeling                                                                                                                    23467
## Hdl Remodeling                                                                                                                            23467
## Interleukin 21 Signaling                                                                                                                  23467
## Mapk3 Erk1 Activation                                                                                                                     23467
## Mastl Facilitates Mitotic Progression                                                                                                     23467
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                23467
## Initial Triggering Of Complement                                                                                                          23467
## Cellular Senescence                                                                                                                       23467
## Condensation Of Prometaphase Chromosomes                                                                                                  23467
## Dermatan Sulfate Biosynthesis                                                                                                             23467
## Dscam Interactions                                                                                                                        23467
## Endosomal Vacuolar Pathway                                                                                                                23467
## Enos Activation                                                                                                                           23467
## Interleukin 27 Signaling                                                                                                                  23467
## Interleukin 6 Signaling                                                                                                                   23467
## Receptor Mediated Mitophagy                                                                                                               23467
## Regulation By C Flip                                                                                                                      23467
## Rho Gtpases Activate Ktn1                                                                                                                 23467
## Signaling By Leptin                                                                                                                       23467
## Sumoylation Of Immune Response Proteins                                                                                                   23467
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                          23467
## Interferon Signaling                                                                                                                      23467
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                         23467
## Interleukin 2 Signaling                                                                                                                   23467
## Interleukin 35 Signalling                                                                                                                 23467
## Notch2 Intracellular Domain Regulates Transcription                                                                                       23467
## Rac2 Gtpase Cycle                                                                                                                         23467
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                 23467
## Signaling By Receptor Tyrosine Kinases                                                                                                    23467
## Tandem Pore Domain Potassium Channels                                                                                                     23467
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                  23467
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                      23467
## Apoptosis Induced Dna Fragmentation                                                                                                       23467
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                             23467
## Dissolution Of Fibrin Clot                                                                                                                23467
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                            23467
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                  23467
## Tnfr1 Induced Proapoptotic Signaling                                                                                                      23467
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                     23467
## Unfolded Protein Response Upr                                                                                                             23467
## Class B 2 Secretin Family Receptors                                                                                                       23467
## Rac3 Gtpase Cycle                                                                                                                         23467
## Dcc Mediated Attractive Signaling                                                                                                         23467
## Early Phase Of Hiv Life Cycle                                                                                                             23467
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                       23467
## Irak1 Recruits Ikk Complex                                                                                                                23467
## Repression Of Wnt Target Genes                                                                                                            23467
## Antimicrobial Peptides                                                                                                                    23467
## Esr Mediated Signaling                                                                                                                    23467
## Ub Specific Processing Proteases                                                                                                          23467
## Depolymerisation Of The Nuclear Lamina                                                                                                    23467
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                 23467
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                  23467
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                        23467
## Wnt5a Dependent Internalization Of Fzd4                                                                                                   23467
## Copi Mediated Anterograde Transport                                                                                                       23467
## Foxo Mediated Transcription Of Cell Death Genes                                                                                           23467
## Nrif Signals Cell Death From The Nucleus                                                                                                  23467
## Signaling By Tgfb Family Members                                                                                                          23467
## The Nlrp3 Inflammasome                                                                                                                    23467
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                              23467
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                      23467
## Pi3k Akt Signaling In Cancer                                                                                                              23467
## Tcf Dependent Signaling In Response To Wnt                                                                                                23467
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                      23467
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                           23467
## Signaling By Vegf                                                                                                                         23467
## Transcriptional Regulation By Runx1                                                                                                       23467
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                          23467
## Negative Epigenetic Regulation Of Rrna Expression                                                                                         23467
## Abc Transporters In Lipid Homeostasis                                                                                                     23467
## Amyloid Fiber Formation                                                                                                                   23467
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                             23467
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                          23467
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                           23467
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                               23467
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                    23467
## Senescence Associated Secretory Phenotype Sasp                                                                                            23467
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                   23467
## Initiation Of Nuclear Envelope Ne Reformation                                                                                             23467
## Negative Regulation Of The Pi3k Akt Network                                                                                               23467
## Nicotinamide Salvaging                                                                                                                    23467
## Other Semaphorin Interactions                                                                                                             23467
## Phase 4 Resting Membrane Potential                                                                                                        23467
## Plasma Lipoprotein Assembly                                                                                                               23467
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                      23467
## G Beta Gamma Signalling Through Cdc42                                                                                                     23467
## Phosphorylation Of The Apc C                                                                                                              23467
## Pka Mediated Phosphorylation Of Creb                                                                                                      23467
## Signaling By Kit In Disease                                                                                                               23467
## Signaling By Pdgfr In Disease                                                                                                             23467
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                     23467
## Branched Chain Amino Acid Catabolism                                                                                                      23467
## Interleukin 37 Signaling                                                                                                                  23467
## Rho Gtpases Activate Paks                                                                                                                 23467
## Cd28 Dependent Pi3k Akt Signaling                                                                                                         23467
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                               23467
## E2f Mediated Regulation Of Dna Replication                                                                                                23467
## Pink1 Prkn Mediated Mitophagy                                                                                                             23467
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                        23467
## Cytoprotection By Hmox1                                                                                                                   23467
## Incretin Synthesis Secretion And Inactivation                                                                                             23467
## Mhc Class Ii Antigen Presentation                                                                                                         23467
## Raf Independent Mapk1 3 Activation                                                                                                        23467
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                              23467
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                    23467
## Growth Hormone Receptor Signaling                                                                                                         23467
## Interleukin 6 Family Signaling                                                                                                            23467
## Triglyceride Catabolism                                                                                                                   23467
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                  23467
## Basigin Interactions                                                                                                                      23467
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                   23467
## Inactivation Of Csf3 G Csf Signaling                                                                                                      23467
## Signaling By Ntrks                                                                                                                        23467
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                             23467
## Interleukin 20 Family Signaling                                                                                                           23467
## Wnt Ligand Biogenesis And Trafficking                                                                                                     23467
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                     23467
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                          23467
## Vegfr2 Mediated Vascular Permeability                                                                                                     23467
## Activation Of Bh3 Only Proteins                                                                                                           23467
## Beta Catenin Independent Wnt Signaling                                                                                                    23467
## Dap12 Signaling                                                                                                                           23467
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                            23467
## Downstream Signal Transduction                                                                                                            23467
## Egfr Downregulation                                                                                                                       23467
## Extracellular Matrix Organization                                                                                                         23467
## Fgfr1 Mutant Receptor Activation                                                                                                          23467
## G1 S Specific Transcription                                                                                                               23467
## Mitophagy                                                                                                                                 23467
## Mitotic G1 Phase And G1 S Transition                                                                                                      23467
## Myogenesis                                                                                                                                23467
## Signaling By Csf3 G Csf                                                                                                                   23467
## Signaling By Nuclear Receptors                                                                                                            23467
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                      23467
## Activation Of Matrix Metalloproteinases                                                                                                   23467
## Asparagine N Linked Glycosylation                                                                                                         23467
## G Protein Beta Gamma Signalling                                                                                                           23467
## Intracellular Signaling By Second Messengers                                                                                              23467
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                              23467
## Plasma Lipoprotein Clearance                                                                                                              23467
## Plasma Lipoprotein Remodeling                                                                                                             23467
## Regulation Of Mecp2 Expression And Activity                                                                                               23467
## Rho Gtpases Activate Iqgaps                                                                                                               23467
## Rhou Gtpase Cycle                                                                                                                         23467
## Rhov Gtpase Cycle                                                                                                                         23467
## Signaling By Notch2                                                                                                                       23467
## Ca Dependent Events                                                                                                                       23467
## Cdc42 Gtpase Cycle                                                                                                                        23467
## Cellular Response To Chemical Stress                                                                                                      23467
## Gpvi Mediated Activation Cascade                                                                                                          23467
## Interleukin 7 Signaling                                                                                                                   23467
## Metalloprotease Dubs                                                                                                                      23467
## Nuclear Pore Complex Npc Disassembly                                                                                                      23467
## Regulation Of Tp53 Expression And Degradation                                                                                             23467
## Rho Gtpases Activate Wasps And Waves                                                                                                      23467
## Rhoh Gtpase Cycle                                                                                                                         23467
## Ros And Rns Production In Phagocytes                                                                                                      23467
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                          23467
## Generation Of Second Messenger Molecules                                                                                                  23467
## Ngf Stimulated Transcription                                                                                                              23467
## Signaling By Fgfr1 In Disease                                                                                                             23467
## Signaling By Wnt                                                                                                                          23467
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                              23467
## Triglyceride Metabolism                                                                                                                   23467
## Beta Defensins                                                                                                                            23467
## Dag And Ip3 Signaling                                                                                                                     23467
## Ephb Mediated Forward Signaling                                                                                                           23467
## Rhof Gtpase Cycle                                                                                                                         23467
## Rnd1 Gtpase Cycle                                                                                                                         23467
## Rnd2 Gtpase Cycle                                                                                                                         23467
## Rnd3 Gtpase Cycle                                                                                                                         23467
## Signaling By Scf Kit                                                                                                                      23467
## Developmental Biology                                                                                                                     23467
## Fc Epsilon Receptor Fceri Signaling                                                                                                       23467
## Rac1 Gtpase Cycle                                                                                                                         23467
## Irs Mediated Signalling                                                                                                                   23467
## Metabolism Of Fat Soluble Vitamins                                                                                                        23467
## Notch1 Intracellular Domain Regulates Transcription                                                                                       23467
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                          23467
## Apoptotic Execution Phase                                                                                                                 23467
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                           23467
## Class I Mhc Mediated Antigen Processing Presentation                                                                                      23467
## Defensins                                                                                                                                 23467
## Rhod Gtpase Cycle                                                                                                                         23467
## Signaling By Egfr                                                                                                                         23467
## G Protein Mediated Events                                                                                                                 23467
## Insulin Receptor Signalling Cascade                                                                                                       23467
## Nervous System Development                                                                                                                23467
## Nuclear Envelope Breakdown                                                                                                                23467
## Signaling By Ptk6                                                                                                                         23467
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                           23467
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                    23467
## G Alpha Q Signalling Events                                                                                                               23467
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                         23467
## Signaling By Pdgf                                                                                                                         23467
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                        23467
## Arachidonic Acid Metabolism                                                                                                               23467
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                            23467
## Nrage Signals Death Through Jnk                                                                                                           23467
## Nuclear Events Kinase And Transcription Factor Activation                                                                                 23467
## Asymmetric Localization Of Pcp Proteins                                                                                                   23467
## Collagen Degradation                                                                                                                      23467
## Ncam Signaling For Neurite Out Growth                                                                                                     23467
## Semaphorin Interactions                                                                                                                   23467
## Signaling By Fgfr In Disease                                                                                                              23467
## Membrane Trafficking                                                                                                                      23467
## Sirt1 Negatively Regulates Rrna Expression                                                                                                23467
## Aurka Activation By Tpx2                                                                                                                  23467
## Creation Of C4 And C2 Activators                                                                                                          23467
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                      23467
## Rhob Gtpase Cycle                                                                                                                         23467
## Condensation Of Prophase Chromosomes                                                                                                      23467
## Rhoc Gtpase Cycle                                                                                                                         23467
## Signaling By Notch                                                                                                                        23467
## Signaling By Notch1                                                                                                                       23467
## Abc Transporter Disorders                                                                                                                 23467
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                             23467
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                         23467
## Dna Double Strand Break Response                                                                                                          23467
## Ecm Proteoglycans                                                                                                                         23467
## Nuclear Envelope Ne Reassembly                                                                                                            23467
## Rmts Methylate Histone Arginines                                                                                                          23467
## Signaling By Insulin Receptor                                                                                                             23467
## Signaling By Met                                                                                                                          23467
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                 23467
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                        23467
## Potential Therapeutics For Sars                                                                                                           23467
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                  23467
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                           23467
## Selective Autophagy                                                                                                                       23467
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                          23467
## Degradation Of Beta Catenin By The Destruction Complex                                                                                    23467
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                             23467
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                         23467
## Fceri Mediated Mapk Activation                                                                                                            23467
## Regulation Of Plk1 Activity At G2 M Transition                                                                                            23467
## Eph Ephrin Signaling                                                                                                                      23467
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                 23467
## Opioid Signalling                                                                                                                         23467
## Pcp Ce Pathway                                                                                                                            23467
## Peptide Hormone Metabolism                                                                                                                23467
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                      23467
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                        23467
## Fcgr3a Mediated Il10 Synthesis                                                                                                            23467
## G2 M Dna Damage Checkpoint                                                                                                                23467
## Metabolism Of Carbohydrates                                                                                                               23467
## Mitochondrial Biogenesis                                                                                                                  23467
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                        23467
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                23467
## Transcriptional Regulation By Runx3                                                                                                       23467
## Organelle Biogenesis And Maintenance                                                                                                      23467
## Protein Folding                                                                                                                           23467
## Visual Phototransduction                                                                                                                  23467
## Abc Family Proteins Mediated Transport                                                                                                    23467
## Cellular Response To Heat Stress                                                                                                          23467
## Potassium Channels                                                                                                                        23467
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                       23467
## Parasite Infection                                                                                                                        23467
## Regulation Of Lipid Metabolism By Pparalpha                                                                                               23467
## Transcriptional Regulation By Runx2                                                                                                       23467
## Glycosaminoglycan Metabolism                                                                                                              23467
## Cardiac Conduction                                                                                                                        23467
## Oxidative Stress Induced Senescence                                                                                                       23467
## Resolution Of Sister Chromatid Cohesion                                                                                                   23467
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                   23467
## Fceri Mediated Nf Kb Activation                                                                                                           23467
## Degradation Of The Extracellular Matrix                                                                                                   23467
## Hcmv Early Events                                                                                                                         23467
## Rho Gtpases Activate Formins                                                                                                              23467
## Clathrin Mediated Endocytosis                                                                                                             23467
## Diseases Of Glycosylation                                                                                                                 23467
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                              23467
## Mitotic Prophase                                                                                                                          23467
## Sars Cov Infections                                                                                                                       23467
## Autophagy                                                                                                                                 23467
## Estrogen Dependent Gene Expression                                                                                                        23467
## Hiv Life Cycle                                                                                                                            23467
## Rhoa Gtpase Cycle                                                                                                                         23467
## Regulation Of Tp53 Activity                                                                                                               23467
## Hcmv Infection                                                                                                                            23467
## Neuronal System                                                                                                                           23467
## S Phase                                                                                                                                   23467
## Dna Double Strand Break Repair                                                                                                            23467
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                     23467
## G2 M Checkpoints                                                                                                                          23467
## Signaling By The B Cell Receptor Bcr                                                                                                      23467
## Disorders Of Transmembrane Transporters                                                                                                   23467
## Fatty Acid Metabolism                                                                                                                     23467
## Rho Gtpase Cycle                                                                                                                          23467
## Muscle Contraction                                                                                                                        23467
## Mitotic G2 G2 M Phases                                                                                                                    23467
## Cilium Assembly                                                                                                                           23467
## Metabolism Of Lipids                                                                                                                      23467
## Mitotic Prometaphase                                                                                                                      23467
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                           23467
## Signaling By Robo Receptors                                                                                                               23467
## Hiv Infection                                                                                                                             23467
## Mitotic Metaphase And Anaphase                                                                                                            23467
## Diseases Of Metabolism                                                                                                                    23467
## Cell Cycle Mitotic                                                                                                                        23467
## Transmission Across Chemical Synapses                                                                                                     23467
## Chromatin Modifying Enzymes                                                                                                               23467
## Cell Cycle Checkpoints                                                                                                                    23467
## Rho Gtpase Effectors                                                                                                                      23467
## Dna Repair                                                                                                                                23467
## Cell Cycle                                                                                                                                23467
## Transcriptional Regulation By Tp53                                                                                                        23467
## Metabolism Of Amino Acids And Derivatives                                                                                                 23467
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                         23467
## M Phase                                                                                                                                   23467
## Sensory Perception                                                                                                                        23467
## Transport Of Small Molecules                                                                                                              23467
## 2 Ltr Circle Formation                                                                                                                    23467
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                           23467
## Abacavir Metabolism                                                                                                                       23467
## Abacavir Transmembrane Transport                                                                                                          23467
## Abacavir Transport And Metabolism                                                                                                         23467
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                          23467
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                               23467
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                             23467
## Acetylcholine Binding And Downstream Events                                                                                               23467
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                    23467
## Acetylcholine Neurotransmitter Release Cycle                                                                                              23467
## Acetylcholine Regulates Insulin Secretion                                                                                                 23467
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                       23467
## Activated Notch1 Transmits Signal To The Nucleus                                                                                          23467
## Activated Ntrk2 Signals Through Cdk5                                                                                                      23467
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                             23467
## Activated Ntrk2 Signals Through Fyn                                                                                                       23467
## Activated Ntrk2 Signals Through Pi3k                                                                                                      23467
## Activated Ntrk2 Signals Through Ras                                                                                                       23467
## Activated Ntrk3 Signals Through Pi3k                                                                                                      23467
## Activated Ntrk3 Signals Through Ras                                                                                                       23467
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                             23467
## Activation Of Ampk Downstream Of Nmdars                                                                                                   23467
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                      23467
## Activation Of Atr In Response To Replication Stress                                                                                       23467
## Activation Of Bad And Translocation To Mitochondria                                                                                       23467
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                               23467
## Activation Of Gene Expression By Srebf Srebp                                                                                              23467
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                    23467
## Activation Of Noxa And Translocation To Mitochondria                                                                                      23467
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                      23467
## Activation Of Puma And Translocation To Mitochondria                                                                                      23467
## Activation Of Rac1                                                                                                                        23467
## Activation Of Rac1 Downstream Of Nmdars                                                                                                   23467
## Activation Of Ras In B Cells                                                                                                              23467
## Activation Of Smo                                                                                                                         23467
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                     23467
## Activation Of The Phototransduction Cascade                                                                                               23467
## Activation Of The Pre Replicative Complex                                                                                                 23467
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                              23467
## Activation Of Trka Receptors                                                                                                              23467
## Acyl Chain Remodeling Of Cl                                                                                                               23467
## Acyl Chain Remodeling Of Dag And Tag                                                                                                      23467
## Acyl Chain Remodelling Of Pc                                                                                                              23467
## Acyl Chain Remodelling Of Pe                                                                                                              23467
## Acyl Chain Remodelling Of Pg                                                                                                              23467
## Acyl Chain Remodelling Of Pi                                                                                                              23467
## Acyl Chain Remodelling Of Ps                                                                                                              23467
## Adenylate Cyclase Activating Pathway                                                                                                      23467
## Adenylate Cyclase Inhibitory Pathway                                                                                                      23467
## Adherens Junctions Interactions                                                                                                           23467
## Adp Signalling Through P2y Purinoceptor 1                                                                                                 23467
## Adp Signalling Through P2y Purinoceptor 12                                                                                                23467
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                       23467
## Adrenoceptors                                                                                                                             23467
## Aflatoxin Activation And Detoxification                                                                                                   23467
## Aggrephagy                                                                                                                                23467
## Akt Phosphorylates Targets In The Cytosol                                                                                                 23467
## Alpha Defensins                                                                                                                           23467
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                23467
## Alpha Oxidation Of Phytanate                                                                                                              23467
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                  23467
## Amine Ligand Binding Receptors                                                                                                            23467
## Amino Acid Conjugation                                                                                                                    23467
## Amino Acid Transport Across The Plasma Membrane                                                                                           23467
## Amino Acids Regulate Mtorc1                                                                                                               23467
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                  23467
## Anchoring Fibril Formation                                                                                                                23467
## Androgen Biosynthesis                                                                                                                     23467
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                          23467
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                  23467
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                               23467
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                  23467
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                   23467
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                    23467
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                           23467
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                              23467
## Apoptotic Cleavage Of Cellular Proteins                                                                                                   23467
## Apoptotic Factor Mediated Response                                                                                                        23467
## Aquaporin Mediated Transport                                                                                                              23467
## Arachidonate Production From Dag                                                                                                          23467
## Arms Mediated Activation                                                                                                                  23467
## Aryl Hydrocarbon Receptor Signalling                                                                                                      23467
## Aspartate And Asparagine Metabolism                                                                                                       23467
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                  23467
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                          23467
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                              23467
## Assembly Of The Hiv Virion                                                                                                                23467
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                  23467
## Assembly Of The Pre Replicative Complex                                                                                                   23467
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                 23467
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                      23467
## Attachment And Entry                                                                                                                      23467
## Attachment Of Gpi Anchor To Upar                                                                                                          23467
## Attenuation Phase                                                                                                                         23467
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                 23467
## B Wich Complex Positively Regulates Rrna Expression                                                                                       23467
## Base Excision Repair                                                                                                                      23467
## Base Excision Repair Ap Site Formation                                                                                                    23467
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                 23467
## Beta Catenin Phosphorylation Cascade                                                                                                      23467
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                              23467
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                        23467
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                            23467
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                         23467
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                            23467
## Beta Oxidation Of Pristanoyl Coa                                                                                                          23467
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                             23467
## Bicarbonate Transporters                                                                                                                  23467
## Bile Acid And Bile Salt Metabolism                                                                                                        23467
## Biological Oxidations                                                                                                                     23467
## Biosynthesis Of Maresin Like Spms                                                                                                         23467
## Biosynthesis Of Maresins                                                                                                                  23467
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                        23467
## Biotin Transport And Metabolism                                                                                                           23467
## Blood Group Systems Biosynthesis                                                                                                          23467
## Budding And Maturation Of Hiv Virion                                                                                                      23467
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                               23467
## Butyrophilin Btn Family Interactions                                                                                                      23467
## Ca2 Activated K Channels                                                                                                                  23467
## Calcineurin Activates Nfat                                                                                                                23467
## Calcitonin Like Ligand Receptors                                                                                                          23467
## Calnexin Calreticulin Cycle                                                                                                               23467
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                               23467
## Cargo Trafficking To The Periciliary Membrane                                                                                             23467
## Carnitine Metabolism                                                                                                                      23467
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                      23467
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                        23467
## Cation Coupled Chloride Cotransporters                                                                                                    23467
## Cd209 Dc Sign Signaling                                                                                                                   23467
## Cd22 Mediated Bcr Regulation                                                                                                              23467
## Cdc6 Association With The Orc Origin Complex                                                                                              23467
## Cell Cell Communication                                                                                                                   23467
## Cell Cell Junction Organization                                                                                                           23467
## Cell Extracellular Matrix Interactions                                                                                                    23467
## Cell Junction Organization                                                                                                                23467
## Cellular Hexose Transport                                                                                                                 23467
## Cellular Response To Hypoxia                                                                                                              23467
## Cellular Response To Starvation                                                                                                           23467
## Cgmp Effects                                                                                                                              23467
## Chaperone Mediated Autophagy                                                                                                              23467
## Chl1 Interactions                                                                                                                         23467
## Cholesterol Biosynthesis                                                                                                                  23467
## Choline Catabolism                                                                                                                        23467
## Chondroitin Sulfate Biosynthesis                                                                                                          23467
## Chrebp Activates Metabolic Gene Expression                                                                                                23467
## Chromosome Maintenance                                                                                                                    23467
## Chylomicron Clearance                                                                                                                     23467
## Citric Acid Cycle Tca Cycle                                                                                                               23467
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                      23467
## Class I Peroxisomal Membrane Protein Import                                                                                               23467
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                   23467
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                        23467
## Coenzyme A Biosynthesis                                                                                                                   23467
## Cohesin Loading Onto Chromatin                                                                                                            23467
## Collagen Biosynthesis And Modifying Enzymes                                                                                               23467
## Collagen Chain Trimerization                                                                                                              23467
## Collagen Formation                                                                                                                        23467
## Common Pathway Of Fibrin Clot Formation                                                                                                   23467
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                23467
## Complex I Biogenesis                                                                                                                      23467
## Conjugation Of Benzoate With Glycine                                                                                                      23467
## Constitutive Signaling By Egfrviii                                                                                                        23467
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                          23467
## Constitutive Signaling By Overexpressed Erbb2                                                                                             23467
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                23467
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                          23467
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                        23467
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                             23467
## Copi Independent Golgi To Er Retrograde Traffic                                                                                           23467
## Creatine Metabolism                                                                                                                       23467
## Creb3 Factors Activate Genes                                                                                                              23467
## Cristae Formation                                                                                                                         23467
## Crmps In Sema3a Signaling                                                                                                                 23467
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                           23467
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                23467
## Crosslinking Of Collagen Fibrils                                                                                                          23467
## Cs Ds Degradation                                                                                                                         23467
## Cyclin D Associated Events In G1                                                                                                          23467
## Cyp2e1 Reactions                                                                                                                          23467
## Cytochrome C Mediated Apoptotic Response                                                                                                  23467
## Cytochrome P450 Arranged By Substrate Type                                                                                                23467
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                    23467
## Cytosolic Sulfonation Of Small Molecules                                                                                                  23467
## Cytosolic Trna Aminoacylation                                                                                                             23467
## Darpp 32 Events                                                                                                                           23467
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                  23467
## Deadenylation Dependent Mrna Decay                                                                                                        23467
## Deadenylation Of Mrna                                                                                                                     23467
## Dectin 2 Family                                                                                                                           23467
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                               23467
## Defective B4galt7 Causes Eds Progeroid Type                                                                                               23467
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                             23467
## Defective Cftr Causes Cystic Fibrosis                                                                                                     23467
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                      23467
## Defective Chst3 Causes Sedcjd                                                                                                             23467
## Defective Chst6 Causes Mcdc1                                                                                                              23467
## Defective Chsy1 Causes Tpbs                                                                                                               23467
## Defective Csf2rb Causes Smdp5                                                                                                             23467
## Defective Ext2 Causes Exostoses 2                                                                                                         23467
## Defective F9 Activation                                                                                                                   23467
## Defective Factor Ix Causes Hemophilia B                                                                                                   23467
## Defective Factor Viii Causes Hemophilia A                                                                                                 23467
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                23467
## Defective Lfng Causes Scdo3                                                                                                               23467
## Defective Ripk1 Mediated Regulated Necrosis                                                                                               23467
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                 23467
## Defects In Biotin Btn Metabolism                                                                                                          23467
## Defects In Cobalamin B12 Metabolism                                                                                                       23467
## Defects In Vitamin And Cofactor Metabolism                                                                                                23467
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                  23467
## Degradation Of Axin                                                                                                                       23467
## Degradation Of Cysteine And Homocysteine                                                                                                  23467
## Degradation Of Dvl                                                                                                                        23467
## Degradation Of Gli1 By The Proteasome                                                                                                     23467
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                          23467
## Detoxification Of Reactive Oxygen Species                                                                                                 23467
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                             23467
## Digestion                                                                                                                                 23467
## Digestion And Absorption                                                                                                                  23467
## Digestion Of Dietary Carbohydrate                                                                                                         23467
## Digestion Of Dietary Lipid                                                                                                                23467
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                     23467
## Diseases Associated With N Glycosylation Of Proteins                                                                                      23467
## Diseases Associated With O Glycosylation Of Proteins                                                                                      23467
## Diseases Associated With Surfactant Metabolism                                                                                            23467
## Diseases Of Base Excision Repair                                                                                                          23467
## Diseases Of Carbohydrate Metabolism                                                                                                       23467
## Diseases Of Dna Repair                                                                                                                    23467
## Diseases Of Mismatch Repair Mmr                                                                                                           23467
## Diseases Of Mitotic Cell Cycle                                                                                                            23467
## Disinhibition Of Snare Formation                                                                                                          23467
## Displacement Of Dna Glycosylase By Apex1                                                                                                  23467
## Dna Damage Bypass                                                                                                                         23467
## Dna Damage Recognition In Gg Ner                                                                                                          23467
## Dna Damage Reversal                                                                                                                       23467
## Dna Damage Telomere Stress Induced Senescence                                                                                             23467
## Dna Replication                                                                                                                           23467
## Dna Replication Initiation                                                                                                                23467
## Dna Replication Pre Initiation                                                                                                            23467
## Dna Strand Elongation                                                                                                                     23467
## Dopamine Neurotransmitter Release Cycle                                                                                                   23467
## Dopamine Receptors                                                                                                                        23467
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                   23467
## Downregulation Of Erbb2 Signaling                                                                                                         23467
## Downregulation Of Erbb4 Signaling                                                                                                         23467
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                  23467
## Downregulation Of Tgf Beta Receptor Signaling                                                                                             23467
## Downstream Signaling Of Activated Fgfr1                                                                                                   23467
## Downstream Signaling Of Activated Fgfr2                                                                                                   23467
## Downstream Signaling Of Activated Fgfr3                                                                                                   23467
## Downstream Signaling Of Activated Fgfr4                                                                                                   23467
## Dual Incision In Gg Ner                                                                                                                   23467
## Dual Incision In Tc Ner                                                                                                                   23467
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                         23467
## Effects Of Pip2 Hydrolysis                                                                                                                23467
## Egfr Interacts With Phospholipase C Gamma                                                                                                 23467
## Egfr Transactivation By Gastrin                                                                                                           23467
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                            23467
## Eicosanoid Ligand Binding Receptors                                                                                                       23467
## Eicosanoids                                                                                                                               23467
## Elastic Fibre Formation                                                                                                                   23467
## Electric Transmission Across Gap Junctions                                                                                                23467
## Elevation Of Cytosolic Ca2 Levels                                                                                                         23467
## Endogenous Sterols                                                                                                                        23467
## Endosomal Sorting Complex Required For Transport Escrt                                                                                    23467
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                          23467
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                    23467
## Epha Mediated Growth Cone Collapse                                                                                                        23467
## Ephrin Signaling                                                                                                                          23467
## Er Quality Control Compartment Erqc                                                                                                       23467
## Erbb2 Activates Ptk6 Signaling                                                                                                            23467
## Erbb2 Regulates Cell Motility                                                                                                             23467
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                               23467
## Erk Mapk Targets                                                                                                                          23467
## Erks Are Inactivated                                                                                                                      23467
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                    23467
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                    23467
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                   23467
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                       23467
## Erythropoietin Activates Ras                                                                                                              23467
## Erythropoietin Activates Stat5                                                                                                            23467
## Establishment Of Sister Chromatid Cohesion                                                                                                23467
## Estrogen Biosynthesis                                                                                                                     23467
## Estrogen Stimulated Signaling Through Prkcz                                                                                               23467
## Ethanol Oxidation                                                                                                                         23467
## Eukaryotic Translation Elongation                                                                                                         23467
## Eukaryotic Translation Initiation                                                                                                         23467
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                           23467
## Extension Of Telomeres                                                                                                                    23467
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                23467
## Fanconi Anemia Pathway                                                                                                                    23467
## Fatty Acids                                                                                                                               23467
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                               23467
## Fatty Acyl Coa Biosynthesis                                                                                                               23467
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                        23467
## Fceri Mediated Ca 2 Mobilization                                                                                                          23467
## Fcgr Activation                                                                                                                           23467
## Fertilization                                                                                                                             23467
## Fgfr1 Ligand Binding And Activation                                                                                                       23467
## Fgfr1b Ligand Binding And Activation                                                                                                      23467
## Fgfr1c Ligand Binding And Activation                                                                                                      23467
## Fgfr2 Alternative Splicing                                                                                                                23467
## Fgfr2 Ligand Binding And Activation                                                                                                       23467
## Fgfr2 Mutant Receptor Activation                                                                                                          23467
## Fgfr2b Ligand Binding And Activation                                                                                                      23467
## Fgfr2c Ligand Binding And Activation                                                                                                      23467
## Fgfr3 Ligand Binding And Activation                                                                                                       23467
## Fgfr3b Ligand Binding And Activation                                                                                                      23467
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                      23467
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                            23467
## Flt3 Signaling                                                                                                                            23467
## Flt3 Signaling By Cbl Mutants                                                                                                             23467
## Flt3 Signaling In Disease                                                                                                                 23467
## Flt3 Signaling Through Src Family Kinases                                                                                                 23467
## Folding Of Actin By Cct Tric                                                                                                              23467
## Formation Of Apoptosome                                                                                                                   23467
## Formation Of Atp By Chemiosmotic Coupling                                                                                                 23467
## Formation Of Fibrin Clot Clotting Cascade                                                                                                 23467
## Formation Of Incision Complex In Gg Ner                                                                                                   23467
## Formation Of Rna Pol Ii Elongation Complex                                                                                                23467
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                              23467
## Formation Of Tc Ner Pre Incision Complex                                                                                                  23467
## Formation Of The Cornified Envelope                                                                                                       23467
## Formation Of The Early Elongation Complex                                                                                                 23467
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                    23467
## Formation Of Xylulose 5 Phosphate                                                                                                         23467
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                      23467
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                              23467
## Free Fatty Acid Receptors                                                                                                                 23467
## Free Fatty Acids Regulate Insulin Secretion                                                                                               23467
## Frs Mediated Fgfr1 Signaling                                                                                                              23467
## Frs Mediated Fgfr2 Signaling                                                                                                              23467
## Frs Mediated Fgfr3 Signaling                                                                                                              23467
## Frs Mediated Fgfr4 Signaling                                                                                                              23467
## Fructose Catabolism                                                                                                                       23467
## Fructose Metabolism                                                                                                                       23467
## G Alpha 12 13 Signalling Events                                                                                                           23467
## G Alpha S Signalling Events                                                                                                               23467
## G Alpha Z Signalling Events                                                                                                               23467
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                 23467
## G Protein Activation                                                                                                                      23467
## G1 S Dna Damage Checkpoints                                                                                                               23467
## G2 Phase                                                                                                                                  23467
## Gab1 Signalosome                                                                                                                          23467
## Gaba B Receptor Activation                                                                                                                23467
## Gaba Receptor Activation                                                                                                                  23467
## Gaba Synthesis Release Reuptake And Degradation                                                                                           23467
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                       23467
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                     23467
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                   23467
## Gap Junction Assembly                                                                                                                     23467
## Gap Junction Degradation                                                                                                                  23467
## Gap Junction Trafficking And Regulation                                                                                                   23467
## Gdp Fucose Biosynthesis                                                                                                                   23467
## Gene Silencing By Rna                                                                                                                     23467
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                               23467
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                           23467
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                  23467
## Glucagon Signaling In Metabolic Regulation                                                                                                23467
## Glucagon Type Ligand Receptors                                                                                                            23467
## Glucocorticoid Biosynthesis                                                                                                               23467
## Gluconeogenesis                                                                                                                           23467
## Glucose Metabolism                                                                                                                        23467
## Glucuronidation                                                                                                                           23467
## Glutamate And Glutamine Metabolism                                                                                                        23467
## Glutamate Neurotransmitter Release Cycle                                                                                                  23467
## Glutathione Conjugation                                                                                                                   23467
## Glutathione Synthesis And Recycling                                                                                                       23467
## Glycerophospholipid Biosynthesis                                                                                                          23467
## Glycerophospholipid Catabolism                                                                                                            23467
## Glycogen Breakdown Glycogenolysis                                                                                                         23467
## Glycogen Metabolism                                                                                                                       23467
## Glycogen Storage Diseases                                                                                                                 23467
## Glycogen Synthesis                                                                                                                        23467
## Glycolysis                                                                                                                                23467
## Glycosphingolipid Metabolism                                                                                                              23467
## Glyoxylate Metabolism And Glycine Degradation                                                                                             23467
## Golgi Associated Vesicle Biogenesis                                                                                                       23467
## Golgi To Er Retrograde Transport                                                                                                          23467
## Gp1b Ix V Activation Signalling                                                                                                           23467
## Grb2 Events In Erbb2 Signaling                                                                                                            23467
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                 23467
## Grb7 Events In Erbb2 Signaling                                                                                                            23467
## Hats Acetylate Histones                                                                                                                   23467
## Hcmv Late Events                                                                                                                          23467
## Hdacs Deacetylate Histones                                                                                                                23467
## Hdms Demethylate Histones                                                                                                                 23467
## Hdr Through Homologous Recombination Hrr                                                                                                  23467
## Hdr Through Mmej Alt Nhej                                                                                                                 23467
## Hdr Through Single Strand Annealing Ssa                                                                                                   23467
## Hedgehog Ligand Biogenesis                                                                                                                23467
## Hedgehog Off State                                                                                                                        23467
## Hedgehog On State                                                                                                                         23467
## Heme Biosynthesis                                                                                                                         23467
## Heme Degradation                                                                                                                          23467
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                 23467
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                23467
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                   23467
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                    23467
## Histidine Catabolism                                                                                                                      23467
## Hiv Elongation Arrest And Recovery                                                                                                        23467
## Hiv Transcription Elongation                                                                                                              23467
## Hiv Transcription Initiation                                                                                                              23467
## Homologous Dna Pairing And Strand Exchange                                                                                                23467
## Homology Directed Repair                                                                                                                  23467
## Hormone Ligand Binding Receptors                                                                                                          23467
## Host Interactions Of Hiv Factors                                                                                                          23467
## Hs Gag Biosynthesis                                                                                                                       23467
## Hs Gag Degradation                                                                                                                        23467
## Hsf1 Activation                                                                                                                           23467
## Hsf1 Dependent Transactivation                                                                                                            23467
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                   23467
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                      23467
## Hyaluronan Biosynthesis And Export                                                                                                        23467
## Hyaluronan Metabolism                                                                                                                     23467
## Hyaluronan Uptake And Degradation                                                                                                         23467
## Hydrolysis Of Lpc                                                                                                                         23467
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                           23467
## Infection With Mycobacterium Tuberculosis                                                                                                 23467
## Influenza Infection                                                                                                                       23467
## Inhibition Of Dna Recombination At Telomere                                                                                               23467
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                           23467
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components               23467
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                             23467
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                              23467
## Inositol Phosphate Metabolism                                                                                                             23467
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                               23467
## Insulin Processing                                                                                                                        23467
## Insulin Receptor Recycling                                                                                                                23467
## Integration Of Energy Metabolism                                                                                                          23467
## Integration Of Provirus                                                                                                                   23467
## Integrin Cell Surface Interactions                                                                                                        23467
## Integrin Signaling                                                                                                                        23467
## Interaction Between L1 And Ankyrins                                                                                                       23467
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                     23467
## Interactions Of Rev With Host Cellular Proteins                                                                                           23467
## Interactions Of Vpr With Host Cellular Proteins                                                                                           23467
## Interconversion Of Nucleotide Di And Triphosphates                                                                                        23467
## Interleukin 36 Pathway                                                                                                                    23467
## Intestinal Absorption                                                                                                                     23467
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                            23467
## Intra Golgi Traffic                                                                                                                       23467
## Intraflagellar Transport                                                                                                                  23467
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                23467
## Inwardly Rectifying K Channels                                                                                                            23467
## Ion Channel Transport                                                                                                                     23467
## Ion Homeostasis                                                                                                                           23467
## Ion Transport By P Type Atpases                                                                                                           23467
## Ionotropic Activity Of Kainate Receptors                                                                                                  23467
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                 23467
## Ire1alpha Activates Chaperones                                                                                                            23467
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                    23467
## Irf3 Mediated Induction Of Type I Ifn                                                                                                     23467
## Iron Uptake And Transport                                                                                                                 23467
## Irs Activation                                                                                                                            23467
## Josephin Domain Dubs                                                                                                                      23467
## Keratan Sulfate Biosynthesis                                                                                                              23467
## Keratan Sulfate Degradation                                                                                                               23467
## Keratan Sulfate Keratin Metabolism                                                                                                        23467
## Keratinization                                                                                                                            23467
## Ketone Body Metabolism                                                                                                                    23467
## Kinesins                                                                                                                                  23467
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                    23467
## L1cam Interactions                                                                                                                        23467
## Lagging Strand Synthesis                                                                                                                  23467
## Laminin Interactions                                                                                                                      23467
## Late Endosomal Microautophagy                                                                                                             23467
## Ldl Clearance                                                                                                                             23467
## Lectin Pathway Of Complement Activation                                                                                                   23467
## Leukotriene Receptors                                                                                                                     23467
## Lgi Adam Interactions                                                                                                                     23467
## Ligand Receptor Interactions                                                                                                              23467
## Linoleic Acid La Metabolism                                                                                                               23467
## Lipid Particle Organization                                                                                                               23467
## Lipophagy                                                                                                                                 23467
## Listeria Monocytogenes Entry Into Host Cells                                                                                              23467
## Long Term Potentiation                                                                                                                    23467
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                23467
## Loss Of Function Of Smad2 3 In Cancer                                                                                                     23467
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                    23467
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                    23467
## Ltc4 Cysltr Mediated Il4 Production                                                                                                       23467
## Lysine Catabolism                                                                                                                         23467
## Lysosome Vesicle Biogenesis                                                                                                               23467
## Lysosphingolipid And Lpa Receptors                                                                                                        23467
## Map2k And Mapk Activation                                                                                                                 23467
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                  23467
## Mapk1 Erk2 Activation                                                                                                                     23467
## Maturation Of Nucleoprotein                                                                                                               23467
## Maturation Of Protein 3a                                                                                                                  23467
## Maturation Of Sars Cov 1 Spike Protein                                                                                                    23467
## Maturation Of Sars Cov 2 Spike Protein                                                                                                    23467
## Meiosis                                                                                                                                   23467
## Meiotic Recombination                                                                                                                     23467
## Meiotic Synapsis                                                                                                                          23467
## Melanin Biosynthesis                                                                                                                      23467
## Met Activates Pi3k Akt Signaling                                                                                                          23467
## Met Activates Ptk2 Signaling                                                                                                              23467
## Met Activates Ptpn11                                                                                                                      23467
## Met Activates Rap1 And Rac1                                                                                                               23467
## Met Activates Ras Signaling                                                                                                               23467
## Met Interacts With Tns Proteins                                                                                                           23467
## Met Promotes Cell Motility                                                                                                                23467
## Met Receptor Activation                                                                                                                   23467
## Met Receptor Recycling                                                                                                                    23467
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                       23467
## Metabolism Of Amine Derived Hormones                                                                                                      23467
## Metabolism Of Angiotensinogen To Angiotensins                                                                                             23467
## Metabolism Of Cofactors                                                                                                                   23467
## Metabolism Of Folate And Pterines                                                                                                         23467
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                          23467
## Metabolism Of Nucleotides                                                                                                                 23467
## Metabolism Of Polyamines                                                                                                                  23467
## Metabolism Of Porphyrins                                                                                                                  23467
## Metabolism Of Rna                                                                                                                         23467
## Metabolism Of Steroid Hormones                                                                                                            23467
## Metabolism Of Steroids                                                                                                                    23467
## Metal Ion Slc Transporters                                                                                                                23467
## Metal Sequestration By Antimicrobial Proteins                                                                                             23467
## Metallothioneins Bind Metals                                                                                                              23467
## Methionine Salvage Pathway                                                                                                                23467
## Methylation                                                                                                                               23467
## Microrna Mirna Biogenesis                                                                                                                 23467
## Mineralocorticoid Biosynthesis                                                                                                            23467
## Miro Gtpase Cycle                                                                                                                         23467
## Miscellaneous Substrates                                                                                                                  23467
## Miscellaneous Transport And Binding Events                                                                                                23467
## Mismatch Repair                                                                                                                           23467
## Mitochondrial Calcium Ion Transport                                                                                                       23467
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                   23467
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                          23467
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                        23467
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                              23467
## Mitochondrial Protein Import                                                                                                              23467
## Mitochondrial Translation                                                                                                                 23467
## Mitochondrial Trna Aminoacylation                                                                                                         23467
## Mitochondrial Uncoupling                                                                                                                  23467
## Mitotic Spindle Checkpoint                                                                                                                23467
## Mitotic Telophase Cytokinesis                                                                                                             23467
## Modulation By Mtb Of Host Immune System                                                                                                   23467
## Molecules Associated With Elastic Fibres                                                                                                  23467
## Molybdenum Cofactor Biosynthesis                                                                                                          23467
## Mrna Capping                                                                                                                              23467
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                      23467
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                      23467
## Mrna Editing                                                                                                                              23467
## Mrna Editing C To U Conversion                                                                                                            23467
## Mrna Splicing                                                                                                                             23467
## Mrna Splicing Minor Pathway                                                                                                               23467
## Mtor Signalling                                                                                                                           23467
## Mtorc1 Mediated Signalling                                                                                                                23467
## Mucopolysaccharidoses                                                                                                                     23467
## Multifunctional Anion Exchangers                                                                                                          23467
## Muscarinic Acetylcholine Receptors                                                                                                        23467
## Myoclonic Epilepsy Of Lafora                                                                                                              23467
## N Glycan Antennae Elongation                                                                                                              23467
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                    23467
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                         23467
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                               23467
## Na Cl Dependent Neurotransmitter Transporters                                                                                             23467
## Nade Modulates Death Signalling                                                                                                           23467
## Ncam1 Interactions                                                                                                                        23467
## Nectin Necl Trans Heterodimerization                                                                                                      23467
## Neddylation                                                                                                                               23467
## Nef And Signal Transduction                                                                                                               23467
## Nef Mediated Cd4 Down Regulation                                                                                                          23467
## Nef Mediated Cd8 Down Regulation                                                                                                          23467
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                23467
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                            23467
## Negative Feedback Regulation Of Mapk Pathway                                                                                              23467
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                23467
## Negative Regulation Of Fgfr1 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr2 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr3 Signaling                                                                                                    23467
## Negative Regulation Of Fgfr4 Signaling                                                                                                    23467
## Negative Regulation Of Flt3                                                                                                               23467
## Negative Regulation Of Mapk Pathway                                                                                                       23467
## Negative Regulation Of Met Activity                                                                                                       23467
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                       23467
## Negative Regulation Of Notch4 Signaling                                                                                                   23467
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                23467
## Nephrin Family Interactions                                                                                                               23467
## Netrin Mediated Repulsion Signals                                                                                                         23467
## Neurexins And Neuroligins                                                                                                                 23467
## Neurofascin Interactions                                                                                                                  23467
## Neurotoxicity Of Clostridium Toxins                                                                                                       23467
## Neurotransmitter Clearance                                                                                                                23467
## Neurotransmitter Release Cycle                                                                                                            23467
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                  23467
## Ngf Independant Trka Activation                                                                                                           23467
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                 23467
## Non Integrin Membrane Ecm Interactions                                                                                                    23467
## Noncanonical Activation Of Notch3                                                                                                         23467
## Nonhomologous End Joining Nhej                                                                                                            23467
## Nonsense Mediated Decay Nmd                                                                                                               23467
## Norepinephrine Neurotransmitter Release Cycle                                                                                             23467
## Notch Hlh Transcription Pathway                                                                                                           23467
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Notch3 Intracellular Domain Regulates Transcription                                                                                       23467
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                               23467
## Notch4 Intracellular Domain Regulates Transcription                                                                                       23467
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                        23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                            23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                23467
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                          23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                     23467
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                          23467
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                           23467
## Nrcam Interactions                                                                                                                        23467
## Ns1 Mediated Effects On Host Pathways                                                                                                     23467
## Ntrk2 Activates Rac1                                                                                                                      23467
## Nuclear Import Of Rev Protein                                                                                                             23467
## Nuclear Receptor Transcription Pathway                                                                                                    23467
## Nuclear Signaling By Erbb4                                                                                                                23467
## Nucleobase Biosynthesis                                                                                                                   23467
## Nucleobase Catabolism                                                                                                                     23467
## Nucleotide Excision Repair                                                                                                                23467
## Nucleotide Like Purinergic Receptors                                                                                                      23467
## Nucleotide Salvage                                                                                                                        23467
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                         23467
## O Linked Glycosylation                                                                                                                    23467
## O Linked Glycosylation Of Mucins                                                                                                          23467
## Oas Antiviral Response                                                                                                                    23467
## Olfactory Signaling Pathway                                                                                                               23467
## Oncogene Induced Senescence                                                                                                               23467
## Oncogenic Mapk Signaling                                                                                                                  23467
## Opsins                                                                                                                                    23467
## Orc1 Removal From Chromatin                                                                                                               23467
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                   23467
## Organic Anion Transport                                                                                                                   23467
## Organic Anion Transporters                                                                                                                23467
## Organic Cation Anion Zwitterion Transport                                                                                                 23467
## Organic Cation Transport                                                                                                                  23467
## Other Interleukin Signaling                                                                                                               23467
## P130cas Linkage To Mapk Signaling For Integrins                                                                                           23467
## P2y Receptors                                                                                                                             23467
## P38mapk Events                                                                                                                            23467
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                            23467
## P75ntr Regulates Axonogenesis                                                                                                             23467
## Passive Transport By Aquaporins                                                                                                           23467
## Pcna Dependent Long Patch Base Excision Repair                                                                                            23467
## Pecam1 Interactions                                                                                                                       23467
## Pentose Phosphate Pathway                                                                                                                 23467
## Peptide Hormone Biosynthesis                                                                                                              23467
## Peroxisomal Lipid Metabolism                                                                                                              23467
## Peroxisomal Protein Import                                                                                                                23467
## Pexophagy                                                                                                                                 23467
## Phase 0 Rapid Depolarisation                                                                                                              23467
## Phase 1 Inactivation Of Fast Na Channels                                                                                                  23467
## Phase 2 Plateau Phase                                                                                                                     23467
## Phase 3 Rapid Repolarisation                                                                                                              23467
## Phase I Functionalization Of Compounds                                                                                                    23467
## Phase Ii Conjugation Of Compounds                                                                                                         23467
## Phenylalanine And Tyrosine Metabolism                                                                                                     23467
## Phenylalanine Metabolism                                                                                                                  23467
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                             23467
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                23467
## Phospholipase C Mediated Cascade Fgfr2                                                                                                    23467
## Phospholipase C Mediated Cascade Fgfr4                                                                                                    23467
## Phospholipid Metabolism                                                                                                                   23467
## Physiological Factors                                                                                                                     23467
## Pi 3k Cascade Fgfr1                                                                                                                       23467
## Pi 3k Cascade Fgfr2                                                                                                                       23467
## Pi 3k Cascade Fgfr3                                                                                                                       23467
## Pi 3k Cascade Fgfr4                                                                                                                       23467
## Pi Metabolism                                                                                                                             23467
## Pi3k Akt Activation                                                                                                                       23467
## Pi3k Events In Erbb2 Signaling                                                                                                            23467
## Pi3k Events In Erbb4 Signaling                                                                                                            23467
## Pi5p Regulates Tp53 Acetylation                                                                                                           23467
## Piwi Interacting Rna Pirna Biogenesis                                                                                                     23467
## Pka Activation In Glucagon Signalling                                                                                                     23467
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                     23467
## Pkmts Methylate Histone Lysines                                                                                                           23467
## Platelet Adhesion To Exposed Collagen                                                                                                     23467
## Platelet Aggregation Plug Formation                                                                                                       23467
## Platelet Calcium Homeostasis                                                                                                              23467
## Platelet Homeostasis                                                                                                                      23467
## Platelet Sensitization By Ldl                                                                                                             23467
## Polb Dependent Long Patch Base Excision Repair                                                                                            23467
## Polo Like Kinase Mediated Events                                                                                                          23467
## Polymerase Switching                                                                                                                      23467
## Polymerase Switching On The C Strand Of The Telomere                                                                                      23467
## Positive Epigenetic Regulation Of Rrna Expression                                                                                         23467
## Post Chaperonin Tubulin Folding Pathway                                                                                                   23467
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                          23467
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                           23467
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                  23467
## Pre Notch Expression And Processing                                                                                                       23467
## Pre Notch Processing In Golgi                                                                                                             23467
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                         23467
## Pregnenolone Biosynthesis                                                                                                                 23467
## Presynaptic Depolarization And Calcium Channel Opening                                                                                    23467
## Presynaptic Function Of Kainate Receptors                                                                                                 23467
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                 23467
## Processing And Activation Of Sumo                                                                                                         23467
## Processing Of Capped Intron Containing Pre Mrna                                                                                           23467
## Processing Of Capped Intronless Pre Mrna                                                                                                  23467
## Processing Of Dna Double Strand Break Ends                                                                                                23467
## Processing Of Intronless Pre Mrnas                                                                                                        23467
## Processing Of Smdt1                                                                                                                       23467
## Processive Synthesis On The C Strand Of The Telomere                                                                                      23467
## Processive Synthesis On The Lagging Strand                                                                                                23467
## Prolactin Receptor Signaling                                                                                                              23467
## Prolonged Erk Activation Events                                                                                                           23467
## Propionyl Coa Catabolism                                                                                                                  23467
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                     23467
## Prostanoid Ligand Receptors                                                                                                               23467
## Protein Localization                                                                                                                      23467
## Protein Methylation                                                                                                                       23467
## Protein Protein Interactions At Synapses                                                                                                  23467
## Protein Repair                                                                                                                            23467
## Protein Ubiquitination                                                                                                                    23467
## Proton Coupled Monocarboxylate Transport                                                                                                  23467
## Pten Regulation                                                                                                                           23467
## Ptk6 Expression                                                                                                                           23467
## Ptk6 Promotes Hif1a Stabilization                                                                                                         23467
## Ptk6 Regulates Cell Cycle                                                                                                                 23467
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                        23467
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                     23467
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                     23467
## Purine Catabolism                                                                                                                         23467
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                          23467
## Purine Salvage                                                                                                                            23467
## Pyrimidine Catabolism                                                                                                                     23467
## Pyrimidine Salvage                                                                                                                        23467
## Pyruvate Metabolism                                                                                                                       23467
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                             23467
## Ra Biosynthesis Pathway                                                                                                                   23467
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                     23467
## Rab Geranylgeranylation                                                                                                                   23467
## Rab Regulation Of Trafficking                                                                                                             23467
## Raf Activation                                                                                                                            23467
## Rap1 Signalling                                                                                                                           23467
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                      23467
## Ras Processing                                                                                                                            23467
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                 23467
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                              23467
## Receptor Type Tyrosine Protein Phosphatases                                                                                               23467
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                    23467
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                          23467
## Recycling Of Bile Acids And Salts                                                                                                         23467
## Recycling Of Eif2 Gdp                                                                                                                     23467
## Recycling Pathway Of L1                                                                                                                   23467
## Reduction Of Cytosolic Ca Levels                                                                                                          23467
## Reelin Signalling Pathway                                                                                                                 23467
## Regulated Proteolysis Of P75ntr                                                                                                           23467
## Regulation Of Bach1 Activity                                                                                                              23467
## Regulation Of Beta Cell Development                                                                                                       23467
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                     23467
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                               23467
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                        23467
## Regulation Of Expression Of Slits And Robos                                                                                               23467
## Regulation Of Fzd By Ubiquitination                                                                                                       23467
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                 23467
## Regulation Of Gene Expression In Beta Cells                                                                                               23467
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                         23467
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                             23467
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                        23467
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                               23467
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                          23467
## Regulation Of Hmox1 Expression And Activity                                                                                               23467
## Regulation Of Ifna Signaling                                                                                                              23467
## Regulation Of Ifng Signaling                                                                                                              23467
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                    23467
## Regulation Of Insulin Secretion                                                                                                           23467
## Regulation Of Kit Signaling                                                                                                               23467
## Regulation Of Localization Of Foxo Transcription Factors                                                                                  23467
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                       23467
## Regulation Of Pten Gene Transcription                                                                                                     23467
## Regulation Of Pten Localization                                                                                                           23467
## Regulation Of Pten Mrna Translation                                                                                                       23467
## Regulation Of Pten Stability And Activity                                                                                                 23467
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                          23467
## Regulation Of Ras By Gaps                                                                                                                 23467
## Regulation Of Runx1 Expression And Activity                                                                                               23467
## Regulation Of Runx2 Expression And Activity                                                                                               23467
## Regulation Of Runx3 Expression And Activity                                                                                               23467
## Regulation Of Signaling By Cbl                                                                                                            23467
## Regulation Of Signaling By Nodal                                                                                                          23467
## Regulation Of Tp53 Activity Through Acetylation                                                                                           23467
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                           23467
## Regulation Of Tp53 Activity Through Methylation                                                                                           23467
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                       23467
## Relaxin Receptors                                                                                                                         23467
## Release Of Apoptotic Factors From The Mitochondria                                                                                        23467
## Release Of Hh Np From The Secreting Cell                                                                                                  23467
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                     23467
## Reproduction                                                                                                                              23467
## Resolution Of Abasic Sites Ap Sites                                                                                                       23467
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                              23467
## Resolution Of D Loop Structures                                                                                                           23467
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                         23467
## Respiratory Electron Transport                                                                                                            23467
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                          23467
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                23467
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                         23467
## Response Of Mtb To Phagocytosis                                                                                                           23467
## Response To Metal Ions                                                                                                                    23467
## Ret Signaling                                                                                                                             23467
## Retinoid Cycle Disease Events                                                                                                             23467
## Retrograde Neurotrophin Signalling                                                                                                        23467
## Retrograde Transport At The Trans Golgi Network                                                                                           23467
## Reversible Hydration Of Carbon Dioxide                                                                                                    23467
## Rho Gtpases Activate Cit                                                                                                                  23467
## Rho Gtpases Activate Nadph Oxidases                                                                                                       23467
## Rho Gtpases Activate Pkns                                                                                                                 23467
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                              23467
## Rho Gtpases Activate Rocks                                                                                                                23467
## Rhobtb Gtpase Cycle                                                                                                                       23467
## Rhobtb1 Gtpase Cycle                                                                                                                      23467
## Rhobtb2 Gtpase Cycle                                                                                                                      23467
## Rhobtb3 Atpase Cycle                                                                                                                      23467
## Rhot1 Gtpase Cycle                                                                                                                        23467
## Rna Polymerase I Promoter Escape                                                                                                          23467
## Rna Polymerase I Transcription                                                                                                            23467
## Rna Polymerase I Transcription Initiation                                                                                                 23467
## Rna Polymerase I Transcription Termination                                                                                                23467
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                 23467
## Rna Polymerase Ii Transcription Termination                                                                                               23467
## Rna Polymerase Iii Chain Elongation                                                                                                       23467
## Rna Polymerase Iii Transcription                                                                                                          23467
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                          23467
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                          23467
## Rna Polymerase Iii Transcription Termination                                                                                              23467
## Robo Receptors Bind Akap5                                                                                                                 23467
## Role Of Abl In Robo Slit Signaling                                                                                                        23467
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                             23467
## Role Of Phospholipids In Phagocytosis                                                                                                     23467
## Role Of Second Messengers In Netrin 1 Signaling                                                                                           23467
## Rora Activates Gene Expression                                                                                                            23467
## Rrna Modification In The Mitochondrion                                                                                                    23467
## Rrna Modification In The Nucleus And Cytosol                                                                                              23467
## Rrna Processing                                                                                                                           23467
## Rrna Processing In The Mitochondrion                                                                                                      23467
## Rsk Activation                                                                                                                            23467
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                        23467
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                  23467
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                               23467
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                     23467
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                          23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                23467
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                       23467
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                  23467
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                          23467
## Runx2 Regulates Bone Development                                                                                                          23467
## Runx2 Regulates Chondrocyte Maturation                                                                                                    23467
## Runx2 Regulates Genes Involved In Cell Migration                                                                                          23467
## Runx2 Regulates Osteoblast Differentiation                                                                                                23467
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                 23467
## Runx3 Regulates Cdkn1a Transcription                                                                                                      23467
## Runx3 Regulates Immune Response And Cell Migration                                                                                        23467
## Runx3 Regulates Notch Signaling                                                                                                           23467
## Runx3 Regulates P14 Arf                                                                                                                   23467
## Runx3 Regulates Yap1 Mediated Transcription                                                                                               23467
## Sars Cov 1 Genome Replication And Transcription                                                                                           23467
## Sars Cov 1 Infection                                                                                                                      23467
## Sars Cov 2 Infection                                                                                                                      23467
## Scavenging By Class F Receptors                                                                                                           23467
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                  23467
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                           23467
## Selenoamino Acid Metabolism                                                                                                               23467
## Sema3a Pak Dependent Axon Repulsion                                                                                                       23467
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                         23467
## Sema4d In Semaphorin Signaling                                                                                                            23467
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                    23467
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                               23467
## Sensing Of Dna Double Strand Breaks                                                                                                       23467
## Sensory Processing Of Sound                                                                                                               23467
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                            23467
## Separation Of Sister Chromatids                                                                                                           23467
## Serine Biosynthesis                                                                                                                       23467
## Serotonin And Melatonin Biosynthesis                                                                                                      23467
## Serotonin Neurotransmitter Release Cycle                                                                                                  23467
## Serotonin Receptors                                                                                                                       23467
## Shc Mediated Cascade Fgfr1                                                                                                                23467
## Shc Mediated Cascade Fgfr3                                                                                                                23467
## Shc Mediated Cascade Fgfr4                                                                                                                23467
## Shc Related Events Triggered By Igf1r                                                                                                     23467
## Shc1 Events In Egfr Signaling                                                                                                             23467
## Shc1 Events In Erbb2 Signaling                                                                                                            23467
## Shc1 Events In Erbb4 Signaling                                                                                                            23467
## Sialic Acid Metabolism                                                                                                                    23467
## Signal Amplification                                                                                                                      23467
## Signal Attenuation                                                                                                                        23467
## Signal Regulatory Protein Family Interactions                                                                                             23467
## Signal Transduction By L1                                                                                                                 23467
## Signaling By Activin                                                                                                                      23467
## Signaling By Bmp                                                                                                                          23467
## Signaling By Braf And Raf Fusions                                                                                                         23467
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                  23467
## Signaling By Egfr In Cancer                                                                                                               23467
## Signaling By Erbb2                                                                                                                        23467
## Signaling By Erbb2 Ecd Mutants                                                                                                            23467
## Signaling By Erbb2 In Cancer                                                                                                              23467
## Signaling By Erbb4                                                                                                                        23467
## Signaling By Erythropoietin                                                                                                               23467
## Signaling By Fgfr                                                                                                                         23467
## Signaling By Fgfr1                                                                                                                        23467
## Signaling By Fgfr2                                                                                                                        23467
## Signaling By Fgfr2 Iiia Tm                                                                                                                23467
## Signaling By Fgfr2 In Disease                                                                                                             23467
## Signaling By Fgfr3                                                                                                                        23467
## Signaling By Fgfr3 Fusions In Cancer                                                                                                      23467
## Signaling By Fgfr4                                                                                                                        23467
## Signaling By Fgfr4 In Disease                                                                                                             23467
## Signaling By Flt3 Fusion Proteins                                                                                                         23467
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                     23467
## Signaling By Hedgehog                                                                                                                     23467
## Signaling By Hippo                                                                                                                        23467
## Signaling By Lrp5 Mutants                                                                                                                 23467
## Signaling By Mapk Mutants                                                                                                                 23467
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                23467
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                        23467
## Signaling By Mras Complex Mutants                                                                                                         23467
## Signaling By Mst1                                                                                                                         23467
## Signaling By Nodal                                                                                                                        23467
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                           23467
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                         23467
## Signaling By Notch3                                                                                                                       23467
## Signaling By Notch4                                                                                                                       23467
## Signaling By Ntrk2 Trkb                                                                                                                   23467
## Signaling By Ntrk3 Trkc                                                                                                                   23467
## Signaling By Retinoic Acid                                                                                                                23467
## Signaling By Rnf43 Mutants                                                                                                                23467
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                          23467
## Signaling By Wnt In Cancer                                                                                                                23467
## Signalling To Erks                                                                                                                        23467
## Signalling To P38 Via Rit And Rin                                                                                                         23467
## Signalling To Ras                                                                                                                         23467
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                      23467
## Slc Mediated Transmembrane Transport                                                                                                      23467
## Slc Transporter Disorders                                                                                                                 23467
## Smac Xiap Regulated Apoptotic Response                                                                                                    23467
## Small Interfering Rna Sirna Biogenesis                                                                                                    23467
## Smooth Muscle Contraction                                                                                                                 23467
## Snrnp Assembly                                                                                                                            23467
## Sodium Calcium Exchangers                                                                                                                 23467
## Sodium Coupled Phosphate Cotransporters                                                                                                   23467
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                               23467
## Sodium Proton Exchangers                                                                                                                  23467
## Sos Mediated Signalling                                                                                                                   23467
## Sperm Motility And Taxes                                                                                                                  23467
## Sphingolipid De Novo Biosynthesis                                                                                                         23467
## Sphingolipid Metabolism                                                                                                                   23467
## Spry Regulation Of Fgf Signaling                                                                                                          23467
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                               23467
## Stabilization Of P53                                                                                                                      23467
## Stat5 Activation                                                                                                                          23467
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                           23467
## Stimuli Sensing Channels                                                                                                                  23467
## Sting Mediated Induction Of Host Immune Responses                                                                                         23467
## Striated Muscle Contraction                                                                                                               23467
## Sulfide Oxidation To Sulfate                                                                                                              23467
## Sulfur Amino Acid Metabolism                                                                                                              23467
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                        23467
## Sumo Is Proteolytically Processed                                                                                                         23467
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                              23467
## Sumoylation Of Chromatin Organization Proteins                                                                                            23467
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                    23467
## Sumoylation Of Dna Replication Proteins                                                                                                   23467
## Sumoylation Of Intracellular Receptors                                                                                                    23467
## Sumoylation Of Rna Binding Proteins                                                                                                       23467
## Sumoylation Of Sumoylation Proteins                                                                                                       23467
## Sumoylation Of Transcription Cofactors                                                                                                    23467
## Sumoylation Of Transcription Factors                                                                                                      23467
## Sumoylation Of Ubiquitinylation Proteins                                                                                                  23467
## Suppression Of Apoptosis                                                                                                                  23467
## Suppression Of Phagosomal Maturation                                                                                                      23467
## Surfactant Metabolism                                                                                                                     23467
## Switching Of Origins To A Post Replicative State                                                                                          23467
## Synaptic Adhesion Like Molecules                                                                                                          23467
## Syndecan Interactions                                                                                                                     23467
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                         23467
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                     23467
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                     23467
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                  23467
## Synthesis Of Bile Acids And Bile Salts                                                                                                    23467
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                          23467
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                          23467
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                      23467
## Synthesis Of Diphthamide Eef2                                                                                                             23467
## Synthesis Of Dolichyl Phosphate                                                                                                           23467
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                             23467
## Synthesis Of Gdp Mannose                                                                                                                  23467
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                             23467
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                23467
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                   23467
## Synthesis Of Ketone Bodies                                                                                                                23467
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                23467
## Synthesis Of Lipoxins Lx                                                                                                                  23467
## Synthesis Of Pa                                                                                                                           23467
## Synthesis Of Pc                                                                                                                           23467
## Synthesis Of Pe                                                                                                                           23467
## Synthesis Of Pg                                                                                                                           23467
## Synthesis Of Pi                                                                                                                           23467
## Synthesis Of Pips At The Early Endosome Membrane                                                                                          23467
## Synthesis Of Pips At The Er Membrane                                                                                                      23467
## Synthesis Of Pips At The Golgi Membrane                                                                                                   23467
## Synthesis Of Pips At The Late Endosome Membrane                                                                                           23467
## Synthesis Of Pips At The Plasma Membrane                                                                                                  23467
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                23467
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                           23467
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                     23467
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                              23467
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                23467
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                            23467
## Tachykinin Receptors Bind Tachykinins                                                                                                     23467
## Tbc Rabgaps                                                                                                                               23467
## Telomere C Strand Lagging Strand Synthesis                                                                                                23467
## Telomere C Strand Synthesis Initiation                                                                                                    23467
## Telomere Extension By Telomerase                                                                                                          23467
## Telomere Maintenance                                                                                                                      23467
## Terminal Pathway Of Complement                                                                                                            23467
## Termination Of O Glycan Biosynthesis                                                                                                      23467
## Termination Of Translesion Dna Synthesis                                                                                                  23467
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                        23467
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                           23467
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                              23467
## Tgf Beta Receptor Signaling Activates Smads                                                                                               23467
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                   23467
## The Activation Of Arylsulfatases                                                                                                          23467
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                      23467
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                              23467
## The Fatty Acid Cycling Model                                                                                                              23467
## The Phototransduction Cascade                                                                                                             23467
## The Retinoid Cycle In Cones Daylight Vision                                                                                               23467
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                             23467
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                           23467
## Thromboxane Signalling Through Tp Receptor                                                                                                23467
## Thyroxine Biosynthesis                                                                                                                    23467
## Tie2 Signaling                                                                                                                            23467
## Tight Junction Interactions                                                                                                               23467
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                   23467
## Tp53 Regulates Metabolic Genes                                                                                                            23467
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                          23467
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                           23467
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                          23467
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                               23467
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                          23467
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                    23467
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                    23467
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain      23467
## Traf3 Dependent Irf Activation Pathway                                                                                                    23467
## Traf6 Mediated Irf7 Activation                                                                                                            23467
## Trafficking Of Ampa Receptors                                                                                                             23467
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                            23467
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                       23467
## Trail Signaling                                                                                                                           23467
## Trans Golgi Network Vesicle Budding                                                                                                       23467
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                   23467
## Transcription Of The Hiv Genome                                                                                                           23467
## Transcriptional Regulation By E2f6                                                                                                        23467
## Transcriptional Regulation By Small Rnas                                                                                                  23467
## Transcriptional Regulation By Ventx                                                                                                       23467
## Transcriptional Regulation Of Testis Differentiation                                                                                      23467
## Transferrin Endocytosis And Recycling                                                                                                     23467
## Translation                                                                                                                               23467
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                            23467
## Translation Of Sars Cov 1 Structural Proteins                                                                                             23467
## Translation Of Sars Cov 2 Structural Proteins                                                                                             23467
## Translesion Synthesis By Polh                                                                                                             23467
## Translesion Synthesis By Polk                                                                                                             23467
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                        23467
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                      23467
## Transport And Synthesis Of Paps                                                                                                           23467
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                  23467
## Transport Of Connexons To The Plasma Membrane                                                                                             23467
## Transport Of Fatty Acids                                                                                                                  23467
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                       23467
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                             23467
## Transport Of Mature Transcript To Cytoplasm                                                                                               23467
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                  23467
## Transport Of Nucleotide Sugars                                                                                                            23467
## Transport Of Organic Anions                                                                                                               23467
## Transport Of The Slbp Dependant Mature Mrna                                                                                               23467
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                   23467
## Triglyceride Biosynthesis                                                                                                                 23467
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                     23467
## Trna Aminoacylation                                                                                                                       23467
## Trna Modification In The Mitochondrion                                                                                                    23467
## Trna Modification In The Nucleus And Cytosol                                                                                              23467
## Trna Processing                                                                                                                           23467
## Trna Processing In The Mitochondrion                                                                                                      23467
## Trna Processing In The Nucleus                                                                                                            23467
## Trp Channels                                                                                                                              23467
## Tryptophan Catabolism                                                                                                                     23467
## Type I Hemidesmosome Assembly                                                                                                             23467
## Tyrosine Catabolism                                                                                                                       23467
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                       23467
## Ubiquinol Biosynthesis                                                                                                                    23467
## Uch Proteinases                                                                                                                           23467
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                             23467
## Unwinding Of Dna                                                                                                                          23467
## Uptake And Actions Of Bacterial Toxins                                                                                                    23467
## Uptake And Function Of Anthrax Toxins                                                                                                     23467
## Uptake And Function Of Diphtheria Toxin                                                                                                   23467
## Urea Cycle                                                                                                                                23467
## Vasopressin Like Receptors                                                                                                                23467
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                              23467
## Vegf Ligand Receptor Interactions                                                                                                         23467
## Vegfr2 Mediated Cell Proliferation                                                                                                        23467
## Viral Messenger Rna Synthesis                                                                                                             23467
## Vitamin B1 Thiamin Metabolism                                                                                                             23467
## Vitamin B2 Riboflavin Metabolism                                                                                                          23467
## Vitamin B5 Pantothenate Metabolism                                                                                                        23467
## Vitamin C Ascorbate Metabolism                                                                                                            23467
## Vitamin D Calciferol Metabolism                                                                                                           23467
## Vitamins                                                                                                                                  23467
## Vldl Assembly                                                                                                                             23467
## Vldl Clearance                                                                                                                            23467
## Vldlr Internalisation And Degradation                                                                                                     23467
## Voltage Gated Potassium Channels                                                                                                          23467
## Vxpx Cargo Targeting To Cilium                                                                                                            23467
## Wax And Plasmalogen Biosynthesis                                                                                                          23467
## Wnt Mediated Activation Of Dvl                                                                                                            23467
## Xenobiotics                                                                                                                               23467
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                             23467
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                  23467
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                           23467
## Zinc Transporters                                                                                                                         23467
##                                                                                                                                                                                                                                                                                                                                                             hits
## Cytokine Signaling In Immune System                                                                                                  BIRC3,CCL11,CCL2,CCL22,CCR5,CD40,CD70,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL8,FASLG,HLA-B,HLA-DQB1,HMGB1,IL13,IL15,IL17A,IL18,IL1B,IL2,IL4,IRAK1,IRF4,LBP,MAPK8,MIF,MYC,NFKBIA,NOD2,PTGS2,RIPK2,STAT3,TNF,TNFSF11,TNFSF13B
## Signaling By Interleukins                                                                                                                                                            CCL11,CCL2,CCL22,CCR5,CD86,CDC42,CREB1,CSF2,CXCL1,CXCL10,CXCL8,FASLG,HMGB1,IL13,IL15,IL17A,IL18,IL1B,IL2,IL4,IRAK1,IRF4,LBP,MAPK8,MIF,MYC,NFKBIA,NOD2,PTGS2,RIPK2,STAT3,TNF
## Innate Immune System                                                                                                                                   AIM2,ATG5,BIRC3,BPI,C3,C5AR1,CCL22,CD55,CD59,CD63,CDC42,CEACAM1,CREB1,CRP,CST3,CTSC,CXCL1,DEFB4A,HLA-B,HMGB1,HP,IL1B,IRAK1,LBP,LY96,MAPK8,MIF,MMP8,MPO,NFKBIA,NLRP3,NOD2,RIPK2,SLPI,TLR3,TLR9,TREM1,TREM2
## Interleukin 10 Signaling                                                                                                                                                                                                                                                                  CCL2,CCL22,CCR5,CD86,CSF2,CXCL1,CXCL10,CXCL8,IL18,IL1B,PTGS2,STAT3,TNF
## Interleukin 4 And Interleukin 13 Signaling                                                                                                                                                                                                                                    CCL11,CCL2,CCL22,CXCL8,FASLG,IL13,IL17A,IL18,IL1B,IL4,IRF4,LBP,MYC,PTGS2,STAT3,TNF
## Toll Like Receptor Cascades                                                                                                                                                                                                                                                               BIRC3,BPI,CREB1,HMGB1,IRAK1,LBP,LY96,MAPK8,NFKBIA,NOD2,RIPK2,TLR3,TLR9
## Peptide Ligand Binding Receptors                                                                                                                                                                                                                                                         C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN
## Chemokine Receptors Bind Chemokines                                                                                                                                                                                                                                                                        CCL11,CCL2,CCL22,CCR5,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8
## Neutrophil Degranulation                                                                                                                                                                                                                                                    BPI,C3,C5AR1,CD55,CD59,CD63,CEACAM1,CST3,CTSC,CXCL1,HLA-B,HMGB1,HP,MIF,MMP8,MPO,SLPI
## Interleukin 1 Family Signaling                                                                                                                                                                                                                                                                      HMGB1,IL13,IL18,IL1B,IL4,IRAK1,MAPK8,NFKBIA,NOD2,RIPK2,STAT3
## Toll Like Receptor 9 Tlr9 Cascade                                                                                                                                                                                                                                                                            CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2,TLR9
## Myd88 Independent Tlr4 Cascade                                                                                                                                                                                                                                                                              BIRC3,CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2
## Gpcr Ligand Binding                                                                                                                                                                                                                                                           C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CD55,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN,WNT5A
## Class A 1 Rhodopsin Like Receptors                                                                                                                                                                                                                                                       C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CORT,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN
## Signaling By Gpcr                                                                                                                                                                                                                                                 C3,C5AR1,CCL11,CCL2,CCL22,CCR5,CD55,CDC42,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8,MLN,WNT5A
## Toll Like Receptor Tlr1 Tlr2 Cascade                                                                                                                                                                                                                                                                              CREB1,HMGB1,IRAK1,LY96,MAPK8,NFKBIA,NOD2,RIPK2
## Adaptive Immune System                                                                                                                                                                                                                                        C3,CD274,CD34,CD40,CD86,CDC42,CTLA4,CTSC,FCGR2B,HLA-B,HLA-DQB1,HMGB1,LY96,NFKBIA,RIPK2,TREM1,TREM2
## Nucleotide Binding Domain Leucine Rich Repeat Containing Receptor Nlr Signaling Pathways                                                                                                                                                                                                                                       AIM2,BIRC3,IRAK1,NLRP3,NOD2,RIPK2
## Tnfr2 Non Canonical Nf Kb Pathway                                                                                                                                                                                                                                                                                     BIRC3,CD40,CD70,FASLG,TNF,TNFSF11,TNFSF13B
## Tak1 Activates Nfkb By Phosphorylation And Activation Of Ikks Complex                                                                                                                                                                                                                                                              HMGB1,IRAK1,NFKBIA,NOD2,RIPK2
## Interleukin 17 Signaling                                                                                                                                                                                                                                                                                                      CREB1,IL17A,IRAK1,MAPK8,NOD2,RIPK2
## G Alpha I Signalling Events                                                                                                                                                                                                                                                                             C3,C5AR1,CCR5,CORT,CREB1,CXCL1,CXCL10,CXCL11,CXCL3,CXCL8
## Tnf Receptor Superfamily Tnfsf Members Mediating Non Canonical Nf Kb Pathway                                                                                                                                                                                                                                                         BIRC3,CD40,TNFSF11,TNFSF13B
## Death Receptor Signalling                                                                                                                                                                                                                                                                                               BIRC3,FASLG,IRAK1,MAPK8,NFKBIA,RIPK2,TNF
## Jnk C Jun Kinases Phosphorylation And Activation Mediated By Activated Human Tak1                                                                                                                                                                                                                                                         IRAK1,MAPK8,NOD2,RIPK2
## Programmed Cell Death                                                                                                                                                                                                                                                                                               BIRC3,FASLG,HMGB1,IL18,IL1B,LY96,MAPK8,STAT3
## Regulated Necrosis                                                                                                                                                                                                                                                                                                                   BIRC3,FASLG,HMGB1,IL18,IL1B
## Interleukin 1 Signaling                                                                                                                                                                                                                                                                                                       HMGB1,IL1B,IRAK1,NFKBIA,NOD2,RIPK2
## Purinergic Signaling In Leishmaniasis Infection                                                                                                                                                                                                                                                                                               C3,IL18,IL1B,NLRP3
## Interleukin 18 Signaling                                                                                                                                                                                                                                                                                                                           IL13,IL18,IL4
## Leishmania Infection                                                                                                                                                                                                                                                                                            C3,CD163,CDC42,CREB1,IL18,IL1B,MAPK8,NLRP3,WNT5A
## Tnfs Bind Their Physiological Receptors                                                                                                                                                                                                                                                                                              CD70,FASLG,TNFSF11,TNFSF13B
## Diseases Of Immune System                                                                                                                                                                                                                                                                                                                 HMGB1,LY96,NFKBIA,TLR3
## Immunoregulatory Interactions Between A Lymphoid And A Non Lymphoid Cell                                                                                                                                                                                                                                                   C3,CD34,CD40,FCGR2B,HLA-B,TREM1,TREM2
## Costimulation By The Cd28 Family                                                                                                                                                                                                                                                                                                 CD274,CD86,CDC42,CTLA4,HLA-DQB1
## Nod1 2 Signaling Pathway                                                                                                                                                                                                                                                                                                                  BIRC3,IRAK1,NOD2,RIPK2
## Interleukin 2 Family Signaling                                                                                                                                                                                                                                                                                                               CSF2,IL15,IL2,STAT3
## P75ntr Signals Via Nf Kb                                                                                                                                                                                                                                                                                                                      IRAK1,NFKBIA,RIPK2
## Heme Signaling                                                                                                                                                                                                                                                                                                                            APOA1,CREB1,LY96,SIRT1
## Regulation Of Tlr By Endogenous Ligand                                                                                                                                                                                                                                                                                                            HMGB1,LBP,LY96
## Complement Cascade                                                                                                                                                                                                                                                                                                                        C3,C5AR1,CD55,CD59,CRP
## Activated Tak1 Mediates P38 Mapk Activation                                                                                                                                                                                                                                                                                                     IRAK1,NOD2,RIPK2
## Post Translational Protein Modification                                                                                                                                                                                                                                     APOA1,BIRC3,C3,CD55,CD59,CDK1,CST3,CTSC,DNMT1,DNMT3A,GP2,MYC,NFKBIA,NLRP3,NOD2,RIPK2
## Pyroptosis                                                                                                                                                                                                                                                                                                                                       HMGB1,IL18,IL1B
## Deubiquitination                                                                                                                                                                                                                                                                                                          BIRC3,CDK1,MYC,NFKBIA,NLRP3,NOD2,RIPK2
## Ovarian Tumor Domain Proteases                                                                                                                                                                                                                                                                                                                   CDK1,NOD2,RIPK2
## Interleukin 1 Processing                                                                                                                                                                                                                                                                                                                               IL18,IL1B
## P75 Ntr Receptor Mediated Signalling                                                                                                                                                                                                                                                                                                    IRAK1,MAPK8,NFKBIA,RIPK2
## Binding And Uptake Of Ligands By Scavenger Receptors                                                                                                                                                                                                                                                                                        APOA1,CD163,HP,MARCO
## Runx1 And Foxp3 Control The Development Of Regulatory T Lymphocytes Tregs                                                                                                                                                                                                                                                                              CTLA4,IL2
## Apoptosis                                                                                                                                                                                                                                                                                                                           FASLG,HMGB1,LY96,MAPK8,STAT3
## Dap12 Interactions                                                                                                                                                                                                                                                                                                                             HLA-B,TREM1,TREM2
## Infectious Disease                                                                                                                                                                                                                                                                                    C3,CCR5,CD163,CDC42,CREB1,IL18,IL1B,MAPK8,NLRP3,TLR9,WNT5A
## Cd28 Dependent Vav1 Pathway                                                                                                                                                                                                                                                                                                                           CD86,CDC42
## Cell Surface Interactions At The Vascular Wall                                                                                                                                                                                                                                                                                        CAV1,CD2,CEACAM1,MIF,TREM1
## Killing Mechanisms                                                                                                                                                                                                                                                                                                                                   MAPK8,WNT5A
## Nf Kb Is Activated And Signals Survival                                                                                                                                                                                                                                                                                                             IRAK1,NFKBIA
## P75ntr Recruits Signalling Complexes                                                                                                                                                                                                                                                                                                                 IRAK1,RIPK2
## Traf6 Mediated Irf7 Activation In Tlr7 8 Or 9 Signaling                                                                                                                                                                                                                                                                                               IRAK1,TLR9
## Trafficking And Processing Of Endosomal Tlr                                                                                                                                                                                                                                                                                                            TLR3,TLR9
## Hemostasis                                                                                                                                                                                                                                                                                                  APOA1,CAV1,CD2,CD63,CDC42,CEACAM1,MIF,SERPINE1,TREM1
## Interleukin 15 Signaling                                                                                                                                                                                                                                                                                                                              IL15,STAT3
## Interleukin 12 Family Signaling                                                                                                                                                                                                                                                                                                                  CDC42,MIF,STAT3
## Caspase Activation Via Death Receptors In The Presence Of Ligand                                                                                                                                                                                                                                                                                      FASLG,LY96
## Sumoylation Of Dna Methylation Proteins                                                                                                                                                                                                                                                                                                             DNMT1,DNMT3A
## Rip Mediated Nfkb Activation Via Zbp1                                                                                                                                                                                                                                                                                                                NFKBIA,TLR3
## Foxo Mediated Transcription                                                                                                                                                                                                                                                                                                                     CAV1,FASLG,SIRT1
## Irak4 Deficiency Tlr2 4                                                                                                                                                                                                                                                                                                                               HMGB1,LY96
## Scavenging By Class A Receptors                                                                                                                                                                                                                                                                                                                      APOA1,MARCO
## Ticam1 Rip1 Mediated Ikk Complex Recruitment                                                                                                                                                                                                                                                                                                          BIRC3,TLR3
## Scavenging Of Heme From Plasma                                                                                                                                                                                                                                                                                                                    APOA1,CD163,HP
## Circadian Clock                                                                                                                                                                                                                                                                                                                             CREB1,SERPINE1,SIRT1
## Ctla4 Inhibitory Signaling                                                                                                                                                                                                                                                                                                                            CD86,CTLA4
## Inflammasomes                                                                                                                                                                                                                                                                                                                                         AIM2,NLRP3
## Zbp1 Dai Mediated Induction Of Type I Ifns                                                                                                                                                                                                                                                                                                           NFKBIA,TLR3
## Ikk Complex Recruitment Mediated By Rip1                                                                                                                                                                                                                                                                                                              BIRC3,LY96
## Ddx58 Ifih1 Mediated Induction Of Interferon Alpha Beta                                                                                                                                                                                                                                                                                        ATG5,HMGB1,NFKBIA
## Traf6 Mediated Nf Kb Activation                                                                                                                                                                                                                                                                                                                     HMGB1,NFKBIA
## Caspase Activation Via Extrinsic Apoptotic Signalling Pathway                                                                                                                                                                                                                                                                                         FASLG,LY96
## Atf4 Activates Genes In Response To Endoplasmic Reticulum Stress                                                                                                                                                                                                                                                                                      CCL2,CXCL8
## G0 And Early G1                                                                                                                                                                                                                                                                                                                                         CDK1,MYC
## Interleukin Receptor Shc Signaling                                                                                                                                                                                                                                                                                                                      CSF2,IL2
## Transcriptional Regulation Of Granulopoiesis                                                                                                                                                                                                                                                                                                     CREB1,MYC,STAT3
## Pd 1 Signaling                                                                                                                                                                                                                                                                                                                                    CD274,HLA-DQB1
## Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                                                                                                                                    BIRC3,FASLG
## Interferon Gamma Signaling                                                                                                                                                                                                                                                                                                                   HLA-B,HLA-DQB1,IRF4
## Mapk6 Mapk4 Signaling                                                                                                                                                                                                                                                                                                                             CDC42,CDK1,MYC
## Tnfr1 Induced Nfkappab Signaling Pathway                                                                                                                                                                                                                                                                                                               BIRC3,TNF
## Cellular Responses To External Stimuli                                                                                                                                                                                                                                                                            APOA1,CREB1,CXCL8,LY96,MAPK8,NLRP3,SIRT1,STAT3
## Mapk Targets Nuclear Events Mediated By Map Kinases                                                                                                                                                                                                                                                                                                  CREB1,MAPK8
## Nicotinate Metabolism                                                                                                                                                                                                                                                                                                                                 CD38,PTGS2
## Perk Regulates Gene Expression                                                                                                                                                                                                                                                                                                                        CCL2,CXCL8
## Smad2 Smad3 Smad4 Heterotrimer Regulates Transcription                                                                                                                                                                                                                                                                                              MYC,SERPINE1
## Clec7a Dectin 1 Signaling                                                                                                                                                                                                                                                                                                                      CCL22,IL1B,NFKBIA
## Vesicle Mediated Transport                                                                                                                                                                                                                                                                                             APOA1,CD163,CD55,CD59,CTSC,HP,MARCO,WNT5A
## Cargo Concentration In The Er                                                                                                                                                                                                                                                                                                                          CD59,CTSC
## Cd28 Co Stimulation                                                                                                                                                                                                                                                                                                                                   CD86,CDC42
## Diseases Of Programmed Cell Death                                                                                                                                                                                                                                                                                                             DNMT1,DNMT3A,FASLG
## Regulation Of Tnfr1 Signaling                                                                                                                                                                                                                                                                                                                          BIRC3,TNF
## Antigen Processing Cross Presentation                                                                                                                                                                                                                                                                                                           HLA-B,HMGB1,LY96
## Mapk Family Signaling Cascades                                                                                                                                                                                                                                                                                                           CDC42,CDK1,CSF2,IL2,MYC
## Gene And Protein Expression By Jak Stat Signaling After Interleukin 12 Stimulation                                                                                                                                                                                                                                                                     CDC42,MIF
## Regulation Of Insulin Like Growth Factor Igf Transport And Uptake By Insulin Like Growth Factor Binding Proteins Igfbps                                                                                                                                                                                                                            APOA1,C3,CST3
## Tcr Signaling                                                                                                                                                                                                                                                                                                                              HLA-DQB1,NFKBIA,RIPK2
## Tnf Signaling                                                                                                                                                                                                                                                                                                                                          BIRC3,TNF
## Transcriptional Activity Of Smad2 Smad3 Smad4 Heterotrimer                                                                                                                                                                                                                                                                                          MYC,SERPINE1
## Interleukin 12 Signaling                                                                                                                                                                                                                                                                                                                               CDC42,MIF
## Interleukin 3 Interleukin 5 And Gm Csf Signaling                                                                                                                                                                                                                                                                                                        CSF2,IL2
## Response To Elevated Platelet Cytosolic Ca2                                                                                                                                                                                                                                                                                                  APOA1,CD63,SERPINE1
## Netrin 1 Signaling                                                                                                                                                                                                                                                                                                                                   CDC42,MAPK8
## C Type Lectin Receptors Clrs                                                                                                                                                                                                                                                                                                                   CCL22,IL1B,NFKBIA
## Rna Polymerase Ii Transcription                                                                                                                                                                                                                                                                    CAV1,CDK1,CREB1,CSF2,CTLA4,FASLG,IL2,IRAK1,MYC,SERPINE1,SIRT1
## Alternative Complement Activation                                                                                                                                                                                                                                                                                                                             C3
## Fasl Cd95l Signaling                                                                                                                                                                                                                                                                                                                                       FASLG
## G2 M Dna Replication Checkpoint                                                                                                                                                                                                                                                                                                                             CDK1
## Galactose Catabolism                                                                                                                                                                                                                                                                                                                                        GALE
## Hdl Clearance                                                                                                                                                                                                                                                                                                                                              APOA1
## Intrinsic Pathway For Apoptosis                                                                                                                                                                                                                                                                                                                      MAPK8,STAT3
## Mecp2 Regulates Transcription Factors                                                                                                                                                                                                                                                                                                                      CREB1
## Nostrin Mediated Enos Trafficking                                                                                                                                                                                                                                                                                                                           CAV1
## Platelet Activation Signaling And Aggregation                                                                                                                                                                                                                                                                                          APOA1,CD63,CDC42,SERPINE1
## Rhoj Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Tfap2 Ap 2 Family Regulates Transcription Of Cell Cycle Factors                                                                                                                                                                                                                                                                                              MYC
## Epigenetic Regulation Of Gene Expression                                                                                                                                                                                                                                                                                                      DNMT1,DNMT3A,SIRT1
## Er To Golgi Anterograde Transport                                                                                                                                                                                                                                                                                                                 CD55,CD59,CTSC
## Rhoq Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Biosynthesis Of Epa Derived Spms                                                                                                                                                                                                                                                                                                                           PTGS2
## Clec7a Inflammasome Pathway                                                                                                                                                                                                                                                                                                                                 IL1B
## Fibronectin Matrix Formation                                                                                                                                                                                                                                                                                                                             CEACAM1
## Phosphorylation Of Emi1                                                                                                                                                                                                                                                                                                                                     CDK1
## Scavenging By Class B Receptors                                                                                                                                                                                                                                                                                                                            APOA1
## Synthesis Of 15 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                                                                                                                                          PTGS2
## Tlr3 Mediated Ticam1 Dependent Programmed Cell Death                                                                                                                                                                                                                                                                                                        TLR3
## Tnfr1 Mediated Ceramide Production                                                                                                                                                                                                                                                                                                                           TNF
## Ca2 Pathway                                                                                                                                                                                                                                                                                                                                            MYC,WNT5A
## Cytosolic Sensors Of Pathogen Associated Dna                                                                                                                                                                                                                                                                                                         NFKBIA,TLR3
## Transcriptional Regulation By Mecp2                                                                                                                                                                                                                                                                                                                  CREB1,IRAK1
## Dna Methylation                                                                                                                                                                                                                                                                                                                                     DNMT1,DNMT3A
## Activation Of Nima Kinases Nek9 Nek6 Nek7                                                                                                                                                                                                                                                                                                                   CDK1
## Creb Phosphorylation                                                                                                                                                                                                                                                                                                                                       CREB1
## Ikba Variant Leads To Eda Id                                                                                                                                                                                                                                                                                                                              NFKBIA
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Myeloid Cells                                                                                                                                                                                                                                                                         CSF2
## Copii Mediated Vesicle Transport                                                                                                                                                                                                                                                                                                                       CD59,CTSC
## Activation Of C3 And C5                                                                                                                                                                                                                                                                                                                                       C3
## Binding Of Tcf Lef Ctnnb1 To Target Gene Promoters                                                                                                                                                                                                                                                                                                           MYC
## Creb1 Phosphorylation Through The Activation Of Camkii Camkk Camkiv Cascasde                                                                                                                                                                                                                                                                               CREB1
## Hdl Assembly                                                                                                                                                                                                                                                                                                                                               APOA1
## Inactivation Of Cdc42 And Rac1                                                                                                                                                                                                                                                                                                                             CDC42
## Mecp2 Regulates Transcription Of Neuronal Ligands                                                                                                                                                                                                                                                                                                          CREB1
## Runx3 Regulates Wnt Signaling                                                                                                                                                                                                                                                                                                                                MYC
## Interferon Alpha Beta Signaling                                                                                                                                                                                                                                                                                                                       HLA-B,IRF4
## Prc2 Methylates Histones And Dna                                                                                                                                                                                                                                                                                                                    DNMT1,DNMT3A
## Signaling By Tgf Beta Receptor Complex                                                                                                                                                                                                                                                                                                              MYC,SERPINE1
## Bh3 Only Proteins Associate With And Inactivate Anti Apoptotic Bcl 2 Members                                                                                                                                                                                                                                                                               STAT3
## Cd163 Mediating An Anti Inflammatory Response                                                                                                                                                                                                                                                                                                              CD163
## E2f Enabled Inhibition Of Pre Replication Complex Formation                                                                                                                                                                                                                                                                                                 CDK1
## Extra Nuclear Estrogen Signaling                                                                                                                                                                                                                                                                                                                      CAV1,CREB1
## Interleukin 23 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Interleukin 9 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Rhog Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Trif Mediated Programmed Cell Death                                                                                                                                                                                                                                                                                                                         LY96
## Sumoylation                                                                                                                                                                                                                                                                                                                                  DNMT1,DNMT3A,NFKBIA
## Transport To The Golgi And Subsequent Modification                                                                                                                                                                                                                                                                                                CD55,CD59,CTSC
## Metabolism Of Vitamins And Cofactors                                                                                                                                                                                                                                                                                                            APOA1,CD38,PTGS2
## Activation Of The Ap 1 Family Of Transcription Factors                                                                                                                                                                                                                                                                                                     MAPK8
## Akt Phosphorylates Targets In The Nucleus                                                                                                                                                                                                                                                                                                                  CREB1
## Camk Iv Mediated Phosphorylation Of Creb                                                                                                                                                                                                                                                                                                                   CREB1
## Chylomicron Assembly                                                                                                                                                                                                                                                                                                                                       APOA1
## Chylomicron Remodeling                                                                                                                                                                                                                                                                                                                                     APOA1
## Hdl Remodeling                                                                                                                                                                                                                                                                                                                                             APOA1
## Interleukin 21 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Mapk3 Erk1 Activation                                                                                                                                                                                                                                                                                                                                       CDK1
## Mastl Facilitates Mitotic Progression                                                                                                                                                                                                                                                                                                                       CDK1
## Regulation Of Foxo Transcriptional Activity By Acetylation                                                                                                                                                                                                                                                                                                 SIRT1
## Initial Triggering Of Complement                                                                                                                                                                                                                                                                                                                          C3,CRP
## Cellular Senescence                                                                                                                                                                                                                                                                                                                            CXCL8,MAPK8,STAT3
## Condensation Of Prometaphase Chromosomes                                                                                                                                                                                                                                                                                                                    CDK1
## Dermatan Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                UST
## Dscam Interactions                                                                                                                                                                                                                                                                                                                                         MAPK8
## Endosomal Vacuolar Pathway                                                                                                                                                                                                                                                                                                                                 HLA-B
## Enos Activation                                                                                                                                                                                                                                                                                                                                             CAV1
## Interleukin 27 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Interleukin 6 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Receptor Mediated Mitophagy                                                                                                                                                                                                                                                                                                                                 ATG5
## Regulation By C Flip                                                                                                                                                                                                                                                                                                                                       FASLG
## Rho Gtpases Activate Ktn1                                                                                                                                                                                                                                                                                                                                  CDC42
## Signaling By Leptin                                                                                                                                                                                                                                                                                                                                        STAT3
## Sumoylation Of Immune Response Proteins                                                                                                                                                                                                                                                                                                                   NFKBIA
## Ticam1 Traf6 Dependent Induction Of Tak1 Complex                                                                                                                                                                                                                                                                                                            TLR3
## Interferon Signaling                                                                                                                                                                                                                                                                                                                         HLA-B,HLA-DQB1,IRF4
## Creb1 Phosphorylation Through The Activation Of Adenylate Cyclase                                                                                                                                                                                                                                                                                          CREB1
## Interleukin 2 Signaling                                                                                                                                                                                                                                                                                                                                      IL2
## Interleukin 35 Signalling                                                                                                                                                                                                                                                                                                                                  STAT3
## Notch2 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                        CREB1
## Rac2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Signaling By Pdgfra Transmembrane Juxtamembrane And Kinase Domain Mutants                                                                                                                                                                                                                                                                                  STAT3
## Signaling By Receptor Tyrosine Kinases                                                                                                                                                                                                                                                                                               CAV1,CDC42,CREB1,STAT3,TLR9
## Tandem Pore Domain Potassium Channels                                                                                                                                                                                                                                                                                                                      KCNK1
## Ticam1 Dependent Activation Of Irf3 Irf7                                                                                                                                                                                                                                                                                                                    TLR3
## Advanced Glycosylation Endproduct Receptor Signaling                                                                                                                                                                                                                                                                                                       HMGB1
## Apoptosis Induced Dna Fragmentation                                                                                                                                                                                                                                                                                                                        HMGB1
## Chk1 Chk2 Cds1 Mediated Inactivation Of Cyclin B Cdk1 Complex                                                                                                                                                                                                                                                                                               CDK1
## Dissolution Of Fibrin Clot                                                                                                                                                                                                                                                                                                                              SERPINE1
## Pou5f1 Oct4 Sox2 Nanog Activate Genes Related To Proliferation                                                                                                                                                                                                                                                                                             STAT3
## Synthesis Secretion And Inactivation Of Glucose Dependent Insulinotropic Polypeptide Gip                                                                                                                                                                                                                                                                    DPP4
## Tnfr1 Induced Proapoptotic Signaling                                                                                                                                                                                                                                                                                                                         TNF
## Wnt5a Dependent Internalization Of Fzd2 Fzd5 And Ror2                                                                                                                                                                                                                                                                                                      WNT5A
## Unfolded Protein Response Upr                                                                                                                                                                                                                                                                                                                         CCL2,CXCL8
## Class B 2 Secretin Family Receptors                                                                                                                                                                                                                                                                                                                   CD55,WNT5A
## Rac3 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Dcc Mediated Attractive Signaling                                                                                                                                                                                                                                                                                                                          CDC42
## Early Phase Of Hiv Life Cycle                                                                                                                                                                                                                                                                                                                               CCR5
## Golgi Cisternae Pericentriolar Stack Reorganization                                                                                                                                                                                                                                                                                                         CDK1
## Irak1 Recruits Ikk Complex                                                                                                                                                                                                                                                                                                                                 IRAK1
## Repression Of Wnt Target Genes                                                                                                                                                                                                                                                                                                                               MYC
## Antimicrobial Peptides                                                                                                                                                                                                                                                                                                                                BPI,DEFB4A
## Esr Mediated Signaling                                                                                                                                                                                                                                                                                                                            CAV1,CREB1,MYC
## Ub Specific Processing Proteases                                                                                                                                                                                                                                                                                                                BIRC3,MYC,NFKBIA
## Depolymerisation Of The Nuclear Lamina                                                                                                                                                                                                                                                                                                                      CDK1
## Metabolism Of Nitric Oxide Nos3 Activation And Regulation                                                                                                                                                                                                                                                                                                   CAV1
## Negative Regulation Of Tcf Dependent Signaling By Wnt Ligand Antagonists                                                                                                                                                                                                                                                                                   WNT5A
## Synthesis Of Prostaglandins Pg And Thromboxanes Tx                                                                                                                                                                                                                                                                                                         PTGS2
## Wnt5a Dependent Internalization Of Fzd4                                                                                                                                                                                                                                                                                                                    WNT5A
## Copi Mediated Anterograde Transport                                                                                                                                                                                                                                                                                                                    CD55,CD59
## Foxo Mediated Transcription Of Cell Death Genes                                                                                                                                                                                                                                                                                                            FASLG
## Nrif Signals Cell Death From The Nucleus                                                                                                                                                                                                                                                                                                                   MAPK8
## Signaling By Tgfb Family Members                                                                                                                                                                                                                                                                                                                    MYC,SERPINE1
## The Nlrp3 Inflammasome                                                                                                                                                                                                                                                                                                                                     NLRP3
## Traf6 Mediated Induction Of Tak1 Complex Within Tlr4 Complex                                                                                                                                                                                                                                                                                                LY96
## Transcription Of E2f Targets Under Negative Control By P107 Rbl1 And P130 Rbl2 In Complex With Hdac1                                                                                                                                                                                                                                                        CDK1
## Pi3k Akt Signaling In Cancer                                                                                                                                                                                                                                                                                                                          CD86,CREB1
## Tcf Dependent Signaling In Response To Wnt                                                                                                                                                                                                                                                                                                        CAV1,MYC,WNT5A
## Activation Of Irf3 Irf7 Mediated By Tbk1 Ikk Epsilon                                                                                                                                                                                                                                                                                                        LY96
## Foxo Mediated Transcription Of Cell Cycle Genes                                                                                                                                                                                                                                                                                                             CAV1
## Signaling By Vegf                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Transcriptional Regulation By Runx1                                                                                                                                                                                                                                                                                                               CSF2,CTLA4,IL2
## Diseases Of Signal Transduction By Growth Factor Receptors And Second Messengers                                                                                                                                                                                                                                                            CD86,CREB1,MYC,STAT3
## Negative Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                                                                                                                                    DNMT1,SIRT1
## Abc Transporters In Lipid Homeostasis                                                                                                                                                                                                                                                                                                                      APOA1
## Amyloid Fiber Formation                                                                                                                                                                                                                                                                                                                               APOA1,CST3
## Diseases Associated With Glycosylation Precursor Biosynthesis                                                                                                                                                                                                                                                                                               GALE
## Gastrin Creb Signalling Pathway Via Pkc And Mapk                                                                                                                                                                                                                                                                                                           CREB1
## Mecp2 Regulates Neuronal Receptors And Channels                                                                                                                                                                                                                                                                                                            CREB1
## Signaling By Cytosolic Fgfr1 Fusion Mutants                                                                                                                                                                                                                                                                                                                STAT3
## Tp53 Regulates Transcription Of Genes Involved In G2 Cell Cycle Arrest                                                                                                                                                                                                                                                                                      CDK1
## Senescence Associated Secretory Phenotype Sasp                                                                                                                                                                                                                                                                                                       CXCL8,STAT3
## Biosynthesis Of Specialized Proresolving Mediators Spms                                                                                                                                                                                                                                                                                                    PTGS2
## Initiation Of Nuclear Envelope Ne Reformation                                                                                                                                                                                                                                                                                                               CDK1
## Negative Regulation Of The Pi3k Akt Network                                                                                                                                                                                                                                                                                                           CD86,IRAK1
## Nicotinamide Salvaging                                                                                                                                                                                                                                                                                                                                     PTGS2
## Other Semaphorin Interactions                                                                                                                                                                                                                                                                                                                              TREM2
## Phase 4 Resting Membrane Potential                                                                                                                                                                                                                                                                                                                         KCNK1
## Plasma Lipoprotein Assembly                                                                                                                                                                                                                                                                                                                                APOA1
## Transcription Of E2f Targets Under Negative Control By Dream Complex                                                                                                                                                                                                                                                                                         MYC
## G Beta Gamma Signalling Through Cdc42                                                                                                                                                                                                                                                                                                                      CDC42
## Phosphorylation Of The Apc C                                                                                                                                                                                                                                                                                                                                CDK1
## Pka Mediated Phosphorylation Of Creb                                                                                                                                                                                                                                                                                                                       CREB1
## Signaling By Kit In Disease                                                                                                                                                                                                                                                                                                                                STAT3
## Signaling By Pdgfr In Disease                                                                                                                                                                                                                                                                                                                              STAT3
## Synthesis Secretion And Inactivation Of Glucagon Like Peptide 1 Glp 1                                                                                                                                                                                                                                                                                       DPP4
## Branched Chain Amino Acid Catabolism                                                                                                                                                                                                                                                                                                                         IVD
## Interleukin 37 Signaling                                                                                                                                                                                                                                                                                                                                   STAT3
## Rho Gtpases Activate Paks                                                                                                                                                                                                                                                                                                                                  CDC42
## Cd28 Dependent Pi3k Akt Signaling                                                                                                                                                                                                                                                                                                                           CD86
## Deregulated Cdk5 Triggers Multiple Neurodegenerative Pathways In Alzheimer S Disease Models                                                                                                                                                                                                                                                                FASLG
## E2f Mediated Regulation Of Dna Replication                                                                                                                                                                                                                                                                                                                  CDK1
## Pink1 Prkn Mediated Mitophagy                                                                                                                                                                                                                                                                                                                               ATG5
## Metabolism Of Water Soluble Vitamins And Cofactors                                                                                                                                                                                                                                                                                                    CD38,PTGS2
## Cytoprotection By Hmox1                                                                                                                                                                                                                                                                                                                              NLRP3,STAT3
## Incretin Synthesis Secretion And Inactivation                                                                                                                                                                                                                                                                                                               DPP4
## Mhc Class Ii Antigen Presentation                                                                                                                                                                                                                                                                                                                  CTSC,HLA-DQB1
## Raf Independent Mapk1 3 Activation                                                                                                                                                                                                                                                                                                                          CDK1
## Apc C Cdc20 Mediated Degradation Of Cyclin B                                                                                                                                                                                                                                                                                                                CDK1
## Estrogen Dependent Nuclear Events Downstream Of Esr Membrane Signaling                                                                                                                                                                                                                                                                                     CREB1
## Growth Hormone Receptor Signaling                                                                                                                                                                                                                                                                                                                          STAT3
## Interleukin 6 Family Signaling                                                                                                                                                                                                                                                                                                                             STAT3
## Triglyceride Catabolism                                                                                                                                                                                                                                                                                                                                     CAV1
## Antigen Presentation Folding Assembly And Peptide Loading Of Class I Mhc                                                                                                                                                                                                                                                                                   HLA-B
## Basigin Interactions                                                                                                                                                                                                                                                                                                                                        CAV1
## Cyclin A B1 B2 Associated Events During G2 M Transition                                                                                                                                                                                                                                                                                                     CDK1
## Inactivation Of Csf3 G Csf Signaling                                                                                                                                                                                                                                                                                                                       STAT3
## Signaling By Ntrks                                                                                                                                                                                                                                                                                                                                   CREB1,STAT3
## Constitutive Signaling By Akt1 E17k In Cancer                                                                                                                                                                                                                                                                                                              CREB1
## Interleukin 20 Family Signaling                                                                                                                                                                                                                                                                                                                            STAT3
## Wnt Ligand Biogenesis And Trafficking                                                                                                                                                                                                                                                                                                                      WNT5A
## Bmal1 Clock Npas2 Activates Circadian Gene Expression                                                                                                                                                                                                                                                                                                   SERPINE1
## Creb1 Phosphorylation Through Nmda Receptor Mediated Activation Of Ras Signaling                                                                                                                                                                                                                                                                           CREB1
## Vegfr2 Mediated Vascular Permeability                                                                                                                                                                                                                                                                                                                       CAV1
## Activation Of Bh3 Only Proteins                                                                                                                                                                                                                                                                                                                            MAPK8
## Beta Catenin Independent Wnt Signaling                                                                                                                                                                                                                                                                                                                 MYC,WNT5A
## Dap12 Signaling                                                                                                                                                                                                                                                                                                                                            TREM2
## Disassembly Of The Destruction Complex And Recruitment Of Axin To The Membrane                                                                                                                                                                                                                                                                              CAV1
## Downstream Signal Transduction                                                                                                                                                                                                                                                                                                                             STAT3
## Egfr Downregulation                                                                                                                                                                                                                                                                                                                                        CDC42
## Extracellular Matrix Organization                                                                                                                                                                                                                                                                                                          CEACAM1,MMP8,SERPINE1
## Fgfr1 Mutant Receptor Activation                                                                                                                                                                                                                                                                                                                           STAT3
## G1 S Specific Transcription                                                                                                                                                                                                                                                                                                                                 CDK1
## Mitophagy                                                                                                                                                                                                                                                                                                                                                   ATG5
## Mitotic G1 Phase And G1 S Transition                                                                                                                                                                                                                                                                                                                    CDK1,MYC
## Myogenesis                                                                                                                                                                                                                                                                                                                                                 CDC42
## Signaling By Csf3 G Csf                                                                                                                                                                                                                                                                                                                                    STAT3
## Signaling By Nuclear Receptors                                                                                                                                                                                                                                                                                                                    CAV1,CREB1,MYC
## Transcriptional Regulation Of Pluripotent Stem Cells                                                                                                                                                                                                                                                                                                       STAT3
## Activation Of Matrix Metalloproteinases                                                                                                                                                                                                                                                                                                                     MMP8
## Asparagine N Linked Glycosylation                                                                                                                                                                                                                                                                                                                 CD55,CD59,CTSC
## G Protein Beta Gamma Signalling                                                                                                                                                                                                                                                                                                                            CDC42
## Intracellular Signaling By Second Messengers                                                                                                                                                                                                                                                                                                    CD86,CREB1,IRAK1
## Negative Regulators Of Ddx58 Ifih1 Signaling                                                                                                                                                                                                                                                                                                                ATG5
## Plasma Lipoprotein Clearance                                                                                                                                                                                                                                                                                                                               APOA1
## Plasma Lipoprotein Remodeling                                                                                                                                                                                                                                                                                                                              APOA1
## Regulation Of Mecp2 Expression And Activity                                                                                                                                                                                                                                                                                                                CREB1
## Rho Gtpases Activate Iqgaps                                                                                                                                                                                                                                                                                                                                CDC42
## Rhou Gtpase Cycle                                                                                                                                                                                                                                                                                                                                          CDC42
## Rhov Gtpase Cycle                                                                                                                                                                                                                                                                                                                                          CDC42
## Signaling By Notch2                                                                                                                                                                                                                                                                                                                                        CREB1
## Ca Dependent Events                                                                                                                                                                                                                                                                                                                                        CREB1
## Cdc42 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                    CAV1,CDC42
## Cellular Response To Chemical Stress                                                                                                                                                                                                                                                                                                                 NLRP3,STAT3
## Gpvi Mediated Activation Cascade                                                                                                                                                                                                                                                                                                                           CDC42
## Interleukin 7 Signaling                                                                                                                                                                                                                                                                                                                                    STAT3
## Metalloprotease Dubs                                                                                                                                                                                                                                                                                                                                       NLRP3
## Nuclear Pore Complex Npc Disassembly                                                                                                                                                                                                                                                                                                                        CDK1
## Regulation Of Tp53 Expression And Degradation                                                                                                                                                                                                                                                                                                               CDK1
## Rho Gtpases Activate Wasps And Waves                                                                                                                                                                                                                                                                                                                       CDC42
## Rhoh Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Ros And Rns Production In Phagocytes                                                                                                                                                                                                                                                                                                                         MPO
## Association Of Tric Cct With Target Proteins During Biosynthesis                                                                                                                                                                                                                                                                                           STAT3
## Generation Of Second Messenger Molecules                                                                                                                                                                                                                                                                                                                HLA-DQB1
## Ngf Stimulated Transcription                                                                                                                                                                                                                                                                                                                               CREB1
## Signaling By Fgfr1 In Disease                                                                                                                                                                                                                                                                                                                              STAT3
## Signaling By Wnt                                                                                                                                                                                                                                                                                                                                  CAV1,MYC,WNT5A
## Transcriptional Regulation By The Ap 2 Tfap2 Family Of Transcription Factors                                                                                                                                                                                                                                                                                 MYC
## Triglyceride Metabolism                                                                                                                                                                                                                                                                                                                                     CAV1
## Beta Defensins                                                                                                                                                                                                                                                                                                                                            DEFB4A
## Dag And Ip3 Signaling                                                                                                                                                                                                                                                                                                                                      CREB1
## Ephb Mediated Forward Signaling                                                                                                                                                                                                                                                                                                                            CDC42
## Rhof Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rnd1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rnd2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Rnd3 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Signaling By Scf Kit                                                                                                                                                                                                                                                                                                                                       STAT3
## Developmental Biology                                                                                                                                                                                                                                                                                                      CDC42,CREB1,MAPK8,MYC,STAT3,TNF,TREM2
## Fc Epsilon Receptor Fceri Signaling                                                                                                                                                                                                                                                                                                                 MAPK8,NFKBIA
## Rac1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## Irs Mediated Signalling                                                                                                                                                                                                                                                                                                                                     TLR9
## Metabolism Of Fat Soluble Vitamins                                                                                                                                                                                                                                                                                                                         APOA1
## Notch1 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                          MYC
## Tp53 Regulates Transcription Of Cell Cycle Genes                                                                                                                                                                                                                                                                                                            CDK1
## Apoptotic Execution Phase                                                                                                                                                                                                                                                                                                                                  HMGB1
## Chondroitin Sulfate Dermatan Sulfate Metabolism                                                                                                                                                                                                                                                                                                              UST
## Class I Mhc Mediated Antigen Processing Presentation                                                                                                                                                                                                                                                                                            HLA-B,HMGB1,LY96
## Defensins                                                                                                                                                                                                                                                                                                                                                 DEFB4A
## Rhod Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Signaling By Egfr                                                                                                                                                                                                                                                                                                                                          CDC42
## G Protein Mediated Events                                                                                                                                                                                                                                                                                                                                  CREB1
## Insulin Receptor Signalling Cascade                                                                                                                                                                                                                                                                                                                         TLR9
## Nervous System Development                                                                                                                                                                                                                                                                                                               CDC42,CREB1,MAPK8,TREM2
## Nuclear Envelope Breakdown                                                                                                                                                                                                                                                                                                                                  CDK1
## Signaling By Ptk6                                                                                                                                                                                                                                                                                                                                          STAT3
## Signaling By Type 1 Insulin Like Growth Factor 1 Receptor Igf1r                                                                                                                                                                                                                                                                                             TLR9
## Transcriptional Activation Of Mitochondrial Biogenesis                                                                                                                                                                                                                                                                                                     CREB1
## G Alpha Q Signalling Events                                                                                                                                                                                                                                                                                                                            CREB1,MLN
## Signaling By Notch1 Pest Domain Mutants In Cancer                                                                                                                                                                                                                                                                                                            MYC
## Signaling By Pdgf                                                                                                                                                                                                                                                                                                                                          STAT3
## Anti Inflammatory Response Favouring Leishmania Parasite Infection                                                                                                                                                                                                                                                                                   CD163,CREB1
## Arachidonic Acid Metabolism                                                                                                                                                                                                                                                                                                                                PTGS2
## Dectin 1 Mediated Noncanonical Nf Kb Signaling                                                                                                                                                                                                                                                                                                             CCL22
## Nrage Signals Death Through Jnk                                                                                                                                                                                                                                                                                                                            MAPK8
## Nuclear Events Kinase And Transcription Factor Activation                                                                                                                                                                                                                                                                                                  CREB1
## Asymmetric Localization Of Pcp Proteins                                                                                                                                                                                                                                                                                                                    WNT5A
## Collagen Degradation                                                                                                                                                                                                                                                                                                                                        MMP8
## Ncam Signaling For Neurite Out Growth                                                                                                                                                                                                                                                                                                                      CREB1
## Semaphorin Interactions                                                                                                                                                                                                                                                                                                                                    TREM2
## Signaling By Fgfr In Disease                                                                                                                                                                                                                                                                                                                               STAT3
## Membrane Trafficking                                                                                                                                                                                                                                                                                                                        CD55,CD59,CTSC,WNT5A
## Sirt1 Negatively Regulates Rrna Expression                                                                                                                                                                                                                                                                                                                 SIRT1
## Aurka Activation By Tpx2                                                                                                                                                                                                                                                                                                                                    CDK1
## Creation Of C4 And C2 Activators                                                                                                                                                                                                                                                                                                                             CRP
## Plasma Lipoprotein Assembly Remodeling And Clearance                                                                                                                                                                                                                                                                                                       APOA1
## Rhob Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Condensation Of Prophase Chromosomes                                                                                                                                                                                                                                                                                                                        CDK1
## Rhoc Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Signaling By Notch                                                                                                                                                                                                                                                                                                                                     CREB1,MYC
## Signaling By Notch1                                                                                                                                                                                                                                                                                                                                          MYC
## Abc Transporter Disorders                                                                                                                                                                                                                                                                                                                                  APOA1
## Cell Death Signalling Via Nrage Nrif And Nade                                                                                                                                                                                                                                                                                                              MAPK8
## Constitutive Signaling By Aberrant Pi3k In Cancer                                                                                                                                                                                                                                                                                                           CD86
## Dna Double Strand Break Response                                                                                                                                                                                                                                                                                                                           MAPK8
## Ecm Proteoglycans                                                                                                                                                                                                                                                                                                                                       SERPINE1
## Nuclear Envelope Ne Reassembly                                                                                                                                                                                                                                                                                                                              CDK1
## Rmts Methylate Histone Arginines                                                                                                                                                                                                                                                                                                                          DNMT3A
## Signaling By Insulin Receptor                                                                                                                                                                                                                                                                                                                               TLR9
## Signaling By Met                                                                                                                                                                                                                                                                                                                                           STAT3
## The Role Of Gtse1 In G2 M Progression After G2 Checkpoint                                                                                                                                                                                                                                                                                                   CDK1
## Downstream Signaling Events Of B Cell Receptor Bcr                                                                                                                                                                                                                                                                                                        NFKBIA
## Potential Therapeutics For Sars                                                                                                                                                                                                                                                                                                                             TLR9
## Recruitment Of Mitotic Centrosome Proteins And Complexes                                                                                                                                                                                                                                                                                                    CDK1
## Regulation Of Hsf1 Mediated Heat Shock Response                                                                                                                                                                                                                                                                                                            SIRT1
## Selective Autophagy                                                                                                                                                                                                                                                                                                                                         ATG5
## Cyclin A Cdk2 Associated Events At S Phase Entry                                                                                                                                                                                                                                                                                                             MYC
## Degradation Of Beta Catenin By The Destruction Complex                                                                                                                                                                                                                                                                                                       MYC
## Transcriptional Regulation Of White Adipocyte Differentiation                                                                                                                                                                                                                                                                                                TNF
## Apc C Mediated Degradation Of Cell Cycle Proteins                                                                                                                                                                                                                                                                                                           CDK1
## Fceri Mediated Mapk Activation                                                                                                                                                                                                                                                                                                                             MAPK8
## Regulation Of Plk1 Activity At G2 M Transition                                                                                                                                                                                                                                                                                                              CDK1
## Eph Ephrin Signaling                                                                                                                                                                                                                                                                                                                                       CDC42
## Formation Of The Beta Catenin Tcf Transactivating Complex                                                                                                                                                                                                                                                                                                    MYC
## Opioid Signalling                                                                                                                                                                                                                                                                                                                                          CREB1
## Pcp Ce Pathway                                                                                                                                                                                                                                                                                                                                             WNT5A
## Peptide Hormone Metabolism                                                                                                                                                                                                                                                                                                                                  DPP4
## Activation Of Nmda Receptors And Postsynaptic Events                                                                                                                                                                                                                                                                                                       CREB1
## Anchoring Of The Basal Body To The Plasma Membrane                                                                                                                                                                                                                                                                                                          CDK1
## Fcgr3a Mediated Il10 Synthesis                                                                                                                                                                                                                                                                                                                             CREB1
## G2 M Dna Damage Checkpoint                                                                                                                                                                                                                                                                                                                                  CDK1
## Metabolism Of Carbohydrates                                                                                                                                                                                                                                                                                                                             GALE,UST
## Mitochondrial Biogenesis                                                                                                                                                                                                                                                                                                                                   CREB1
## Post Translational Modification Synthesis Of Gpi Anchored Proteins                                                                                                                                                                                                                                                                                           GP2
## Recruitment Of Numa To Mitotic Centrosomes                                                                                                                                                                                                                                                                                                                  CDK1
## Transcriptional Regulation By Runx3                                                                                                                                                                                                                                                                                                                          MYC
## Organelle Biogenesis And Maintenance                                                                                                                                                                                                                                                                                                                  CDK1,CREB1
## Protein Folding                                                                                                                                                                                                                                                                                                                                            STAT3
## Visual Phototransduction                                                                                                                                                                                                                                                                                                                                   APOA1
## Abc Family Proteins Mediated Transport                                                                                                                                                                                                                                                                                                                     APOA1
## Cellular Response To Heat Stress                                                                                                                                                                                                                                                                                                                           SIRT1
## Potassium Channels                                                                                                                                                                                                                                                                                                                                         KCNK1
## Cargo Recognition For Clathrin Mediated Endocytosis                                                                                                                                                                                                                                                                                                        WNT5A
## Parasite Infection                                                                                                                                                                                                                                                                                                                                         CDC42
## Regulation Of Lipid Metabolism By Pparalpha                                                                                                                                                                                                                                                                                                                APOA1
## Transcriptional Regulation By Runx2                                                                                                                                                                                                                                                                                                                         CDK1
## Glycosaminoglycan Metabolism                                                                                                                                                                                                                                                                                                                                 UST
## Cardiac Conduction                                                                                                                                                                                                                                                                                                                                         KCNK1
## Oxidative Stress Induced Senescence                                                                                                                                                                                                                                                                                                                        MAPK8
## Resolution Of Sister Chromatid Cohesion                                                                                                                                                                                                                                                                                                                     CDK1
## Adora2b Mediated Anti Inflammatory Cytokines Production                                                                                                                                                                                                                                                                                                    CREB1
## Fceri Mediated Nf Kb Activation                                                                                                                                                                                                                                                                                                                           NFKBIA
## Degradation Of The Extracellular Matrix                                                                                                                                                                                                                                                                                                                     MMP8
## Hcmv Early Events                                                                                                                                                                                                                                                                                                                                          CREB1
## Rho Gtpases Activate Formins                                                                                                                                                                                                                                                                                                                               CDC42
## Clathrin Mediated Endocytosis                                                                                                                                                                                                                                                                                                                              WNT5A
## Diseases Of Glycosylation                                                                                                                                                                                                                                                                                                                                   GALE
## Fcgamma Receptor Fcgr Dependent Phagocytosis                                                                                                                                                                                                                                                                                                               CDC42
## Mitotic Prophase                                                                                                                                                                                                                                                                                                                                            CDK1
## Sars Cov Infections                                                                                                                                                                                                                                                                                                                                         TLR9
## Autophagy                                                                                                                                                                                                                                                                                                                                                   ATG5
## Estrogen Dependent Gene Expression                                                                                                                                                                                                                                                                                                                           MYC
## Hiv Life Cycle                                                                                                                                                                                                                                                                                                                                              CCR5
## Rhoa Gtpase Cycle                                                                                                                                                                                                                                                                                                                                           CAV1
## Regulation Of Tp53 Activity                                                                                                                                                                                                                                                                                                                                 CDK1
## Hcmv Infection                                                                                                                                                                                                                                                                                                                                             CREB1
## Neuronal System                                                                                                                                                                                                                                                                                                                                      CREB1,KCNK1
## S Phase                                                                                                                                                                                                                                                                                                                                                      MYC
## Dna Double Strand Break Repair                                                                                                                                                                                                                                                                                                                             MAPK8
## Factors Involved In Megakaryocyte Development And Platelet Production                                                                                                                                                                                                                                                                                      CDC42
## G2 M Checkpoints                                                                                                                                                                                                                                                                                                                                            CDK1
## Signaling By The B Cell Receptor Bcr                                                                                                                                                                                                                                                                                                                      NFKBIA
## Disorders Of Transmembrane Transporters                                                                                                                                                                                                                                                                                                                    APOA1
## Fatty Acid Metabolism                                                                                                                                                                                                                                                                                                                                      PTGS2
## Rho Gtpase Cycle                                                                                                                                                                                                                                                                                                                                      CAV1,CDC42
## Muscle Contraction                                                                                                                                                                                                                                                                                                                                         KCNK1
## Mitotic G2 G2 M Phases                                                                                                                                                                                                                                                                                                                                      CDK1
## Cilium Assembly                                                                                                                                                                                                                                                                                                                                             CDK1
## Metabolism Of Lipids                                                                                                                                                                                                                                                                                                                            APOA1,CAV1,PTGS2
## Mitotic Prometaphase                                                                                                                                                                                                                                                                                                                                        CDK1
## Neurotransmitter Receptors And Postsynaptic Signal Transmission                                                                                                                                                                                                                                                                                            CREB1
## Signaling By Robo Receptors                                                                                                                                                                                                                                                                                                                                CDC42
## Hiv Infection                                                                                                                                                                                                                                                                                                                                               CCR5
## Mitotic Metaphase And Anaphase                                                                                                                                                                                                                                                                                                                              CDK1
## Diseases Of Metabolism                                                                                                                                                                                                                                                                                                                                      GALE
## Cell Cycle Mitotic                                                                                                                                                                                                                                                                                                                                      CDK1,MYC
## Transmission Across Chemical Synapses                                                                                                                                                                                                                                                                                                                      CREB1
## Chromatin Modifying Enzymes                                                                                                                                                                                                                                                                                                                               DNMT3A
## Cell Cycle Checkpoints                                                                                                                                                                                                                                                                                                                                      CDK1
## Rho Gtpase Effectors                                                                                                                                                                                                                                                                                                                                       CDC42
## Dna Repair                                                                                                                                                                                                                                                                                                                                                 MAPK8
## Cell Cycle                                                                                                                                                                                                                                                                                                                                              CDK1,MYC
## Transcriptional Regulation By Tp53                                                                                                                                                                                                                                                                                                                          CDK1
## Metabolism Of Amino Acids And Derivatives                                                                                                                                                                                                                                                                                                                    IVD
## Signaling By Rho Gtpases Miro Gtpases And Rhobtb3                                                                                                                                                                                                                                                                                                     CAV1,CDC42
## M Phase                                                                                                                                                                                                                                                                                                                                                     CDK1
## Sensory Perception                                                                                                                                                                                                                                                                                                                                         APOA1
## Transport Of Small Molecules                                                                                                                                                                                                                                                                                                                               APOA1
## 2 Ltr Circle Formation                                                                                                                                                                                                                                                                                                                                          
## A Tetrasaccharide Linker Sequence Is Required For Gag Synthesis                                                                                                                                                                                                                                                                                                 
## Abacavir Metabolism                                                                                                                                                                                                                                                                                                                                             
## Abacavir Transmembrane Transport                                                                                                                                                                                                                                                                                                                                
## Abacavir Transport And Metabolism                                                                                                                                                                                                                                                                                                                               
## Aberrant Regulation Of Mitotic Exit In Cancer Due To Rb1 Defects                                                                                                                                                                                                                                                                                                
## Aberrant Regulation Of Mitotic G1 S Transition In Cancer Due To Rb1 Defects                                                                                                                                                                                                                                                                                     
## Abortive Elongation Of Hiv 1 Transcript In The Absence Of Tat                                                                                                                                                                                                                                                                                                   
## Acetylcholine Binding And Downstream Events                                                                                                                                                                                                                                                                                                                     
## Acetylcholine Inhibits Contraction Of Outer Hair Cells                                                                                                                                                                                                                                                                                                          
## Acetylcholine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                    
## Acetylcholine Regulates Insulin Secretion                                                                                                                                                                                                                                                                                                                       
## Acrosome Reaction And Sperm Oocyte Membrane Binding                                                                                                                                                                                                                                                                                                             
## Activated Notch1 Transmits Signal To The Nucleus                                                                                                                                                                                                                                                                                                                
## Activated Ntrk2 Signals Through Cdk5                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk2 Signals Through Frs2 And Frs3                                                                                                                                                                                                                                                                                                                   
## Activated Ntrk2 Signals Through Fyn                                                                                                                                                                                                                                                                                                                             
## Activated Ntrk2 Signals Through Pi3k                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk2 Signals Through Ras                                                                                                                                                                                                                                                                                                                             
## Activated Ntrk3 Signals Through Pi3k                                                                                                                                                                                                                                                                                                                            
## Activated Ntrk3 Signals Through Ras                                                                                                                                                                                                                                                                                                                             
## Activated Pkn1 Stimulates Transcription Of Ar Androgen Receptor Regulated Genes Klk2 And Klk3                                                                                                                                                                                                                                                                   
## Activation Of Ampk Downstream Of Nmdars                                                                                                                                                                                                                                                                                                                         
## Activation Of Anterior Hox Genes In Hindbrain Development During Early Embryogenesis                                                                                                                                                                                                                                                                            
## Activation Of Atr In Response To Replication Stress                                                                                                                                                                                                                                                                                                             
## Activation Of Bad And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                             
## Activation Of Caspases Through Apoptosome Mediated Cleavage                                                                                                                                                                                                                                                                                                     
## Activation Of Gene Expression By Srebf Srebp                                                                                                                                                                                                                                                                                                                    
## Activation Of Kainate Receptors Upon Glutamate Binding                                                                                                                                                                                                                                                                                                          
## Activation Of Noxa And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                            
## Activation Of Ppargc1a Pgc 1alpha By Phosphorylation                                                                                                                                                                                                                                                                                                            
## Activation Of Puma And Translocation To Mitochondria                                                                                                                                                                                                                                                                                                            
## Activation Of Rac1                                                                                                                                                                                                                                                                                                                                              
## Activation Of Rac1 Downstream Of Nmdars                                                                                                                                                                                                                                                                                                                         
## Activation Of Ras In B Cells                                                                                                                                                                                                                                                                                                                                    
## Activation Of Smo                                                                                                                                                                                                                                                                                                                                               
## Activation Of The Mrna Upon Binding Of The Cap Binding Complex And Eifs And Subsequent Binding To 43s                                                                                                                                                                                                                                                           
## Activation Of The Phototransduction Cascade                                                                                                                                                                                                                                                                                                                     
## Activation Of The Pre Replicative Complex                                                                                                                                                                                                                                                                                                                       
## Activation Of The Tfap2 Ap 2 Family Of Transcription Factors                                                                                                                                                                                                                                                                                                    
## Activation Of Trka Receptors                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodeling Of Cl                                                                                                                                                                                                                                                                                                                                     
## Acyl Chain Remodeling Of Dag And Tag                                                                                                                                                                                                                                                                                                                            
## Acyl Chain Remodelling Of Pc                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pe                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pg                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Pi                                                                                                                                                                                                                                                                                                                                    
## Acyl Chain Remodelling Of Ps                                                                                                                                                                                                                                                                                                                                    
## Adenylate Cyclase Activating Pathway                                                                                                                                                                                                                                                                                                                            
## Adenylate Cyclase Inhibitory Pathway                                                                                                                                                                                                                                                                                                                            
## Adherens Junctions Interactions                                                                                                                                                                                                                                                                                                                                 
## Adp Signalling Through P2y Purinoceptor 1                                                                                                                                                                                                                                                                                                                       
## Adp Signalling Through P2y Purinoceptor 12                                                                                                                                                                                                                                                                                                                      
## Adrenaline Noradrenaline Inhibits Insulin Secretion                                                                                                                                                                                                                                                                                                             
## Adrenoceptors                                                                                                                                                                                                                                                                                                                                                   
## Aflatoxin Activation And Detoxification                                                                                                                                                                                                                                                                                                                         
## Aggrephagy                                                                                                                                                                                                                                                                                                                                                      
## Akt Phosphorylates Targets In The Cytosol                                                                                                                                                                                                                                                                                                                       
## Alpha Defensins                                                                                                                                                                                                                                                                                                                                                 
## Alpha Linolenic Omega3 And Linoleic Omega6 Acid Metabolism                                                                                                                                                                                                                                                                                                      
## Alpha Oxidation Of Phytanate                                                                                                                                                                                                                                                                                                                                    
## Alpha Protein Kinase 1 Signaling Pathway                                                                                                                                                                                                                                                                                                                        
## Amine Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                                  
## Amino Acid Conjugation                                                                                                                                                                                                                                                                                                                                          
## Amino Acid Transport Across The Plasma Membrane                                                                                                                                                                                                                                                                                                                 
## Amino Acids Regulate Mtorc1                                                                                                                                                                                                                                                                                                                                     
## Ampk Inhibits Chrebp Transcriptional Activation Activity                                                                                                                                                                                                                                                                                                        
## Anchoring Fibril Formation                                                                                                                                                                                                                                                                                                                                      
## Androgen Biosynthesis                                                                                                                                                                                                                                                                                                                                           
## Antigen Activates B Cell Receptor Bcr Leading To Generation Of Second Messengers                                                                                                                                                                                                                                                                                
## Antigen Processing Ubiquitination Proteasome Degradation                                                                                                                                                                                                                                                                                                        
## Antiviral Mechanism By Ifn Stimulated Genes                                                                                                                                                                                                                                                                                                                     
## Apc C Cdh1 Mediated Degradation Of Cdc20 And Other Apc C Cdh1 Targeted Proteins In Late Mitosis Early G1                                                                                                                                                                                                                                                        
## Apc Cdc20 Mediated Degradation Of Nek2a                                                                                                                                                                                                                                                                                                                         
## Apex1 Independent Resolution Of Ap Sites Via The Single Nucleotide Replacement Pathway                                                                                                                                                                                                                                                                          
## Apobec3g Mediated Resistance To Hiv 1 Infection                                                                                                                                                                                                                                                                                                                 
## Apoptotic Cleavage Of Cell Adhesion Proteins                                                                                                                                                                                                                                                                                                                    
## Apoptotic Cleavage Of Cellular Proteins                                                                                                                                                                                                                                                                                                                         
## Apoptotic Factor Mediated Response                                                                                                                                                                                                                                                                                                                              
## Aquaporin Mediated Transport                                                                                                                                                                                                                                                                                                                                    
## Arachidonate Production From Dag                                                                                                                                                                                                                                                                                                                                
## Arms Mediated Activation                                                                                                                                                                                                                                                                                                                                        
## Aryl Hydrocarbon Receptor Signalling                                                                                                                                                                                                                                                                                                                            
## Aspartate And Asparagine Metabolism                                                                                                                                                                                                                                                                                                                             
## Assembly And Cell Surface Presentation Of Nmda Receptors                                                                                                                                                                                                                                                                                                        
## Assembly Of Active Lpl And Lipc Lipase Complexes                                                                                                                                                                                                                                                                                                                
## Assembly Of Collagen Fibrils And Other Multimeric Structures                                                                                                                                                                                                                                                                                                    
## Assembly Of The Hiv Virion                                                                                                                                                                                                                                                                                                                                      
## Assembly Of The Orc Complex At The Origin Of Replication                                                                                                                                                                                                                                                                                                        
## Assembly Of The Pre Replicative Complex                                                                                                                                                                                                                                                                                                                         
## Atf6 Atf6 Alpha Activates Chaperone Genes                                                                                                                                                                                                                                                                                                                       
## Atf6 Atf6 Alpha Activates Chaperones                                                                                                                                                                                                                                                                                                                            
## Attachment And Entry                                                                                                                                                                                                                                                                                                                                            
## Attachment Of Gpi Anchor To Upar                                                                                                                                                                                                                                                                                                                                
## Attenuation Phase                                                                                                                                                                                                                                                                                                                                               
## Auf1 Hnrnp D0 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                                       
## B Wich Complex Positively Regulates Rrna Expression                                                                                                                                                                                                                                                                                                             
## Base Excision Repair                                                                                                                                                                                                                                                                                                                                            
## Base Excision Repair Ap Site Formation                                                                                                                                                                                                                                                                                                                          
## Bbsome Mediated Cargo Targeting To Cilium                                                                                                                                                                                                                                                                                                                       
## Beta Catenin Phosphorylation Cascade                                                                                                                                                                                                                                                                                                                            
## Beta Oxidation Of Butanoyl Coa To Acetyl Coa                                                                                                                                                                                                                                                                                                                    
## Beta Oxidation Of Decanoyl Coa To Octanoyl Coa Coa                                                                                                                                                                                                                                                                                                              
## Beta Oxidation Of Hexanoyl Coa To Butanoyl Coa                                                                                                                                                                                                                                                                                                                  
## Beta Oxidation Of Lauroyl Coa To Decanoyl Coa Coa                                                                                                                                                                                                                                                                                                               
## Beta Oxidation Of Octanoyl Coa To Hexanoyl Coa                                                                                                                                                                                                                                                                                                                  
## Beta Oxidation Of Pristanoyl Coa                                                                                                                                                                                                                                                                                                                                
## Beta Oxidation Of Very Long Chain Fatty Acids                                                                                                                                                                                                                                                                                                                   
## Bicarbonate Transporters                                                                                                                                                                                                                                                                                                                                        
## Bile Acid And Bile Salt Metabolism                                                                                                                                                                                                                                                                                                                              
## Biological Oxidations                                                                                                                                                                                                                                                                                                                                           
## Biosynthesis Of Maresin Like Spms                                                                                                                                                                                                                                                                                                                               
## Biosynthesis Of Maresins                                                                                                                                                                                                                                                                                                                                        
## Biosynthesis Of The N Glycan Precursor Dolichol Lipid Linked Oligosaccharide Llo And Transfer To A Nascent Protein                                                                                                                                                                                                                                              
## Biotin Transport And Metabolism                                                                                                                                                                                                                                                                                                                                 
## Blood Group Systems Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Budding And Maturation Of Hiv Virion                                                                                                                                                                                                                                                                                                                            
## Butyrate Response Factor 1 Brf1 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                     
## Butyrophilin Btn Family Interactions                                                                                                                                                                                                                                                                                                                            
## Ca2 Activated K Channels                                                                                                                                                                                                                                                                                                                                        
## Calcineurin Activates Nfat                                                                                                                                                                                                                                                                                                                                      
## Calcitonin Like Ligand Receptors                                                                                                                                                                                                                                                                                                                                
## Calnexin Calreticulin Cycle                                                                                                                                                                                                                                                                                                                                     
## Carboxyterminal Post Translational Modifications Of Tubulin                                                                                                                                                                                                                                                                                                     
## Cargo Trafficking To The Periciliary Membrane                                                                                                                                                                                                                                                                                                                   
## Carnitine Metabolism                                                                                                                                                                                                                                                                                                                                            
## Caspase Activation Via Dependence Receptors In The Absence Of Ligand                                                                                                                                                                                                                                                                                            
## Caspase Mediated Cleavage Of Cytoskeletal Proteins                                                                                                                                                                                                                                                                                                              
## Cation Coupled Chloride Cotransporters                                                                                                                                                                                                                                                                                                                          
## Cd209 Dc Sign Signaling                                                                                                                                                                                                                                                                                                                                         
## Cd22 Mediated Bcr Regulation                                                                                                                                                                                                                                                                                                                                    
## Cdc6 Association With The Orc Origin Complex                                                                                                                                                                                                                                                                                                                    
## Cell Cell Communication                                                                                                                                                                                                                                                                                                                                         
## Cell Cell Junction Organization                                                                                                                                                                                                                                                                                                                                 
## Cell Extracellular Matrix Interactions                                                                                                                                                                                                                                                                                                                          
## Cell Junction Organization                                                                                                                                                                                                                                                                                                                                      
## Cellular Hexose Transport                                                                                                                                                                                                                                                                                                                                       
## Cellular Response To Hypoxia                                                                                                                                                                                                                                                                                                                                    
## Cellular Response To Starvation                                                                                                                                                                                                                                                                                                                                 
## Cgmp Effects                                                                                                                                                                                                                                                                                                                                                    
## Chaperone Mediated Autophagy                                                                                                                                                                                                                                                                                                                                    
## Chl1 Interactions                                                                                                                                                                                                                                                                                                                                               
## Cholesterol Biosynthesis                                                                                                                                                                                                                                                                                                                                        
## Choline Catabolism                                                                                                                                                                                                                                                                                                                                              
## Chondroitin Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Chrebp Activates Metabolic Gene Expression                                                                                                                                                                                                                                                                                                                      
## Chromosome Maintenance                                                                                                                                                                                                                                                                                                                                          
## Chylomicron Clearance                                                                                                                                                                                                                                                                                                                                           
## Citric Acid Cycle Tca Cycle                                                                                                                                                                                                                                                                                                                                     
## Class C 3 Metabotropic Glutamate Pheromone Receptors                                                                                                                                                                                                                                                                                                            
## Class I Peroxisomal Membrane Protein Import                                                                                                                                                                                                                                                                                                                     
## Clec7a Dectin 1 Induces Nfat Activation                                                                                                                                                                                                                                                                                                                         
## Cobalamin Cbl Vitamin B12 Transport And Metabolism                                                                                                                                                                                                                                                                                                              
## Coenzyme A Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Cohesin Loading Onto Chromatin                                                                                                                                                                                                                                                                                                                                  
## Collagen Biosynthesis And Modifying Enzymes                                                                                                                                                                                                                                                                                                                     
## Collagen Chain Trimerization                                                                                                                                                                                                                                                                                                                                    
## Collagen Formation                                                                                                                                                                                                                                                                                                                                              
## Common Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                         
## Competing Endogenous Rnas Cernas Regulate Pten Translation                                                                                                                                                                                                                                                                                                      
## Complex I Biogenesis                                                                                                                                                                                                                                                                                                                                            
## Conjugation Of Benzoate With Glycine                                                                                                                                                                                                                                                                                                                            
## Constitutive Signaling By Egfrviii                                                                                                                                                                                                                                                                                                                              
## Constitutive Signaling By Ligand Responsive Egfr Cancer Variants                                                                                                                                                                                                                                                                                                
## Constitutive Signaling By Overexpressed Erbb2                                                                                                                                                                                                                                                                                                                   
## Conversion From Apc C Cdc20 To Apc C Cdh1 In Late Anaphase                                                                                                                                                                                                                                                                                                      
## Cooperation Of Pdcl Phlp1 And Tric Cct In G Protein Beta Folding                                                                                                                                                                                                                                                                                                
## Cooperation Of Prefoldin And Tric Cct In Actin And Tubulin Folding                                                                                                                                                                                                                                                                                              
## Copi Dependent Golgi To Er Retrograde Traffic                                                                                                                                                                                                                                                                                                                   
## Copi Independent Golgi To Er Retrograde Traffic                                                                                                                                                                                                                                                                                                                 
## Creatine Metabolism                                                                                                                                                                                                                                                                                                                                             
## Creb3 Factors Activate Genes                                                                                                                                                                                                                                                                                                                                    
## Cristae Formation                                                                                                                                                                                                                                                                                                                                               
## Crmps In Sema3a Signaling                                                                                                                                                                                                                                                                                                                                       
## Cross Presentation Of Particulate Exogenous Antigens Phagosomes                                                                                                                                                                                                                                                                                                 
## Cross Presentation Of Soluble Exogenous Antigens Endosomes                                                                                                                                                                                                                                                                                                      
## Crosslinking Of Collagen Fibrils                                                                                                                                                                                                                                                                                                                                
## Cs Ds Degradation                                                                                                                                                                                                                                                                                                                                               
## Cyclin D Associated Events In G1                                                                                                                                                                                                                                                                                                                                
## Cyp2e1 Reactions                                                                                                                                                                                                                                                                                                                                                
## Cytochrome C Mediated Apoptotic Response                                                                                                                                                                                                                                                                                                                        
## Cytochrome P450 Arranged By Substrate Type                                                                                                                                                                                                                                                                                                                      
## Cytosolic Iron Sulfur Cluster Assembly                                                                                                                                                                                                                                                                                                                          
## Cytosolic Sulfonation Of Small Molecules                                                                                                                                                                                                                                                                                                                        
## Cytosolic Trna Aminoacylation                                                                                                                                                                                                                                                                                                                                   
## Darpp 32 Events                                                                                                                                                                                                                                                                                                                                                 
## Deactivation Of The Beta Catenin Transactivating Complex                                                                                                                                                                                                                                                                                                        
## Deadenylation Dependent Mrna Decay                                                                                                                                                                                                                                                                                                                              
## Deadenylation Of Mrna                                                                                                                                                                                                                                                                                                                                           
## Dectin 2 Family                                                                                                                                                                                                                                                                                                                                                 
## Defective B4galt1 Causes B4galt1 Cdg Cdg 2d                                                                                                                                                                                                                                                                                                                     
## Defective B4galt7 Causes Eds Progeroid Type                                                                                                                                                                                                                                                                                                                     
## Defective C1galt1c1 Causes Tn Polyagglutination Syndrome Tnps                                                                                                                                                                                                                                                                                                   
## Defective Cftr Causes Cystic Fibrosis                                                                                                                                                                                                                                                                                                                           
## Defective Chst14 Causes Eds Musculocontractural Type                                                                                                                                                                                                                                                                                                            
## Defective Chst3 Causes Sedcjd                                                                                                                                                                                                                                                                                                                                   
## Defective Chst6 Causes Mcdc1                                                                                                                                                                                                                                                                                                                                    
## Defective Chsy1 Causes Tpbs                                                                                                                                                                                                                                                                                                                                     
## Defective Csf2rb Causes Smdp5                                                                                                                                                                                                                                                                                                                                   
## Defective Ext2 Causes Exostoses 2                                                                                                                                                                                                                                                                                                                               
## Defective F9 Activation                                                                                                                                                                                                                                                                                                                                         
## Defective Factor Ix Causes Hemophilia B                                                                                                                                                                                                                                                                                                                         
## Defective Factor Viii Causes Hemophilia A                                                                                                                                                                                                                                                                                                                       
## Defective Galnt3 Causes Familial Hyperphosphatemic Tumoral Calcinosis Hftc                                                                                                                                                                                                                                                                                      
## Defective Lfng Causes Scdo3                                                                                                                                                                                                                                                                                                                                     
## Defective Ripk1 Mediated Regulated Necrosis                                                                                                                                                                                                                                                                                                                     
## Defective St3gal3 Causes Mct12 And Eiee15                                                                                                                                                                                                                                                                                                                       
## Defects In Biotin Btn Metabolism                                                                                                                                                                                                                                                                                                                                
## Defects In Cobalamin B12 Metabolism                                                                                                                                                                                                                                                                                                                             
## Defects In Vitamin And Cofactor Metabolism                                                                                                                                                                                                                                                                                                                      
## Defects Of Contact Activation System Cas And Kallikrein Kinin System Kks                                                                                                                                                                                                                                                                                        
## Degradation Of Axin                                                                                                                                                                                                                                                                                                                                             
## Degradation Of Cysteine And Homocysteine                                                                                                                                                                                                                                                                                                                        
## Degradation Of Dvl                                                                                                                                                                                                                                                                                                                                              
## Degradation Of Gli1 By The Proteasome                                                                                                                                                                                                                                                                                                                           
## Deposition Of New Cenpa Containing Nucleosomes At The Centromere                                                                                                                                                                                                                                                                                                
## Detoxification Of Reactive Oxygen Species                                                                                                                                                                                                                                                                                                                       
## Dex H Box Helicases Activate Type I Ifn And Inflammatory Cytokines Production                                                                                                                                                                                                                                                                                   
## Digestion                                                                                                                                                                                                                                                                                                                                                       
## Digestion And Absorption                                                                                                                                                                                                                                                                                                                                        
## Digestion Of Dietary Carbohydrate                                                                                                                                                                                                                                                                                                                               
## Digestion Of Dietary Lipid                                                                                                                                                                                                                                                                                                                                      
## Diseases Associated With Glycosaminoglycan Metabolism                                                                                                                                                                                                                                                                                                           
## Diseases Associated With N Glycosylation Of Proteins                                                                                                                                                                                                                                                                                                            
## Diseases Associated With O Glycosylation Of Proteins                                                                                                                                                                                                                                                                                                            
## Diseases Associated With Surfactant Metabolism                                                                                                                                                                                                                                                                                                                  
## Diseases Of Base Excision Repair                                                                                                                                                                                                                                                                                                                                
## Diseases Of Carbohydrate Metabolism                                                                                                                                                                                                                                                                                                                             
## Diseases Of Dna Repair                                                                                                                                                                                                                                                                                                                                          
## Diseases Of Mismatch Repair Mmr                                                                                                                                                                                                                                                                                                                                 
## Diseases Of Mitotic Cell Cycle                                                                                                                                                                                                                                                                                                                                  
## Disinhibition Of Snare Formation                                                                                                                                                                                                                                                                                                                                
## Displacement Of Dna Glycosylase By Apex1                                                                                                                                                                                                                                                                                                                        
## Dna Damage Bypass                                                                                                                                                                                                                                                                                                                                               
## Dna Damage Recognition In Gg Ner                                                                                                                                                                                                                                                                                                                                
## Dna Damage Reversal                                                                                                                                                                                                                                                                                                                                             
## Dna Damage Telomere Stress Induced Senescence                                                                                                                                                                                                                                                                                                                   
## Dna Replication                                                                                                                                                                                                                                                                                                                                                 
## Dna Replication Initiation                                                                                                                                                                                                                                                                                                                                      
## Dna Replication Pre Initiation                                                                                                                                                                                                                                                                                                                                  
## Dna Strand Elongation                                                                                                                                                                                                                                                                                                                                           
## Dopamine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                         
## Dopamine Receptors                                                                                                                                                                                                                                                                                                                                              
## Downregulation Of Erbb2 Erbb3 Signaling                                                                                                                                                                                                                                                                                                                         
## Downregulation Of Erbb2 Signaling                                                                                                                                                                                                                                                                                                                               
## Downregulation Of Erbb4 Signaling                                                                                                                                                                                                                                                                                                                               
## Downregulation Of Smad2 3 Smad4 Transcriptional Activity                                                                                                                                                                                                                                                                                                        
## Downregulation Of Tgf Beta Receptor Signaling                                                                                                                                                                                                                                                                                                                   
## Downstream Signaling Of Activated Fgfr1                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr2                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr3                                                                                                                                                                                                                                                                                                                         
## Downstream Signaling Of Activated Fgfr4                                                                                                                                                                                                                                                                                                                         
## Dual Incision In Gg Ner                                                                                                                                                                                                                                                                                                                                         
## Dual Incision In Tc Ner                                                                                                                                                                                                                                                                                                                                         
## E3 Ubiquitin Ligases Ubiquitinate Target Proteins                                                                                                                                                                                                                                                                                                               
## Effects Of Pip2 Hydrolysis                                                                                                                                                                                                                                                                                                                                      
## Egfr Interacts With Phospholipase C Gamma                                                                                                                                                                                                                                                                                                                       
## Egfr Transactivation By Gastrin                                                                                                                                                                                                                                                                                                                                 
## Egr2 And Sox10 Mediated Initiation Of Schwann Cell Myelination                                                                                                                                                                                                                                                                                                  
## Eicosanoid Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                             
## Eicosanoids                                                                                                                                                                                                                                                                                                                                                     
## Elastic Fibre Formation                                                                                                                                                                                                                                                                                                                                         
## Electric Transmission Across Gap Junctions                                                                                                                                                                                                                                                                                                                      
## Elevation Of Cytosolic Ca2 Levels                                                                                                                                                                                                                                                                                                                               
## Endogenous Sterols                                                                                                                                                                                                                                                                                                                                              
## Endosomal Sorting Complex Required For Transport Escrt                                                                                                                                                                                                                                                                                                          
## Energy Dependent Regulation Of Mtor By Lkb1 Ampk                                                                                                                                                                                                                                                                                                                
## Eph Ephrin Mediated Repulsion Of Cells                                                                                                                                                                                                                                                                                                                          
## Epha Mediated Growth Cone Collapse                                                                                                                                                                                                                                                                                                                              
## Ephrin Signaling                                                                                                                                                                                                                                                                                                                                                
## Er Quality Control Compartment Erqc                                                                                                                                                                                                                                                                                                                             
## Erbb2 Activates Ptk6 Signaling                                                                                                                                                                                                                                                                                                                                  
## Erbb2 Regulates Cell Motility                                                                                                                                                                                                                                                                                                                                   
## Ercc6 Csb And Ehmt2 G9a Positively Regulate Rrna Expression                                                                                                                                                                                                                                                                                                     
## Erk Mapk Targets                                                                                                                                                                                                                                                                                                                                                
## Erks Are Inactivated                                                                                                                                                                                                                                                                                                                                            
## Erythrocytes Take Up Carbon Dioxide And Release Oxygen                                                                                                                                                                                                                                                                                                          
## Erythrocytes Take Up Oxygen And Release Carbon Dioxide                                                                                                                                                                                                                                                                                                          
## Erythropoietin Activates Phosphoinositide 3 Kinase Pi3k                                                                                                                                                                                                                                                                                                         
## Erythropoietin Activates Phospholipase C Gamma Plcg                                                                                                                                                                                                                                                                                                             
## Erythropoietin Activates Ras                                                                                                                                                                                                                                                                                                                                    
## Erythropoietin Activates Stat5                                                                                                                                                                                                                                                                                                                                  
## Establishment Of Sister Chromatid Cohesion                                                                                                                                                                                                                                                                                                                      
## Estrogen Biosynthesis                                                                                                                                                                                                                                                                                                                                           
## Estrogen Stimulated Signaling Through Prkcz                                                                                                                                                                                                                                                                                                                     
## Ethanol Oxidation                                                                                                                                                                                                                                                                                                                                               
## Eukaryotic Translation Elongation                                                                                                                                                                                                                                                                                                                               
## Eukaryotic Translation Initiation                                                                                                                                                                                                                                                                                                                               
## Export Of Viral Ribonucleoproteins From Nucleus                                                                                                                                                                                                                                                                                                                 
## Extension Of Telomeres                                                                                                                                                                                                                                                                                                                                          
## Extrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                      
## Fanconi Anemia Pathway                                                                                                                                                                                                                                                                                                                                          
## Fatty Acids                                                                                                                                                                                                                                                                                                                                                     
## Fatty Acids Bound To Gpr40 Ffar1 Regulate Insulin Secretion                                                                                                                                                                                                                                                                                                     
## Fatty Acyl Coa Biosynthesis                                                                                                                                                                                                                                                                                                                                     
## Fbxw7 Mutants And Notch1 In Cancer                                                                                                                                                                                                                                                                                                                              
## Fceri Mediated Ca 2 Mobilization                                                                                                                                                                                                                                                                                                                                
## Fcgr Activation                                                                                                                                                                                                                                                                                                                                                 
## Fertilization                                                                                                                                                                                                                                                                                                                                                   
## Fgfr1 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr1b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr1c Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr2 Alternative Splicing                                                                                                                                                                                                                                                                                                                                      
## Fgfr2 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr2 Mutant Receptor Activation                                                                                                                                                                                                                                                                                                                                
## Fgfr2b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr2c Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfr3 Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                             
## Fgfr3b Ligand Binding And Activation                                                                                                                                                                                                                                                                                                                            
## Fgfrl1 Modulation Of Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                            
## Ficolins Bind To Repetitive Carbohydrate Structures On The Target Cell Surface                                                                                                                                                                                                                                                                                  
## Flt3 Signaling                                                                                                                                                                                                                                                                                                                                                  
## Flt3 Signaling By Cbl Mutants                                                                                                                                                                                                                                                                                                                                   
## Flt3 Signaling In Disease                                                                                                                                                                                                                                                                                                                                       
## Flt3 Signaling Through Src Family Kinases                                                                                                                                                                                                                                                                                                                       
## Folding Of Actin By Cct Tric                                                                                                                                                                                                                                                                                                                                    
## Formation Of Apoptosome                                                                                                                                                                                                                                                                                                                                         
## Formation Of Atp By Chemiosmotic Coupling                                                                                                                                                                                                                                                                                                                       
## Formation Of Fibrin Clot Clotting Cascade                                                                                                                                                                                                                                                                                                                       
## Formation Of Incision Complex In Gg Ner                                                                                                                                                                                                                                                                                                                         
## Formation Of Rna Pol Ii Elongation Complex                                                                                                                                                                                                                                                                                                                      
## Formation Of Senescence Associated Heterochromatin Foci Sahf                                                                                                                                                                                                                                                                                                    
## Formation Of Tc Ner Pre Incision Complex                                                                                                                                                                                                                                                                                                                        
## Formation Of The Cornified Envelope                                                                                                                                                                                                                                                                                                                             
## Formation Of The Early Elongation Complex                                                                                                                                                                                                                                                                                                                       
## Formation Of Tubulin Folding Intermediates By Cct Tric                                                                                                                                                                                                                                                                                                          
## Formation Of Xylulose 5 Phosphate                                                                                                                                                                                                                                                                                                                               
## Formyl Peptide Receptors Bind Formyl Peptides And Many Other Ligands                                                                                                                                                                                                                                                                                            
## Foxo Mediated Transcription Of Oxidative Stress Metabolic And Neuronal Genes                                                                                                                                                                                                                                                                                    
## Free Fatty Acid Receptors                                                                                                                                                                                                                                                                                                                                       
## Free Fatty Acids Regulate Insulin Secretion                                                                                                                                                                                                                                                                                                                     
## Frs Mediated Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr2 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr3 Signaling                                                                                                                                                                                                                                                                                                                                    
## Frs Mediated Fgfr4 Signaling                                                                                                                                                                                                                                                                                                                                    
## Fructose Catabolism                                                                                                                                                                                                                                                                                                                                             
## Fructose Metabolism                                                                                                                                                                                                                                                                                                                                             
## G Alpha 12 13 Signalling Events                                                                                                                                                                                                                                                                                                                                 
## G Alpha S Signalling Events                                                                                                                                                                                                                                                                                                                                     
## G Alpha Z Signalling Events                                                                                                                                                                                                                                                                                                                                     
## G Beta Gamma Signalling Through Pi3kgamma                                                                                                                                                                                                                                                                                                                       
## G Protein Activation                                                                                                                                                                                                                                                                                                                                            
## G1 S Dna Damage Checkpoints                                                                                                                                                                                                                                                                                                                                     
## G2 Phase                                                                                                                                                                                                                                                                                                                                                        
## Gab1 Signalosome                                                                                                                                                                                                                                                                                                                                                
## Gaba B Receptor Activation                                                                                                                                                                                                                                                                                                                                      
## Gaba Receptor Activation                                                                                                                                                                                                                                                                                                                                        
## Gaba Synthesis Release Reuptake And Degradation                                                                                                                                                                                                                                                                                                                 
## Gamma Carboxylation Hypusine Formation And Arylsulfatase Activation                                                                                                                                                                                                                                                                                             
## Gamma Carboxylation Transport And Amino Terminal Cleavage Of Proteins                                                                                                                                                                                                                                                                                           
## Gap Filling Dna Repair Synthesis And Ligation In Gg Ner                                                                                                                                                                                                                                                                                                         
## Gap Junction Assembly                                                                                                                                                                                                                                                                                                                                           
## Gap Junction Degradation                                                                                                                                                                                                                                                                                                                                        
## Gap Junction Trafficking And Regulation                                                                                                                                                                                                                                                                                                                         
## Gdp Fucose Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Gene Silencing By Rna                                                                                                                                                                                                                                                                                                                                           
## Gli Proteins Bind Promoters Of Hh Responsive Genes To Promote Transcription                                                                                                                                                                                                                                                                                     
## Global Genome Nucleotide Excision Repair Gg Ner                                                                                                                                                                                                                                                                                                                 
## Glucagon Like Peptide 1 Glp1 Regulates Insulin Secretion                                                                                                                                                                                                                                                                                                        
## Glucagon Signaling In Metabolic Regulation                                                                                                                                                                                                                                                                                                                      
## Glucagon Type Ligand Receptors                                                                                                                                                                                                                                                                                                                                  
## Glucocorticoid Biosynthesis                                                                                                                                                                                                                                                                                                                                     
## Gluconeogenesis                                                                                                                                                                                                                                                                                                                                                 
## Glucose Metabolism                                                                                                                                                                                                                                                                                                                                              
## Glucuronidation                                                                                                                                                                                                                                                                                                                                                 
## Glutamate And Glutamine Metabolism                                                                                                                                                                                                                                                                                                                              
## Glutamate Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                        
## Glutathione Conjugation                                                                                                                                                                                                                                                                                                                                         
## Glutathione Synthesis And Recycling                                                                                                                                                                                                                                                                                                                             
## Glycerophospholipid Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Glycerophospholipid Catabolism                                                                                                                                                                                                                                                                                                                                  
## Glycogen Breakdown Glycogenolysis                                                                                                                                                                                                                                                                                                                               
## Glycogen Metabolism                                                                                                                                                                                                                                                                                                                                             
## Glycogen Storage Diseases                                                                                                                                                                                                                                                                                                                                       
## Glycogen Synthesis                                                                                                                                                                                                                                                                                                                                              
## Glycolysis                                                                                                                                                                                                                                                                                                                                                      
## Glycosphingolipid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Glyoxylate Metabolism And Glycine Degradation                                                                                                                                                                                                                                                                                                                   
## Golgi Associated Vesicle Biogenesis                                                                                                                                                                                                                                                                                                                             
## Golgi To Er Retrograde Transport                                                                                                                                                                                                                                                                                                                                
## Gp1b Ix V Activation Signalling                                                                                                                                                                                                                                                                                                                                 
## Grb2 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Grb2 Sos Provides Linkage To Mapk Signaling For Integrins                                                                                                                                                                                                                                                                                                       
## Grb7 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Hats Acetylate Histones                                                                                                                                                                                                                                                                                                                                         
## Hcmv Late Events                                                                                                                                                                                                                                                                                                                                                
## Hdacs Deacetylate Histones                                                                                                                                                                                                                                                                                                                                      
## Hdms Demethylate Histones                                                                                                                                                                                                                                                                                                                                       
## Hdr Through Homologous Recombination Hrr                                                                                                                                                                                                                                                                                                                        
## Hdr Through Mmej Alt Nhej                                                                                                                                                                                                                                                                                                                                       
## Hdr Through Single Strand Annealing Ssa                                                                                                                                                                                                                                                                                                                         
## Hedgehog Ligand Biogenesis                                                                                                                                                                                                                                                                                                                                      
## Hedgehog Off State                                                                                                                                                                                                                                                                                                                                              
## Hedgehog On State                                                                                                                                                                                                                                                                                                                                               
## Heme Biosynthesis                                                                                                                                                                                                                                                                                                                                               
## Heme Degradation                                                                                                                                                                                                                                                                                                                                                
## Heparan Sulfate Heparin Hs Gag Metabolism                                                                                                                                                                                                                                                                                                                       
## Highly Calcium Permeable Nicotinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                                      
## Highly Calcium Permeable Postsynaptic Nicotinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                         
## Highly Sodium Permeable Postsynaptic Acetylcholine Nicotinic Receptors                                                                                                                                                                                                                                                                                          
## Histidine Catabolism                                                                                                                                                                                                                                                                                                                                            
## Hiv Elongation Arrest And Recovery                                                                                                                                                                                                                                                                                                                              
## Hiv Transcription Elongation                                                                                                                                                                                                                                                                                                                                    
## Hiv Transcription Initiation                                                                                                                                                                                                                                                                                                                                    
## Homologous Dna Pairing And Strand Exchange                                                                                                                                                                                                                                                                                                                      
## Homology Directed Repair                                                                                                                                                                                                                                                                                                                                        
## Hormone Ligand Binding Receptors                                                                                                                                                                                                                                                                                                                                
## Host Interactions Of Hiv Factors                                                                                                                                                                                                                                                                                                                                
## Hs Gag Biosynthesis                                                                                                                                                                                                                                                                                                                                             
## Hs Gag Degradation                                                                                                                                                                                                                                                                                                                                              
## Hsf1 Activation                                                                                                                                                                                                                                                                                                                                                 
## Hsf1 Dependent Transactivation                                                                                                                                                                                                                                                                                                                                  
## Hsp90 Chaperone Cycle For Steroid Hormone Receptors Shr                                                                                                                                                                                                                                                                                                         
## Hur Elavl1 Binds And Stabilizes Mrna                                                                                                                                                                                                                                                                                                                            
## Hyaluronan Biosynthesis And Export                                                                                                                                                                                                                                                                                                                              
## Hyaluronan Metabolism                                                                                                                                                                                                                                                                                                                                           
## Hyaluronan Uptake And Degradation                                                                                                                                                                                                                                                                                                                               
## Hydrolysis Of Lpc                                                                                                                                                                                                                                                                                                                                               
## Il 6 Type Cytokine Receptor Ligand Interactions                                                                                                                                                                                                                                                                                                                 
## Infection With Mycobacterium Tuberculosis                                                                                                                                                                                                                                                                                                                       
## Influenza Infection                                                                                                                                                                                                                                                                                                                                             
## Inhibition Of Dna Recombination At Telomere                                                                                                                                                                                                                                                                                                                     
## Inhibition Of Replication Initiation Of Damaged Dna By Rb1 E2f1                                                                                                                                                                                                                                                                                                 
## Inhibition Of The Proteolytic Activity Of Apc C Required For The Onset Of Anaphase By Mitotic Spindle Checkpoint Components                                                                                                                                                                                                                                     
## Inla Mediated Entry Of Listeria Monocytogenes Into Host Cells                                                                                                                                                                                                                                                                                                   
## Inlb Mediated Entry Of Listeria Monocytogenes Into Host Cell                                                                                                                                                                                                                                                                                                    
## Inositol Phosphate Metabolism                                                                                                                                                                                                                                                                                                                                   
## Insertion Of Tail Anchored Proteins Into The Endoplasmic Reticulum Membrane                                                                                                                                                                                                                                                                                     
## Insulin Processing                                                                                                                                                                                                                                                                                                                                              
## Insulin Receptor Recycling                                                                                                                                                                                                                                                                                                                                      
## Integration Of Energy Metabolism                                                                                                                                                                                                                                                                                                                                
## Integration Of Provirus                                                                                                                                                                                                                                                                                                                                         
## Integrin Cell Surface Interactions                                                                                                                                                                                                                                                                                                                              
## Integrin Signaling                                                                                                                                                                                                                                                                                                                                              
## Interaction Between L1 And Ankyrins                                                                                                                                                                                                                                                                                                                             
## Interaction With Cumulus Cells And The Zona Pellucida                                                                                                                                                                                                                                                                                                           
## Interactions Of Rev With Host Cellular Proteins                                                                                                                                                                                                                                                                                                                 
## Interactions Of Vpr With Host Cellular Proteins                                                                                                                                                                                                                                                                                                                 
## Interconversion Of Nucleotide Di And Triphosphates                                                                                                                                                                                                                                                                                                              
## Interleukin 36 Pathway                                                                                                                                                                                                                                                                                                                                          
## Intestinal Absorption                                                                                                                                                                                                                                                                                                                                           
## Intra Golgi And Retrograde Golgi To Er Traffic                                                                                                                                                                                                                                                                                                                  
## Intra Golgi Traffic                                                                                                                                                                                                                                                                                                                                             
## Intraflagellar Transport                                                                                                                                                                                                                                                                                                                                        
## Intrinsic Pathway Of Fibrin Clot Formation                                                                                                                                                                                                                                                                                                                      
## Inwardly Rectifying K Channels                                                                                                                                                                                                                                                                                                                                  
## Ion Channel Transport                                                                                                                                                                                                                                                                                                                                           
## Ion Homeostasis                                                                                                                                                                                                                                                                                                                                                 
## Ion Transport By P Type Atpases                                                                                                                                                                                                                                                                                                                                 
## Ionotropic Activity Of Kainate Receptors                                                                                                                                                                                                                                                                                                                        
## Irak2 Mediated Activation Of Tak1 Complex                                                                                                                                                                                                                                                                                                                       
## Ire1alpha Activates Chaperones                                                                                                                                                                                                                                                                                                                                  
## Irf3 Mediated Activation Of Type 1 Ifn                                                                                                                                                                                                                                                                                                                          
## Irf3 Mediated Induction Of Type I Ifn                                                                                                                                                                                                                                                                                                                           
## Iron Uptake And Transport                                                                                                                                                                                                                                                                                                                                       
## Irs Activation                                                                                                                                                                                                                                                                                                                                                  
## Josephin Domain Dubs                                                                                                                                                                                                                                                                                                                                            
## Keratan Sulfate Biosynthesis                                                                                                                                                                                                                                                                                                                                    
## Keratan Sulfate Degradation                                                                                                                                                                                                                                                                                                                                     
## Keratan Sulfate Keratin Metabolism                                                                                                                                                                                                                                                                                                                              
## Keratinization                                                                                                                                                                                                                                                                                                                                                  
## Ketone Body Metabolism                                                                                                                                                                                                                                                                                                                                          
## Kinesins                                                                                                                                                                                                                                                                                                                                                        
## Ksrp Khsrp Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                                          
## L1cam Interactions                                                                                                                                                                                                                                                                                                                                              
## Lagging Strand Synthesis                                                                                                                                                                                                                                                                                                                                        
## Laminin Interactions                                                                                                                                                                                                                                                                                                                                            
## Late Endosomal Microautophagy                                                                                                                                                                                                                                                                                                                                   
## Ldl Clearance                                                                                                                                                                                                                                                                                                                                                   
## Lectin Pathway Of Complement Activation                                                                                                                                                                                                                                                                                                                         
## Leukotriene Receptors                                                                                                                                                                                                                                                                                                                                           
## Lgi Adam Interactions                                                                                                                                                                                                                                                                                                                                           
## Ligand Receptor Interactions                                                                                                                                                                                                                                                                                                                                    
## Linoleic Acid La Metabolism                                                                                                                                                                                                                                                                                                                                     
## Lipid Particle Organization                                                                                                                                                                                                                                                                                                                                     
## Lipophagy                                                                                                                                                                                                                                                                                                                                                       
## Listeria Monocytogenes Entry Into Host Cells                                                                                                                                                                                                                                                                                                                    
## Long Term Potentiation                                                                                                                                                                                                                                                                                                                                          
## Loss Of Function Of Mecp2 In Rett Syndrome                                                                                                                                                                                                                                                                                                                      
## Loss Of Function Of Smad2 3 In Cancer                                                                                                                                                                                                                                                                                                                           
## Loss Of Mecp2 Binding Ability To The Ncor Smrt Complex                                                                                                                                                                                                                                                                                                          
## Lrr Flii Interacting Protein 1 Lrrfip1 Activates Type I Ifn Production                                                                                                                                                                                                                                                                                          
## Ltc4 Cysltr Mediated Il4 Production                                                                                                                                                                                                                                                                                                                             
## Lysine Catabolism                                                                                                                                                                                                                                                                                                                                               
## Lysosome Vesicle Biogenesis                                                                                                                                                                                                                                                                                                                                     
## Lysosphingolipid And Lpa Receptors                                                                                                                                                                                                                                                                                                                              
## Map2k And Mapk Activation                                                                                                                                                                                                                                                                                                                                       
## Map3k8 Tpl2 Dependent Mapk1 3 Activation                                                                                                                                                                                                                                                                                                                        
## Mapk1 Erk2 Activation                                                                                                                                                                                                                                                                                                                                           
## Maturation Of Nucleoprotein                                                                                                                                                                                                                                                                                                                                     
## Maturation Of Protein 3a                                                                                                                                                                                                                                                                                                                                        
## Maturation Of Sars Cov 1 Spike Protein                                                                                                                                                                                                                                                                                                                          
## Maturation Of Sars Cov 2 Spike Protein                                                                                                                                                                                                                                                                                                                          
## Meiosis                                                                                                                                                                                                                                                                                                                                                         
## Meiotic Recombination                                                                                                                                                                                                                                                                                                                                           
## Meiotic Synapsis                                                                                                                                                                                                                                                                                                                                                
## Melanin Biosynthesis                                                                                                                                                                                                                                                                                                                                            
## Met Activates Pi3k Akt Signaling                                                                                                                                                                                                                                                                                                                                
## Met Activates Ptk2 Signaling                                                                                                                                                                                                                                                                                                                                    
## Met Activates Ptpn11                                                                                                                                                                                                                                                                                                                                            
## Met Activates Rap1 And Rac1                                                                                                                                                                                                                                                                                                                                     
## Met Activates Ras Signaling                                                                                                                                                                                                                                                                                                                                     
## Met Interacts With Tns Proteins                                                                                                                                                                                                                                                                                                                                 
## Met Promotes Cell Motility                                                                                                                                                                                                                                                                                                                                      
## Met Receptor Activation                                                                                                                                                                                                                                                                                                                                         
## Met Receptor Recycling                                                                                                                                                                                                                                                                                                                                          
## Metabolic Disorders Of Biological Oxidation Enzymes                                                                                                                                                                                                                                                                                                             
## Metabolism Of Amine Derived Hormones                                                                                                                                                                                                                                                                                                                            
## Metabolism Of Angiotensinogen To Angiotensins                                                                                                                                                                                                                                                                                                                   
## Metabolism Of Cofactors                                                                                                                                                                                                                                                                                                                                         
## Metabolism Of Folate And Pterines                                                                                                                                                                                                                                                                                                                               
## Metabolism Of Ingested Semet Sec Mesec Into H2se                                                                                                                                                                                                                                                                                                                
## Metabolism Of Nucleotides                                                                                                                                                                                                                                                                                                                                       
## Metabolism Of Polyamines                                                                                                                                                                                                                                                                                                                                        
## Metabolism Of Porphyrins                                                                                                                                                                                                                                                                                                                                        
## Metabolism Of Rna                                                                                                                                                                                                                                                                                                                                               
## Metabolism Of Steroid Hormones                                                                                                                                                                                                                                                                                                                                  
## Metabolism Of Steroids                                                                                                                                                                                                                                                                                                                                          
## Metal Ion Slc Transporters                                                                                                                                                                                                                                                                                                                                      
## Metal Sequestration By Antimicrobial Proteins                                                                                                                                                                                                                                                                                                                   
## Metallothioneins Bind Metals                                                                                                                                                                                                                                                                                                                                    
## Methionine Salvage Pathway                                                                                                                                                                                                                                                                                                                                      
## Methylation                                                                                                                                                                                                                                                                                                                                                     
## Microrna Mirna Biogenesis                                                                                                                                                                                                                                                                                                                                       
## Mineralocorticoid Biosynthesis                                                                                                                                                                                                                                                                                                                                  
## Miro Gtpase Cycle                                                                                                                                                                                                                                                                                                                                               
## Miscellaneous Substrates                                                                                                                                                                                                                                                                                                                                        
## Miscellaneous Transport And Binding Events                                                                                                                                                                                                                                                                                                                      
## Mismatch Repair                                                                                                                                                                                                                                                                                                                                                 
## Mitochondrial Calcium Ion Transport                                                                                                                                                                                                                                                                                                                             
## Mitochondrial Fatty Acid Beta Oxidation                                                                                                                                                                                                                                                                                                                         
## Mitochondrial Fatty Acid Beta Oxidation Of Saturated Fatty Acids                                                                                                                                                                                                                                                                                                
## Mitochondrial Fatty Acid Beta Oxidation Of Unsaturated Fatty Acids                                                                                                                                                                                                                                                                                              
## Mitochondrial Iron Sulfur Cluster Biogenesis                                                                                                                                                                                                                                                                                                                    
## Mitochondrial Protein Import                                                                                                                                                                                                                                                                                                                                    
## Mitochondrial Translation                                                                                                                                                                                                                                                                                                                                       
## Mitochondrial Trna Aminoacylation                                                                                                                                                                                                                                                                                                                               
## Mitochondrial Uncoupling                                                                                                                                                                                                                                                                                                                                        
## Mitotic Spindle Checkpoint                                                                                                                                                                                                                                                                                                                                      
## Mitotic Telophase Cytokinesis                                                                                                                                                                                                                                                                                                                                   
## Modulation By Mtb Of Host Immune System                                                                                                                                                                                                                                                                                                                         
## Molecules Associated With Elastic Fibres                                                                                                                                                                                                                                                                                                                        
## Molybdenum Cofactor Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Mrna Capping                                                                                                                                                                                                                                                                                                                                                    
## Mrna Decay By 3 To 5 Exoribonuclease                                                                                                                                                                                                                                                                                                                            
## Mrna Decay By 5 To 3 Exoribonuclease                                                                                                                                                                                                                                                                                                                            
## Mrna Editing                                                                                                                                                                                                                                                                                                                                                    
## Mrna Editing C To U Conversion                                                                                                                                                                                                                                                                                                                                  
## Mrna Splicing                                                                                                                                                                                                                                                                                                                                                   
## Mrna Splicing Minor Pathway                                                                                                                                                                                                                                                                                                                                     
## Mtor Signalling                                                                                                                                                                                                                                                                                                                                                 
## Mtorc1 Mediated Signalling                                                                                                                                                                                                                                                                                                                                      
## Mucopolysaccharidoses                                                                                                                                                                                                                                                                                                                                           
## Multifunctional Anion Exchangers                                                                                                                                                                                                                                                                                                                                
## Muscarinic Acetylcholine Receptors                                                                                                                                                                                                                                                                                                                              
## Myoclonic Epilepsy Of Lafora                                                                                                                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation                                                                                                                                                                                                                                                                                                                                    
## N Glycan Antennae Elongation In The Medial Trans Golgi                                                                                                                                                                                                                                                                                                          
## N Glycan Trimming And Elongation In The Cis Golgi                                                                                                                                                                                                                                                                                                               
## N Glycan Trimming In The Er And Calnexin Calreticulin Cycle                                                                                                                                                                                                                                                                                                     
## Na Cl Dependent Neurotransmitter Transporters                                                                                                                                                                                                                                                                                                                   
## Nade Modulates Death Signalling                                                                                                                                                                                                                                                                                                                                 
## Ncam1 Interactions                                                                                                                                                                                                                                                                                                                                              
## Nectin Necl Trans Heterodimerization                                                                                                                                                                                                                                                                                                                            
## Neddylation                                                                                                                                                                                                                                                                                                                                                     
## Nef And Signal Transduction                                                                                                                                                                                                                                                                                                                                     
## Nef Mediated Cd4 Down Regulation                                                                                                                                                                                                                                                                                                                                
## Nef Mediated Cd8 Down Regulation                                                                                                                                                                                                                                                                                                                                
## Nef Mediated Downregulation Of Mhc Class I Complex Cell Surface Expression                                                                                                                                                                                                                                                                                      
## Nef Mediates Down Modulation Of Cell Surface Receptors By Recruiting Them To Clathrin Adapters                                                                                                                                                                                                                                                                  
## Negative Feedback Regulation Of Mapk Pathway                                                                                                                                                                                                                                                                                                                    
## Negative Regulation Of Activity Of Tfap2 Ap 2 Family Transcription Factors                                                                                                                                                                                                                                                                                      
## Negative Regulation Of Fgfr1 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr2 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr3 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Fgfr4 Signaling                                                                                                                                                                                                                                                                                                                          
## Negative Regulation Of Flt3                                                                                                                                                                                                                                                                                                                                     
## Negative Regulation Of Mapk Pathway                                                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Met Activity                                                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Nmda Receptor Mediated Neuronal Transmission                                                                                                                                                                                                                                                                                             
## Negative Regulation Of Notch4 Signaling                                                                                                                                                                                                                                                                                                                         
## Negative Regulation Of Tcf Dependent Signaling By Dvl Interacting Proteins                                                                                                                                                                                                                                                                                      
## Nephrin Family Interactions                                                                                                                                                                                                                                                                                                                                     
## Netrin Mediated Repulsion Signals                                                                                                                                                                                                                                                                                                                               
## Neurexins And Neuroligins                                                                                                                                                                                                                                                                                                                                       
## Neurofascin Interactions                                                                                                                                                                                                                                                                                                                                        
## Neurotoxicity Of Clostridium Toxins                                                                                                                                                                                                                                                                                                                             
## Neurotransmitter Clearance                                                                                                                                                                                                                                                                                                                                      
## Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                                  
## Nf Kb Activation Through Fadd Rip 1 Pathway Mediated By Caspase 8 And 10                                                                                                                                                                                                                                                                                        
## Ngf Independant Trka Activation                                                                                                                                                                                                                                                                                                                                 
## Nitric Oxide Stimulates Guanylate Cyclase                                                                                                                                                                                                                                                                                                                       
## Non Integrin Membrane Ecm Interactions                                                                                                                                                                                                                                                                                                                          
## Noncanonical Activation Of Notch3                                                                                                                                                                                                                                                                                                                               
## Nonhomologous End Joining Nhej                                                                                                                                                                                                                                                                                                                                  
## Nonsense Mediated Decay Nmd                                                                                                                                                                                                                                                                                                                                     
## Norepinephrine Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                   
## Notch Hlh Transcription Pathway                                                                                                                                                                                                                                                                                                                                 
## Notch2 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch3 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch3 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                             
## Notch4 Activation And Transmission Of Signal To The Nucleus                                                                                                                                                                                                                                                                                                     
## Notch4 Intracellular Domain Regulates Transcription                                                                                                                                                                                                                                                                                                             
## Nr1h2 And Nr1h3 Mediated Signaling                                                                                                                                                                                                                                                                                                                              
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Gluconeogenesis                                                                                                                                                                                                                                                                                                  
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Lipogenesis                                                                                                                                                                                                                                                                                                      
## Nr1h2 Nr1h3 Regulate Gene Expression Linked To Triglyceride Lipolysis In Adipose                                                                                                                                                                                                                                                                                
## Nr1h2 Nr1h3 Regulate Gene Expression To Control Bile Acid Homeostasis                                                                                                                                                                                                                                                                                           
## Nr1h2 Nr1h3 Regulate Gene Expression To Limit Cholesterol Uptake                                                                                                                                                                                                                                                                                                
## Nr1h3 Nr1h2 Regulate Gene Expression Linked To Cholesterol Transport And Efflux                                                                                                                                                                                                                                                                                 
## Nrcam Interactions                                                                                                                                                                                                                                                                                                                                              
## Ns1 Mediated Effects On Host Pathways                                                                                                                                                                                                                                                                                                                           
## Ntrk2 Activates Rac1                                                                                                                                                                                                                                                                                                                                            
## Nuclear Import Of Rev Protein                                                                                                                                                                                                                                                                                                                                   
## Nuclear Receptor Transcription Pathway                                                                                                                                                                                                                                                                                                                          
## Nuclear Signaling By Erbb4                                                                                                                                                                                                                                                                                                                                      
## Nucleobase Biosynthesis                                                                                                                                                                                                                                                                                                                                         
## Nucleobase Catabolism                                                                                                                                                                                                                                                                                                                                           
## Nucleotide Excision Repair                                                                                                                                                                                                                                                                                                                                      
## Nucleotide Like Purinergic Receptors                                                                                                                                                                                                                                                                                                                            
## Nucleotide Salvage                                                                                                                                                                                                                                                                                                                                              
## O Glycosylation Of Tsr Domain Containing Proteins                                                                                                                                                                                                                                                                                                               
## O Linked Glycosylation                                                                                                                                                                                                                                                                                                                                          
## O Linked Glycosylation Of Mucins                                                                                                                                                                                                                                                                                                                                
## Oas Antiviral Response                                                                                                                                                                                                                                                                                                                                          
## Olfactory Signaling Pathway                                                                                                                                                                                                                                                                                                                                     
## Oncogene Induced Senescence                                                                                                                                                                                                                                                                                                                                     
## Oncogenic Mapk Signaling                                                                                                                                                                                                                                                                                                                                        
## Opsins                                                                                                                                                                                                                                                                                                                                                          
## Orc1 Removal From Chromatin                                                                                                                                                                                                                                                                                                                                     
## Orexin And Neuropeptides Ff And Qrfp Bind To Their Respective Receptors                                                                                                                                                                                                                                                                                         
## Organic Anion Transport                                                                                                                                                                                                                                                                                                                                         
## Organic Anion Transporters                                                                                                                                                                                                                                                                                                                                      
## Organic Cation Anion Zwitterion Transport                                                                                                                                                                                                                                                                                                                       
## Organic Cation Transport                                                                                                                                                                                                                                                                                                                                        
## Other Interleukin Signaling                                                                                                                                                                                                                                                                                                                                     
## P130cas Linkage To Mapk Signaling For Integrins                                                                                                                                                                                                                                                                                                                 
## P2y Receptors                                                                                                                                                                                                                                                                                                                                                   
## P38mapk Events                                                                                                                                                                                                                                                                                                                                                  
## P75ntr Negatively Regulates Cell Cycle Via Sc1                                                                                                                                                                                                                                                                                                                  
## P75ntr Regulates Axonogenesis                                                                                                                                                                                                                                                                                                                                   
## Passive Transport By Aquaporins                                                                                                                                                                                                                                                                                                                                 
## Pcna Dependent Long Patch Base Excision Repair                                                                                                                                                                                                                                                                                                                  
## Pecam1 Interactions                                                                                                                                                                                                                                                                                                                                             
## Pentose Phosphate Pathway                                                                                                                                                                                                                                                                                                                                       
## Peptide Hormone Biosynthesis                                                                                                                                                                                                                                                                                                                                    
## Peroxisomal Lipid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Peroxisomal Protein Import                                                                                                                                                                                                                                                                                                                                      
## Pexophagy                                                                                                                                                                                                                                                                                                                                                       
## Phase 0 Rapid Depolarisation                                                                                                                                                                                                                                                                                                                                    
## Phase 1 Inactivation Of Fast Na Channels                                                                                                                                                                                                                                                                                                                        
## Phase 2 Plateau Phase                                                                                                                                                                                                                                                                                                                                           
## Phase 3 Rapid Repolarisation                                                                                                                                                                                                                                                                                                                                    
## Phase I Functionalization Of Compounds                                                                                                                                                                                                                                                                                                                          
## Phase Ii Conjugation Of Compounds                                                                                                                                                                                                                                                                                                                               
## Phenylalanine And Tyrosine Metabolism                                                                                                                                                                                                                                                                                                                           
## Phenylalanine Metabolism                                                                                                                                                                                                                                                                                                                                        
## Phosphate Bond Hydrolysis By Ntpdase Proteins                                                                                                                                                                                                                                                                                                                   
## Phosphate Bond Hydrolysis By Nudt Proteins                                                                                                                                                                                                                                                                                                                      
## Phospholipase C Mediated Cascade Fgfr2                                                                                                                                                                                                                                                                                                                          
## Phospholipase C Mediated Cascade Fgfr4                                                                                                                                                                                                                                                                                                                          
## Phospholipid Metabolism                                                                                                                                                                                                                                                                                                                                         
## Physiological Factors                                                                                                                                                                                                                                                                                                                                           
## Pi 3k Cascade Fgfr1                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr2                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr3                                                                                                                                                                                                                                                                                                                                             
## Pi 3k Cascade Fgfr4                                                                                                                                                                                                                                                                                                                                             
## Pi Metabolism                                                                                                                                                                                                                                                                                                                                                   
## Pi3k Akt Activation                                                                                                                                                                                                                                                                                                                                             
## Pi3k Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Pi3k Events In Erbb4 Signaling                                                                                                                                                                                                                                                                                                                                  
## Pi5p Regulates Tp53 Acetylation                                                                                                                                                                                                                                                                                                                                 
## Piwi Interacting Rna Pirna Biogenesis                                                                                                                                                                                                                                                                                                                           
## Pka Activation In Glucagon Signalling                                                                                                                                                                                                                                                                                                                           
## Pka Mediated Phosphorylation Of Key Metabolic Factors                                                                                                                                                                                                                                                                                                           
## Pkmts Methylate Histone Lysines                                                                                                                                                                                                                                                                                                                                 
## Platelet Adhesion To Exposed Collagen                                                                                                                                                                                                                                                                                                                           
## Platelet Aggregation Plug Formation                                                                                                                                                                                                                                                                                                                             
## Platelet Calcium Homeostasis                                                                                                                                                                                                                                                                                                                                    
## Platelet Homeostasis                                                                                                                                                                                                                                                                                                                                            
## Platelet Sensitization By Ldl                                                                                                                                                                                                                                                                                                                                   
## Polb Dependent Long Patch Base Excision Repair                                                                                                                                                                                                                                                                                                                  
## Polo Like Kinase Mediated Events                                                                                                                                                                                                                                                                                                                                
## Polymerase Switching                                                                                                                                                                                                                                                                                                                                            
## Polymerase Switching On The C Strand Of The Telomere                                                                                                                                                                                                                                                                                                            
## Positive Epigenetic Regulation Of Rrna Expression                                                                                                                                                                                                                                                                                                               
## Post Chaperonin Tubulin Folding Pathway                                                                                                                                                                                                                                                                                                                         
## Postmitotic Nuclear Pore Complex Npc Reformation                                                                                                                                                                                                                                                                                                                
## Pou5f1 Oct4 Sox2 Nanog Repress Genes Related To Differentiation                                                                                                                                                                                                                                                                                                 
## Pp2a Mediated Dephosphorylation Of Key Metabolic Factors                                                                                                                                                                                                                                                                                                        
## Pre Notch Expression And Processing                                                                                                                                                                                                                                                                                                                             
## Pre Notch Processing In Golgi                                                                                                                                                                                                                                                                                                                                   
## Pre Notch Processing In The Endoplasmic Reticulum                                                                                                                                                                                                                                                                                                               
## Pregnenolone Biosynthesis                                                                                                                                                                                                                                                                                                                                       
## Presynaptic Depolarization And Calcium Channel Opening                                                                                                                                                                                                                                                                                                          
## Presynaptic Function Of Kainate Receptors                                                                                                                                                                                                                                                                                                                       
## Prevention Of Phagosomal Lysosomal Fusion                                                                                                                                                                                                                                                                                                                       
## Processing And Activation Of Sumo                                                                                                                                                                                                                                                                                                                               
## Processing Of Capped Intron Containing Pre Mrna                                                                                                                                                                                                                                                                                                                 
## Processing Of Capped Intronless Pre Mrna                                                                                                                                                                                                                                                                                                                        
## Processing Of Dna Double Strand Break Ends                                                                                                                                                                                                                                                                                                                      
## Processing Of Intronless Pre Mrnas                                                                                                                                                                                                                                                                                                                              
## Processing Of Smdt1                                                                                                                                                                                                                                                                                                                                             
## Processive Synthesis On The C Strand Of The Telomere                                                                                                                                                                                                                                                                                                            
## Processive Synthesis On The Lagging Strand                                                                                                                                                                                                                                                                                                                      
## Prolactin Receptor Signaling                                                                                                                                                                                                                                                                                                                                    
## Prolonged Erk Activation Events                                                                                                                                                                                                                                                                                                                                 
## Propionyl Coa Catabolism                                                                                                                                                                                                                                                                                                                                        
## Prostacyclin Signalling Through Prostacyclin Receptor                                                                                                                                                                                                                                                                                                           
## Prostanoid Ligand Receptors                                                                                                                                                                                                                                                                                                                                     
## Protein Localization                                                                                                                                                                                                                                                                                                                                            
## Protein Methylation                                                                                                                                                                                                                                                                                                                                             
## Protein Protein Interactions At Synapses                                                                                                                                                                                                                                                                                                                        
## Protein Repair                                                                                                                                                                                                                                                                                                                                                  
## Protein Ubiquitination                                                                                                                                                                                                                                                                                                                                          
## Proton Coupled Monocarboxylate Transport                                                                                                                                                                                                                                                                                                                        
## Pten Regulation                                                                                                                                                                                                                                                                                                                                                 
## Ptk6 Expression                                                                                                                                                                                                                                                                                                                                                 
## Ptk6 Promotes Hif1a Stabilization                                                                                                                                                                                                                                                                                                                               
## Ptk6 Regulates Cell Cycle                                                                                                                                                                                                                                                                                                                                       
## Ptk6 Regulates Proteins Involved In Rna Processing                                                                                                                                                                                                                                                                                                              
## Ptk6 Regulates Rho Gtpases Ras Gtpase And Map Kinases                                                                                                                                                                                                                                                                                                           
## Ptk6 Regulates Rtks And Their Effectors Akt1 And Dok1                                                                                                                                                                                                                                                                                                           
## Purine Catabolism                                                                                                                                                                                                                                                                                                                                               
## Purine Ribonucleoside Monophosphate Biosynthesis                                                                                                                                                                                                                                                                                                                
## Purine Salvage                                                                                                                                                                                                                                                                                                                                                  
## Pyrimidine Catabolism                                                                                                                                                                                                                                                                                                                                           
## Pyrimidine Salvage                                                                                                                                                                                                                                                                                                                                              
## Pyruvate Metabolism                                                                                                                                                                                                                                                                                                                                             
## Pyruvate Metabolism And Citric Acid Tca Cycle                                                                                                                                                                                                                                                                                                                   
## Ra Biosynthesis Pathway                                                                                                                                                                                                                                                                                                                                         
## Rab Gefs Exchange Gtp For Gdp On Rabs                                                                                                                                                                                                                                                                                                                           
## Rab Geranylgeranylation                                                                                                                                                                                                                                                                                                                                         
## Rab Regulation Of Trafficking                                                                                                                                                                                                                                                                                                                                   
## Raf Activation                                                                                                                                                                                                                                                                                                                                                  
## Rap1 Signalling                                                                                                                                                                                                                                                                                                                                                 
## Ras Activation Upon Ca2 Influx Through Nmda Receptor                                                                                                                                                                                                                                                                                                            
## Ras Processing                                                                                                                                                                                                                                                                                                                                                  
## Ras Signaling Downstream Of Nf1 Loss Of Function Variants                                                                                                                                                                                                                                                                                                       
## Reactions Specific To The Complex N Glycan Synthesis Pathway                                                                                                                                                                                                                                                                                                    
## Receptor Type Tyrosine Protein Phosphatases                                                                                                                                                                                                                                                                                                                     
## Recognition And Association Of Dna Glycosylase With Site Containing An Affected Purine                                                                                                                                                                                                                                                                          
## Recognition Of Dna Damage By Pcna Containing Replication Complex                                                                                                                                                                                                                                                                                                
## Recycling Of Bile Acids And Salts                                                                                                                                                                                                                                                                                                                               
## Recycling Of Eif2 Gdp                                                                                                                                                                                                                                                                                                                                           
## Recycling Pathway Of L1                                                                                                                                                                                                                                                                                                                                         
## Reduction Of Cytosolic Ca Levels                                                                                                                                                                                                                                                                                                                                
## Reelin Signalling Pathway                                                                                                                                                                                                                                                                                                                                       
## Regulated Proteolysis Of P75ntr                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Bach1 Activity                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Beta Cell Development                                                                                                                                                                                                                                                                                                                             
## Regulation Of Cholesterol Biosynthesis By Srebp Srebf                                                                                                                                                                                                                                                                                                           
## Regulation Of Commissural Axon Pathfinding By Slit And Robo                                                                                                                                                                                                                                                                                                     
## Regulation Of Cytoskeletal Remodeling And Cell Spreading By Ipp Complex Components                                                                                                                                                                                                                                                                              
## Regulation Of Expression Of Slits And Robos                                                                                                                                                                                                                                                                                                                     
## Regulation Of Fzd By Ubiquitination                                                                                                                                                                                                                                                                                                                             
## Regulation Of Gene Expression By Hypoxia Inducible Factor                                                                                                                                                                                                                                                                                                       
## Regulation Of Gene Expression In Beta Cells                                                                                                                                                                                                                                                                                                                     
## Regulation Of Gene Expression In Early Pancreatic Precursor Cells                                                                                                                                                                                                                                                                                               
## Regulation Of Gene Expression In Endocrine Committed Neurog3 Progenitor Cells                                                                                                                                                                                                                                                                                   
## Regulation Of Gene Expression In Late Stage Branching Morphogenesis Pancreatic Bud Precursor Cells                                                                                                                                                                                                                                                              
## Regulation Of Glucokinase By Glucokinase Regulatory Protein                                                                                                                                                                                                                                                                                                     
## Regulation Of Glycolysis By Fructose 2 6 Bisphosphate Metabolism                                                                                                                                                                                                                                                                                                
## Regulation Of Hmox1 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Ifna Signaling                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Ifng Signaling                                                                                                                                                                                                                                                                                                                                    
## Regulation Of Innate Immune Responses To Cytosolic Dna                                                                                                                                                                                                                                                                                                          
## Regulation Of Insulin Secretion                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Kit Signaling                                                                                                                                                                                                                                                                                                                                     
## Regulation Of Localization Of Foxo Transcription Factors                                                                                                                                                                                                                                                                                                        
## Regulation Of Mrna Stability By Proteins That Bind Au Rich Elements                                                                                                                                                                                                                                                                                             
## Regulation Of Pten Gene Transcription                                                                                                                                                                                                                                                                                                                           
## Regulation Of Pten Localization                                                                                                                                                                                                                                                                                                                                 
## Regulation Of Pten Mrna Translation                                                                                                                                                                                                                                                                                                                             
## Regulation Of Pten Stability And Activity                                                                                                                                                                                                                                                                                                                       
## Regulation Of Pyruvate Dehydrogenase Pdh Complex                                                                                                                                                                                                                                                                                                                
## Regulation Of Ras By Gaps                                                                                                                                                                                                                                                                                                                                       
## Regulation Of Runx1 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Runx2 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Runx3 Expression And Activity                                                                                                                                                                                                                                                                                                                     
## Regulation Of Signaling By Cbl                                                                                                                                                                                                                                                                                                                                  
## Regulation Of Signaling By Nodal                                                                                                                                                                                                                                                                                                                                
## Regulation Of Tp53 Activity Through Acetylation                                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Association With Co Factors                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Methylation                                                                                                                                                                                                                                                                                                                 
## Regulation Of Tp53 Activity Through Phosphorylation                                                                                                                                                                                                                                                                                                             
## Relaxin Receptors                                                                                                                                                                                                                                                                                                                                               
## Release Of Apoptotic Factors From The Mitochondria                                                                                                                                                                                                                                                                                                              
## Release Of Hh Np From The Secreting Cell                                                                                                                                                                                                                                                                                                                        
## Removal Of Aminoterminal Propeptides From Gamma Carboxylated Proteins                                                                                                                                                                                                                                                                                           
## Reproduction                                                                                                                                                                                                                                                                                                                                                    
## Resolution Of Abasic Sites Ap Sites                                                                                                                                                                                                                                                                                                                             
## Resolution Of Ap Sites Via The Multiple Nucleotide Patch Replacement Pathway                                                                                                                                                                                                                                                                                    
## Resolution Of D Loop Structures                                                                                                                                                                                                                                                                                                                                 
## Resolution Of D Loop Structures Through Synthesis Dependent Strand Annealing Sdsa                                                                                                                                                                                                                                                                               
## Respiratory Electron Transport                                                                                                                                                                                                                                                                                                                                  
## Respiratory Electron Transport Atp Synthesis By Chemiosmotic Coupling And Heat Production By Uncoupling Proteins                                                                                                                                                                                                                                                
## Response Of Eif2ak1 Hri To Heme Deficiency                                                                                                                                                                                                                                                                                                                      
## Response Of Eif2ak4 Gcn2 To Amino Acid Deficiency                                                                                                                                                                                                                                                                                                               
## Response Of Mtb To Phagocytosis                                                                                                                                                                                                                                                                                                                                 
## Response To Metal Ions                                                                                                                                                                                                                                                                                                                                          
## Ret Signaling                                                                                                                                                                                                                                                                                                                                                   
## Retinoid Cycle Disease Events                                                                                                                                                                                                                                                                                                                                   
## Retrograde Neurotrophin Signalling                                                                                                                                                                                                                                                                                                                              
## Retrograde Transport At The Trans Golgi Network                                                                                                                                                                                                                                                                                                                 
## Reversible Hydration Of Carbon Dioxide                                                                                                                                                                                                                                                                                                                          
## Rho Gtpases Activate Cit                                                                                                                                                                                                                                                                                                                                        
## Rho Gtpases Activate Nadph Oxidases                                                                                                                                                                                                                                                                                                                             
## Rho Gtpases Activate Pkns                                                                                                                                                                                                                                                                                                                                       
## Rho Gtpases Activate Rhotekin And Rhophilins                                                                                                                                                                                                                                                                                                                    
## Rho Gtpases Activate Rocks                                                                                                                                                                                                                                                                                                                                      
## Rhobtb Gtpase Cycle                                                                                                                                                                                                                                                                                                                                             
## Rhobtb1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhobtb2 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhobtb3 Atpase Cycle                                                                                                                                                                                                                                                                                                                                            
## Rhot1 Gtpase Cycle                                                                                                                                                                                                                                                                                                                                              
## Rna Polymerase I Promoter Escape                                                                                                                                                                                                                                                                                                                                
## Rna Polymerase I Transcription                                                                                                                                                                                                                                                                                                                                  
## Rna Polymerase I Transcription Initiation                                                                                                                                                                                                                                                                                                                       
## Rna Polymerase I Transcription Termination                                                                                                                                                                                                                                                                                                                      
## Rna Polymerase Ii Transcribes Snrna Genes                                                                                                                                                                                                                                                                                                                       
## Rna Polymerase Ii Transcription Termination                                                                                                                                                                                                                                                                                                                     
## Rna Polymerase Iii Chain Elongation                                                                                                                                                                                                                                                                                                                             
## Rna Polymerase Iii Transcription                                                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Initiation From Type 1 Promoter                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Initiation From Type 3 Promoter                                                                                                                                                                                                                                                                                                
## Rna Polymerase Iii Transcription Termination                                                                                                                                                                                                                                                                                                                    
## Robo Receptors Bind Akap5                                                                                                                                                                                                                                                                                                                                       
## Role Of Abl In Robo Slit Signaling                                                                                                                                                                                                                                                                                                                              
## Role Of Lat2 Ntal Lab On Calcium Mobilization                                                                                                                                                                                                                                                                                                                   
## Role Of Phospholipids In Phagocytosis                                                                                                                                                                                                                                                                                                                           
## Role Of Second Messengers In Netrin 1 Signaling                                                                                                                                                                                                                                                                                                                 
## Rora Activates Gene Expression                                                                                                                                                                                                                                                                                                                                  
## Rrna Modification In The Mitochondrion                                                                                                                                                                                                                                                                                                                          
## Rrna Modification In The Nucleus And Cytosol                                                                                                                                                                                                                                                                                                                    
## Rrna Processing                                                                                                                                                                                                                                                                                                                                                 
## Rrna Processing In The Mitochondrion                                                                                                                                                                                                                                                                                                                            
## Rsk Activation                                                                                                                                                                                                                                                                                                                                                  
## Runx1 Interacts With Co Factors Whose Precise Effect On Runx1 Targets Is Not Known                                                                                                                                                                                                                                                                              
## Runx1 Regulates Estrogen Receptor Mediated Transcription                                                                                                                                                                                                                                                                                                        
## Runx1 Regulates Expression Of Components Of Tight Junctions                                                                                                                                                                                                                                                                                                     
## Runx1 Regulates Genes Involved In Megakaryocyte Differentiation And Platelet Function                                                                                                                                                                                                                                                                           
## Runx1 Regulates Transcription Of Genes Involved In Bcr Signaling                                                                                                                                                                                                                                                                                                
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Hscs                                                                                                                                                                                                                                                                                      
## Runx1 Regulates Transcription Of Genes Involved In Differentiation Of Keratinocytes                                                                                                                                                                                                                                                                             
## Runx1 Regulates Transcription Of Genes Involved In Interleukin Signaling                                                                                                                                                                                                                                                                                        
## Runx1 Regulates Transcription Of Genes Involved In Wnt Signaling                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Bone Development                                                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Chondrocyte Maturation                                                                                                                                                                                                                                                                                                                          
## Runx2 Regulates Genes Involved In Cell Migration                                                                                                                                                                                                                                                                                                                
## Runx2 Regulates Osteoblast Differentiation                                                                                                                                                                                                                                                                                                                      
## Runx3 Regulates Bcl2l11 Bim Transcription                                                                                                                                                                                                                                                                                                                       
## Runx3 Regulates Cdkn1a Transcription                                                                                                                                                                                                                                                                                                                            
## Runx3 Regulates Immune Response And Cell Migration                                                                                                                                                                                                                                                                                                              
## Runx3 Regulates Notch Signaling                                                                                                                                                                                                                                                                                                                                 
## Runx3 Regulates P14 Arf                                                                                                                                                                                                                                                                                                                                         
## Runx3 Regulates Yap1 Mediated Transcription                                                                                                                                                                                                                                                                                                                     
## Sars Cov 1 Genome Replication And Transcription                                                                                                                                                                                                                                                                                                                 
## Sars Cov 1 Infection                                                                                                                                                                                                                                                                                                                                            
## Sars Cov 2 Infection                                                                                                                                                                                                                                                                                                                                            
## Scavenging By Class F Receptors                                                                                                                                                                                                                                                                                                                                 
## Scf Skp2 Mediated Degradation Of P27 P21                                                                                                                                                                                                                                                                                                                        
## Sealing Of The Nuclear Envelope Ne By Escrt Iii                                                                                                                                                                                                                                                                                                                 
## Selenoamino Acid Metabolism                                                                                                                                                                                                                                                                                                                                     
## Sema3a Pak Dependent Axon Repulsion                                                                                                                                                                                                                                                                                                                             
## Sema3a Plexin Repulsion Signaling By Inhibiting Integrin Adhesion                                                                                                                                                                                                                                                                                               
## Sema4d In Semaphorin Signaling                                                                                                                                                                                                                                                                                                                                  
## Sema4d Induced Cell Migration And Growth Cone Collapse                                                                                                                                                                                                                                                                                                          
## Sema4d Mediated Inhibition Of Cell Attachment And Migration                                                                                                                                                                                                                                                                                                     
## Sensing Of Dna Double Strand Breaks                                                                                                                                                                                                                                                                                                                             
## Sensory Processing Of Sound                                                                                                                                                                                                                                                                                                                                     
## Sensory Processing Of Sound By Outer Hair Cells Of The Cochlea                                                                                                                                                                                                                                                                                                  
## Separation Of Sister Chromatids                                                                                                                                                                                                                                                                                                                                 
## Serine Biosynthesis                                                                                                                                                                                                                                                                                                                                             
## Serotonin And Melatonin Biosynthesis                                                                                                                                                                                                                                                                                                                            
## Serotonin Neurotransmitter Release Cycle                                                                                                                                                                                                                                                                                                                        
## Serotonin Receptors                                                                                                                                                                                                                                                                                                                                             
## Shc Mediated Cascade Fgfr1                                                                                                                                                                                                                                                                                                                                      
## Shc Mediated Cascade Fgfr3                                                                                                                                                                                                                                                                                                                                      
## Shc Mediated Cascade Fgfr4                                                                                                                                                                                                                                                                                                                                      
## Shc Related Events Triggered By Igf1r                                                                                                                                                                                                                                                                                                                           
## Shc1 Events In Egfr Signaling                                                                                                                                                                                                                                                                                                                                   
## Shc1 Events In Erbb2 Signaling                                                                                                                                                                                                                                                                                                                                  
## Shc1 Events In Erbb4 Signaling                                                                                                                                                                                                                                                                                                                                  
## Sialic Acid Metabolism                                                                                                                                                                                                                                                                                                                                          
## Signal Amplification                                                                                                                                                                                                                                                                                                                                            
## Signal Attenuation                                                                                                                                                                                                                                                                                                                                              
## Signal Regulatory Protein Family Interactions                                                                                                                                                                                                                                                                                                                   
## Signal Transduction By L1                                                                                                                                                                                                                                                                                                                                       
## Signaling By Activin                                                                                                                                                                                                                                                                                                                                            
## Signaling By Bmp                                                                                                                                                                                                                                                                                                                                                
## Signaling By Braf And Raf Fusions                                                                                                                                                                                                                                                                                                                               
## Signaling By Ctnnb1 Phospho Site Mutants                                                                                                                                                                                                                                                                                                                        
## Signaling By Egfr In Cancer                                                                                                                                                                                                                                                                                                                                     
## Signaling By Erbb2                                                                                                                                                                                                                                                                                                                                              
## Signaling By Erbb2 Ecd Mutants                                                                                                                                                                                                                                                                                                                                  
## Signaling By Erbb2 In Cancer                                                                                                                                                                                                                                                                                                                                    
## Signaling By Erbb4                                                                                                                                                                                                                                                                                                                                              
## Signaling By Erythropoietin                                                                                                                                                                                                                                                                                                                                     
## Signaling By Fgfr                                                                                                                                                                                                                                                                                                                                               
## Signaling By Fgfr1                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr2                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr2 Iiia Tm                                                                                                                                                                                                                                                                                                                                      
## Signaling By Fgfr2 In Disease                                                                                                                                                                                                                                                                                                                                   
## Signaling By Fgfr3                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr3 Fusions In Cancer                                                                                                                                                                                                                                                                                                                            
## Signaling By Fgfr4                                                                                                                                                                                                                                                                                                                                              
## Signaling By Fgfr4 In Disease                                                                                                                                                                                                                                                                                                                                   
## Signaling By Flt3 Fusion Proteins                                                                                                                                                                                                                                                                                                                               
## Signaling By Flt3 Itd And Tkd Mutants                                                                                                                                                                                                                                                                                                                           
## Signaling By Hedgehog                                                                                                                                                                                                                                                                                                                                           
## Signaling By Hippo                                                                                                                                                                                                                                                                                                                                              
## Signaling By Lrp5 Mutants                                                                                                                                                                                                                                                                                                                                       
## Signaling By Mapk Mutants                                                                                                                                                                                                                                                                                                                                       
## Signaling By Membrane Tethered Fusions Of Pdgfra Or Pdgfrb                                                                                                                                                                                                                                                                                                      
## Signaling By Moderate Kinase Activity Braf Mutants                                                                                                                                                                                                                                                                                                              
## Signaling By Mras Complex Mutants                                                                                                                                                                                                                                                                                                                               
## Signaling By Mst1                                                                                                                                                                                                                                                                                                                                               
## Signaling By Nodal                                                                                                                                                                                                                                                                                                                                              
## Signaling By Notch1 Hd Domain Mutants In Cancer                                                                                                                                                                                                                                                                                                                 
## Signaling By Notch1 T 7 9 Notch1 M1580 K2555 Translocation Mutant                                                                                                                                                                                                                                                                                               
## Signaling By Notch3                                                                                                                                                                                                                                                                                                                                             
## Signaling By Notch4                                                                                                                                                                                                                                                                                                                                             
## Signaling By Ntrk2 Trkb                                                                                                                                                                                                                                                                                                                                         
## Signaling By Ntrk3 Trkc                                                                                                                                                                                                                                                                                                                                         
## Signaling By Retinoic Acid                                                                                                                                                                                                                                                                                                                                      
## Signaling By Rnf43 Mutants                                                                                                                                                                                                                                                                                                                                      
## Signaling By Tgf Beta Receptor Complex In Cancer                                                                                                                                                                                                                                                                                                                
## Signaling By Wnt In Cancer                                                                                                                                                                                                                                                                                                                                      
## Signalling To Erks                                                                                                                                                                                                                                                                                                                                              
## Signalling To P38 Via Rit And Rin                                                                                                                                                                                                                                                                                                                               
## Signalling To Ras                                                                                                                                                                                                                                                                                                                                               
## Slbp Dependent Processing Of Replication Dependent Histone Pre Mrnas                                                                                                                                                                                                                                                                                            
## Slc Mediated Transmembrane Transport                                                                                                                                                                                                                                                                                                                            
## Slc Transporter Disorders                                                                                                                                                                                                                                                                                                                                       
## Smac Xiap Regulated Apoptotic Response                                                                                                                                                                                                                                                                                                                          
## Small Interfering Rna Sirna Biogenesis                                                                                                                                                                                                                                                                                                                          
## Smooth Muscle Contraction                                                                                                                                                                                                                                                                                                                                       
## Snrnp Assembly                                                                                                                                                                                                                                                                                                                                                  
## Sodium Calcium Exchangers                                                                                                                                                                                                                                                                                                                                       
## Sodium Coupled Phosphate Cotransporters                                                                                                                                                                                                                                                                                                                         
## Sodium Coupled Sulphate Di And Tri Carboxylate Transporters                                                                                                                                                                                                                                                                                                     
## Sodium Proton Exchangers                                                                                                                                                                                                                                                                                                                                        
## Sos Mediated Signalling                                                                                                                                                                                                                                                                                                                                         
## Sperm Motility And Taxes                                                                                                                                                                                                                                                                                                                                        
## Sphingolipid De Novo Biosynthesis                                                                                                                                                                                                                                                                                                                               
## Sphingolipid Metabolism                                                                                                                                                                                                                                                                                                                                         
## Spry Regulation Of Fgf Signaling                                                                                                                                                                                                                                                                                                                                
## Srp Dependent Cotranslational Protein Targeting To Membrane                                                                                                                                                                                                                                                                                                     
## Stabilization Of P53                                                                                                                                                                                                                                                                                                                                            
## Stat5 Activation                                                                                                                                                                                                                                                                                                                                                
## Stat5 Activation Downstream Of Flt3 Itd Mutants                                                                                                                                                                                                                                                                                                                 
## Stimuli Sensing Channels                                                                                                                                                                                                                                                                                                                                        
## Sting Mediated Induction Of Host Immune Responses                                                                                                                                                                                                                                                                                                               
## Striated Muscle Contraction                                                                                                                                                                                                                                                                                                                                     
## Sulfide Oxidation To Sulfate                                                                                                                                                                                                                                                                                                                                    
## Sulfur Amino Acid Metabolism                                                                                                                                                                                                                                                                                                                                    
## Sumo Is Conjugated To E1 Uba2 Sae1                                                                                                                                                                                                                                                                                                                              
## Sumo Is Proteolytically Processed                                                                                                                                                                                                                                                                                                                               
## Sumo Is Transferred From E1 To E2 Ube2i Ubc9                                                                                                                                                                                                                                                                                                                    
## Sumoylation Of Chromatin Organization Proteins                                                                                                                                                                                                                                                                                                                  
## Sumoylation Of Dna Damage Response And Repair Proteins                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Dna Replication Proteins                                                                                                                                                                                                                                                                                                                         
## Sumoylation Of Intracellular Receptors                                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Rna Binding Proteins                                                                                                                                                                                                                                                                                                                             
## Sumoylation Of Sumoylation Proteins                                                                                                                                                                                                                                                                                                                             
## Sumoylation Of Transcription Cofactors                                                                                                                                                                                                                                                                                                                          
## Sumoylation Of Transcription Factors                                                                                                                                                                                                                                                                                                                            
## Sumoylation Of Ubiquitinylation Proteins                                                                                                                                                                                                                                                                                                                        
## Suppression Of Apoptosis                                                                                                                                                                                                                                                                                                                                        
## Suppression Of Phagosomal Maturation                                                                                                                                                                                                                                                                                                                            
## Surfactant Metabolism                                                                                                                                                                                                                                                                                                                                           
## Switching Of Origins To A Post Replicative State                                                                                                                                                                                                                                                                                                                
## Synaptic Adhesion Like Molecules                                                                                                                                                                                                                                                                                                                                
## Syndecan Interactions                                                                                                                                                                                                                                                                                                                                           
## Synthesis Of 12 Eicosatetraenoic Acid Derivatives                                                                                                                                                                                                                                                                                                               
## Synthesis Of 16 20 Hydroxyeicosatetraenoic Acids Hete                                                                                                                                                                                                                                                                                                           
## Synthesis Of 5 Eicosatetraenoic Acids                                                                                                                                                                                                                                                                                                                           
## Synthesis Of Active Ubiquitin Roles Of E1 And E2 Enzymes                                                                                                                                                                                                                                                                                                        
## Synthesis Of Bile Acids And Bile Salts                                                                                                                                                                                                                                                                                                                          
## Synthesis Of Bile Acids And Bile Salts Via 24 Hydroxycholesterol                                                                                                                                                                                                                                                                                                
## Synthesis Of Bile Acids And Bile Salts Via 27 Hydroxycholesterol                                                                                                                                                                                                                                                                                                
## Synthesis Of Bile Acids And Bile Salts Via 7alpha Hydroxycholesterol                                                                                                                                                                                                                                                                                            
## Synthesis Of Diphthamide Eef2                                                                                                                                                                                                                                                                                                                                   
## Synthesis Of Dolichyl Phosphate                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Epoxy Eet And Dihydroxyeicosatrienoic Acids Dhet                                                                                                                                                                                                                                                                                                   
## Synthesis Of Gdp Mannose                                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Glycosylphosphatidylinositol Gpi                                                                                                                                                                                                                                                                                                                   
## Synthesis Of Ip2 Ip And Ins In The Cytosol                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Ip3 And Ip4 In The Cytosol                                                                                                                                                                                                                                                                                                                         
## Synthesis Of Ketone Bodies                                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Leukotrienes Lt And Eoxins Ex                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Lipoxins Lx                                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Pa                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pc                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pe                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pg                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pi                                                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pips At The Early Endosome Membrane                                                                                                                                                                                                                                                                                                                
## Synthesis Of Pips At The Er Membrane                                                                                                                                                                                                                                                                                                                            
## Synthesis Of Pips At The Golgi Membrane                                                                                                                                                                                                                                                                                                                         
## Synthesis Of Pips At The Late Endosome Membrane                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Pips At The Plasma Membrane                                                                                                                                                                                                                                                                                                                        
## Synthesis Of Pyrophosphates In The Cytosol                                                                                                                                                                                                                                                                                                                      
## Synthesis Of Substrates In N Glycan Biosythesis                                                                                                                                                                                                                                                                                                                 
## Synthesis Of Udp N Acetyl Glucosamine                                                                                                                                                                                                                                                                                                                           
## Synthesis Of Very Long Chain Fatty Acyl Coas                                                                                                                                                                                                                                                                                                                    
## Synthesis Of Wybutosine At G37 Of Trna Phe                                                                                                                                                                                                                                                                                                                      
## Synthesis Secretion And Deacylation Of Ghrelin                                                                                                                                                                                                                                                                                                                  
## Tachykinin Receptors Bind Tachykinins                                                                                                                                                                                                                                                                                                                           
## Tbc Rabgaps                                                                                                                                                                                                                                                                                                                                                     
## Telomere C Strand Lagging Strand Synthesis                                                                                                                                                                                                                                                                                                                      
## Telomere C Strand Synthesis Initiation                                                                                                                                                                                                                                                                                                                          
## Telomere Extension By Telomerase                                                                                                                                                                                                                                                                                                                                
## Telomere Maintenance                                                                                                                                                                                                                                                                                                                                            
## Terminal Pathway Of Complement                                                                                                                                                                                                                                                                                                                                  
## Termination Of O Glycan Biosynthesis                                                                                                                                                                                                                                                                                                                            
## Termination Of Translesion Dna Synthesis                                                                                                                                                                                                                                                                                                                        
## Tetrahydrobiopterin Bh4 Synthesis Recycling Salvage And Regulation                                                                                                                                                                                                                                                                                              
## Tfap2 Ap 2 Family Regulates Transcription Of Growth Factors And Their Receptors                                                                                                                                                                                                                                                                                 
## Tfap2a Acts As A Transcriptional Repressor During Retinoic Acid Induced Cell Differentiation                                                                                                                                                                                                                                                                    
## Tgf Beta Receptor Signaling Activates Smads                                                                                                                                                                                                                                                                                                                     
## Tgf Beta Receptor Signaling In Emt Epithelial To Mesenchymal Transition                                                                                                                                                                                                                                                                                         
## The Activation Of Arylsulfatases                                                                                                                                                                                                                                                                                                                                
## The Canonical Retinoid Cycle In Rods Twilight Vision                                                                                                                                                                                                                                                                                                            
## The Citric Acid Tca Cycle And Respiratory Electron Transport                                                                                                                                                                                                                                                                                                    
## The Fatty Acid Cycling Model                                                                                                                                                                                                                                                                                                                                    
## The Phototransduction Cascade                                                                                                                                                                                                                                                                                                                                   
## The Retinoid Cycle In Cones Daylight Vision                                                                                                                                                                                                                                                                                                                     
## The Role Of Nef In Hiv 1 Replication And Disease Pathogenesis                                                                                                                                                                                                                                                                                                   
## Thrombin Signalling Through Proteinase Activated Receptors Pars                                                                                                                                                                                                                                                                                                 
## Thromboxane Signalling Through Tp Receptor                                                                                                                                                                                                                                                                                                                      
## Thyroxine Biosynthesis                                                                                                                                                                                                                                                                                                                                          
## Tie2 Signaling                                                                                                                                                                                                                                                                                                                                                  
## Tight Junction Interactions                                                                                                                                                                                                                                                                                                                                     
## Toxicity Of Botulinum Toxin Type D Botd                                                                                                                                                                                                                                                                                                                         
## Tp53 Regulates Metabolic Genes                                                                                                                                                                                                                                                                                                                                  
## Tp53 Regulates Transcription Of Additional Cell Cycle Genes Whose Exact Role In The P53 Pathway Remain Uncertain                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Caspase Activators And Caspases                                                                                                                                                                                                                                                                                                 
## Tp53 Regulates Transcription Of Cell Death Genes                                                                                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Death Receptors And Ligands                                                                                                                                                                                                                                                                                                     
## Tp53 Regulates Transcription Of Dna Repair Genes                                                                                                                                                                                                                                                                                                                
## Tp53 Regulates Transcription Of Genes Involved In Cytochrome C Release                                                                                                                                                                                                                                                                                          
## Tp53 Regulates Transcription Of Genes Involved In G1 Cell Cycle Arrest                                                                                                                                                                                                                                                                                          
## Tp53 Regulates Transcription Of Several Additional Cell Death Genes Whose Specific Roles In P53 Dependent Apoptosis Remain Uncertain                                                                                                                                                                                                                            
## Traf3 Dependent Irf Activation Pathway                                                                                                                                                                                                                                                                                                                          
## Traf6 Mediated Irf7 Activation                                                                                                                                                                                                                                                                                                                                  
## Trafficking Of Ampa Receptors                                                                                                                                                                                                                                                                                                                                   
## Trafficking Of Glur2 Containing Ampa Receptors                                                                                                                                                                                                                                                                                                                  
## Trafficking Of Myristoylated Proteins To The Cilium                                                                                                                                                                                                                                                                                                             
## Trail Signaling                                                                                                                                                                                                                                                                                                                                                 
## Trans Golgi Network Vesicle Budding                                                                                                                                                                                                                                                                                                                             
## Transcription Coupled Nucleotide Excision Repair Tc Ner                                                                                                                                                                                                                                                                                                         
## Transcription Of The Hiv Genome                                                                                                                                                                                                                                                                                                                                 
## Transcriptional Regulation By E2f6                                                                                                                                                                                                                                                                                                                              
## Transcriptional Regulation By Small Rnas                                                                                                                                                                                                                                                                                                                        
## Transcriptional Regulation By Ventx                                                                                                                                                                                                                                                                                                                             
## Transcriptional Regulation Of Testis Differentiation                                                                                                                                                                                                                                                                                                            
## Transferrin Endocytosis And Recycling                                                                                                                                                                                                                                                                                                                           
## Translation                                                                                                                                                                                                                                                                                                                                                     
## Translation Of Replicase And Assembly Of The Replication Transcription Complex                                                                                                                                                                                                                                                                                  
## Translation Of Sars Cov 1 Structural Proteins                                                                                                                                                                                                                                                                                                                   
## Translation Of Sars Cov 2 Structural Proteins                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Polh                                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Polk                                                                                                                                                                                                                                                                                                                                   
## Translesion Synthesis By Y Family Dna Polymerases Bypasses Lesions On Dna Template                                                                                                                                                                                                                                                                              
## Translocation Of Slc2a4 Glut4 To The Plasma Membrane                                                                                                                                                                                                                                                                                                            
## Transport And Synthesis Of Paps                                                                                                                                                                                                                                                                                                                                 
## Transport Of Bile Salts And Organic Acids Metal Ions And Amine Compounds                                                                                                                                                                                                                                                                                        
## Transport Of Connexons To The Plasma Membrane                                                                                                                                                                                                                                                                                                                   
## Transport Of Fatty Acids                                                                                                                                                                                                                                                                                                                                        
## Transport Of Inorganic Cations Anions And Amino Acids Oligopeptides                                                                                                                                                                                                                                                                                             
## Transport Of Mature Mrnas Derived From Intronless Transcripts                                                                                                                                                                                                                                                                                                   
## Transport Of Mature Transcript To Cytoplasm                                                                                                                                                                                                                                                                                                                     
## Transport Of Nucleosides And Free Purine And Pyrimidine Bases Across The Plasma Membrane                                                                                                                                                                                                                                                                        
## Transport Of Nucleotide Sugars                                                                                                                                                                                                                                                                                                                                  
## Transport Of Organic Anions                                                                                                                                                                                                                                                                                                                                     
## Transport Of The Slbp Dependant Mature Mrna                                                                                                                                                                                                                                                                                                                     
## Transport Of Vitamins Nucleosides And Related Molecules                                                                                                                                                                                                                                                                                                         
## Triglyceride Biosynthesis                                                                                                                                                                                                                                                                                                                                       
## Tristetraprolin Ttp Zfp36 Binds And Destabilizes Mrna                                                                                                                                                                                                                                                                                                           
## Trna Aminoacylation                                                                                                                                                                                                                                                                                                                                             
## Trna Modification In The Mitochondrion                                                                                                                                                                                                                                                                                                                          
## Trna Modification In The Nucleus And Cytosol                                                                                                                                                                                                                                                                                                                    
## Trna Processing                                                                                                                                                                                                                                                                                                                                                 
## Trna Processing In The Mitochondrion                                                                                                                                                                                                                                                                                                                            
## Trna Processing In The Nucleus                                                                                                                                                                                                                                                                                                                                  
## Trp Channels                                                                                                                                                                                                                                                                                                                                                    
## Tryptophan Catabolism                                                                                                                                                                                                                                                                                                                                           
## Type I Hemidesmosome Assembly                                                                                                                                                                                                                                                                                                                                   
## Tyrosine Catabolism                                                                                                                                                                                                                                                                                                                                             
## Tysnd1 Cleaves Peroxisomal Proteins                                                                                                                                                                                                                                                                                                                             
## Ubiquinol Biosynthesis                                                                                                                                                                                                                                                                                                                                          
## Uch Proteinases                                                                                                                                                                                                                                                                                                                                                 
## Unblocking Of Nmda Receptors Glutamate Binding And Activation                                                                                                                                                                                                                                                                                                   
## Unwinding Of Dna                                                                                                                                                                                                                                                                                                                                                
## Uptake And Actions Of Bacterial Toxins                                                                                                                                                                                                                                                                                                                          
## Uptake And Function Of Anthrax Toxins                                                                                                                                                                                                                                                                                                                           
## Uptake And Function Of Diphtheria Toxin                                                                                                                                                                                                                                                                                                                         
## Urea Cycle                                                                                                                                                                                                                                                                                                                                                      
## Vasopressin Like Receptors                                                                                                                                                                                                                                                                                                                                      
## Vasopressin Regulates Renal Water Homeostasis Via Aquaporins                                                                                                                                                                                                                                                                                                    
## Vegf Ligand Receptor Interactions                                                                                                                                                                                                                                                                                                                               
## Vegfr2 Mediated Cell Proliferation                                                                                                                                                                                                                                                                                                                              
## Viral Messenger Rna Synthesis                                                                                                                                                                                                                                                                                                                                   
## Vitamin B1 Thiamin Metabolism                                                                                                                                                                                                                                                                                                                                   
## Vitamin B2 Riboflavin Metabolism                                                                                                                                                                                                                                                                                                                                
## Vitamin B5 Pantothenate Metabolism                                                                                                                                                                                                                                                                                                                              
## Vitamin C Ascorbate Metabolism                                                                                                                                                                                                                                                                                                                                  
## Vitamin D Calciferol Metabolism                                                                                                                                                                                                                                                                                                                                 
## Vitamins                                                                                                                                                                                                                                                                                                                                                        
## Vldl Assembly                                                                                                                                                                                                                                                                                                                                                   
## Vldl Clearance                                                                                                                                                                                                                                                                                                                                                  
## Vldlr Internalisation And Degradation                                                                                                                                                                                                                                                                                                                           
## Voltage Gated Potassium Channels                                                                                                                                                                                                                                                                                                                                
## Vxpx Cargo Targeting To Cilium                                                                                                                                                                                                                                                                                                                                  
## Wax And Plasmalogen Biosynthesis                                                                                                                                                                                                                                                                                                                                
## Wnt Mediated Activation Of Dvl                                                                                                                                                                                                                                                                                                                                  
## Xenobiotics                                                                                                                                                                                                                                                                                                                                                     
## Yap1 And Wwtr1 Taz Stimulated Gene Expression                                                                                                                                                                                                                                                                                                                   
## Zinc Efflux And Compartmentalization By The Slc30 Family                                                                                                                                                                                                                                                                                                        
## Zinc Influx Into Cells By The Slc39 Gene Family                                                                                                                                                                                                                                                                                                                 
## Zinc Transporters

Cancer genes

diffanal_res <- xlsx::read.xlsx(file.path(PATH, "results/pml_diffex_wo_infl/PML.DiffEx.results.Can.vs.Ctrl.xlsx"), sheetIndex = 1)
diffanal_res <- diffanal_res[diffanal_res$padj<=0.05,]
diff_cancer <- diffanal_res[diffanal_res$gene %in% msea_genes$cancer, ]

ggplot(data = diff_cancer, aes(x=gene, y = log2FoldChange),)+
  geom_bar(aes( fill=log2FoldChange>0), stat = "identity")+ 
  theme_bw()+  
  ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1))+
  scale_fill_manual(guide = "none", breaks = c(TRUE, FALSE), values=c("blue4", "red"))

Cancer vs Ctrl up

library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✔ tibble  3.1.7     ✔ purrr   0.3.4
## ✔ tidyr   1.2.0     ✔ forcats 0.5.1
## ✔ readr   2.1.2
## Warning: package 'tidyr' was built under R version 4.0.5
## Warning: package 'readr' was built under R version 4.0.5
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ plotly::arrange()        masks dplyr::arrange(), plyr::arrange()
## ✖ tibble::as_data_frame()  masks igraph::as_data_frame(), dplyr::as_data_frame()
## ✖ IRanges::collapse()      masks dplyr::collapse()
## ✖ Biobase::combine()       masks BiocGenerics::combine(), dplyr::combine()
## ✖ purrr::compact()         masks plyr::compact()
## ✖ purrr::compose()         masks igraph::compose()
## ✖ matrixStats::count()     masks dplyr::count(), plyr::count()
## ✖ tidyr::crossing()        masks igraph::crossing()
## ✖ IRanges::desc()          masks dplyr::desc(), plyr::desc()
## ✖ tidyr::expand()          masks S4Vectors::expand()
## ✖ tidyr::extract()         masks magrittr::extract()
## ✖ dplyr::failwith()        masks plyr::failwith()
## ✖ plotly::filter()         masks dplyr::filter(), stats::filter()
## ✖ S4Vectors::first()       masks dplyr::first()
## ✖ igraph::groups()         masks plotly::groups(), dplyr::groups()
## ✖ dplyr::id()              masks plyr::id()
## ✖ dplyr::lag()             masks stats::lag()
## ✖ plotly::mutate()         masks dplyr::mutate(), plyr::mutate()
## ✖ BiocGenerics::Position() masks ggplot2::Position(), base::Position()
## ✖ purrr::reduce()          masks GenomicRanges::reduce(), IRanges::reduce()
## ✖ plotly::rename()         masks S4Vectors::rename(), dplyr::rename(), plyr::rename()
## ✖ plotly::select()         masks biomaRt::select(), dplyr::select()
## ✖ purrr::set_names()       masks magrittr::set_names()
## ✖ purrr::simplify()        masks igraph::simplify()
## ✖ plotly::slice()          masks IRanges::slice(), dplyr::slice()
## ✖ plotly::summarise()      masks dplyr::summarise(), plyr::summarise()
## ✖ dplyr::summarize()       masks plyr::summarize()
msea_cancer_up_new<- separate_rows(msea_cancer_up, shared, sep = ",", convert = T)
msea_cancer_up_new$shared <- gsub(msea_cancer_up_new$shared, pattern = "\\[", replacement = "")
msea_cancer_up_new$shared <- gsub(msea_cancer_up_new$shared, pattern = "\\]", replacement = "")
msea_cancer_up_new$shared <- gsub(msea_cancer_up_new$shared, pattern = "\\'", replacement = "")
msea_cancer_up_new$shared <- gsub(msea_cancer_up_new$shared, pattern = " ", replacement = "")
msea_cancer_up_new
## # A tibble: 256 × 8
##    term  oddsratio    pvalue qvalue zscore combined_score shared        n_shared
##    <chr>     <dbl>     <dbl>  <dbl>  <dbl>          <dbl> <chr>            <int>
##  1 IFI16     29.6  0.0000747 0.0135  -8.54           81.2 Campylobacter        4
##  2 IFI16     29.6  0.0000747 0.0135  -8.54           81.2 Porphyromonas        4
##  3 IFI16     29.6  0.0000747 0.0135  -8.54           81.2 Aggregatibac…        4
##  4 IFI16     29.6  0.0000747 0.0135  -8.54           81.2 Fusobacterium        4
##  5 CD86       5.05 0.000408  0.0210  -4.27           33.3 Veillonella          9
##  6 CD86       5.05 0.000408  0.0210  -4.27           33.3 Campylobacter        9
##  7 CD86       5.05 0.000408  0.0210  -4.27           33.3 Aggregatibac…        9
##  8 CD86       5.05 0.000408  0.0210  -4.27           33.3 Fusobacterium        9
##  9 CD86       5.05 0.000408  0.0210  -4.27           33.3 Peptostrepto…        9
## 10 CD86       5.05 0.000408  0.0210  -4.27           33.3 Prevotella           9
## # … with 246 more rows

igraph

  • Choose genes that come up diff analysis
  • to adjust for degree size for genes double it
msea_cancer_up_de <- msea_cancer_up_new[msea_cancer_up_new$term %in% diff_cancer$gene, ]
df <- msea_cancer_up_de[, c("term", "shared", "combined_score")]
transformed_mat <- xtabs(combined_score~., df)
attr(transformed_mat, "class") <- NULL #ignore this

#tdf <- table(msea_cancer_up_de[, c('term', 'shared')])
g <- graph.incidence(transformed_mat, weighted = TRUE)
is.bipartite(g)
## [1] TRUE
deg <- degree(g, mode="all")

# g <- delete.vertices(g, which(degree(g)<5))
# deg <- degree(g)

colrs <- c("red","#6CA6CD")[V(g)$type + 1L]

V(g)$shape <- ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), "circle", "square")
V(g)$vertex.label.dist = 1

LO = matrix(0, nrow=vcount(g), ncol=2)
LO[!V(g)$type, 2] = 1

LO[V(g)$type, 1]  = rank(V(g)$name[V(g)$type]) - 1
LO[!V(g)$type, 1] = (rank(V(g)$name[!V(g)$type]) - 1) * 
    (sum(V(g)$type) - 1)  /  (sum(!V(g)$type) - 1)

#for a vertical bipartite graph
LO <- LO[,2:1]
#LO[,2] <- LO[,2]*2

plot(g, 
     vertex.color = adjustcolor(colrs,  alpha.f = 1), 
     vertex.frame.color = colrs,
     layout = LO, 
     vertex.size = ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), deg*2.5, deg*1.95),
     #vertex.size = deg*3,
    vertex.label.dist = ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), -8, 13),
    vertex.label.degree =  ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), 3.14, -3.14), # The position of the label in relation to the vertex, where 0 is right, “pi” is left, “pi/2” is below, and “-pi/2” is above
     #vertex.label.cex=0.5,
    vertex.label.cex= ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), 1, 1),
     vertex.frame.width=0.1,
     vertex.label.color="black",
     edge.width=abs(E(g)$weight)/20, 
     vertex.label.family="Arial",
    vertex.label.font=ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term),1,3),
     edge.color = "black",
     asp = 2.5)

msea_cancer_up_de <- msea_cancer_up_new[msea_cancer_up_new$term %in% diff_cancer$gene, ]
df <- msea_cancer_up_de[, c("term", "shared", "combined_score")]
transformed_mat <- xtabs(combined_score~., df)
attr(transformed_mat, "class") <- NULL #ignore this

g <- graph.incidence(transformed_mat, weighted = TRUE)
is.bipartite(g)
deg <- degree(g, mode="all")
#colrs <- c("#FFD580","#6CA6CD")[V(g)$type + 1L]

colrs <- c("#6CA6CD", "red")[V(g)$type + 1L]
colrs <- ifelse(colrs=="red" & V(g)$name %in% c("CEACAM1", "GALE", "IL18"), "blue", colrs)

V(g)$shape <- ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), "circle", "square")

LO = matrix(0, nrow=vcount(g), ncol=2)
LO[!V(g)$type, 2] = 1

LO[V(g)$type, 1]  = rank(V(g)$name[V(g)$type]) - 1
LO[!V(g)$type, 1] = (rank(V(g)$name[!V(g)$type]) - 1) * 
    (sum(V(g)$type) - 1)  /  (sum(!V(g)$type) - 1)

#for a vertical bipartite graph
LO <- LO[,2:1]

tiff(file.path(PATH, "results/06_16_cancer_microbes_ig.png"),units="in", width=5, height=5, res=600)
plot(g, 
     vertex.color = adjustcolor(colrs,  alpha.f = 1), 
     vertex.frame.color = colrs,
     layout = LO, 
     vertex.size = ifelse(V(g)$name %in% unquote(msea_cancer_up_de$term), deg*2.5, deg*1.95),
     #vertex.size = deg*3,
     vertex.label.dist = -1,
     vertex.label.cex=0.3,
     vertex.frame.width=0.1,
     vertex.label.color="black",
     edge.width=abs(E(g)$weight)/20, 
     vertex.label.family="Arial",
     vertex.label.font=4,
     vertex.label.face = 
     edge.color = "black",
     #edge.color=ifelse(E(g)$weight > 0, "red","blue"),
     asp = 2.5)
dev.off()
microbes_cancer_shared <- unique(msea_cancer_up_de$shared)
DT::datatable(msea_cancer_up_de)

PML vs. Ctrl

diffanal_res_hknr <- xlsx::read.xlsx(file.path(PATH, "results/pml_diffex_wo_infl/PML.DiffEx.results.Hknr.vs.Ctrl.xlsx"), sheetIndex = 1)
diffanal_res_dys <- xlsx::read.xlsx(file.path(PATH, "results/pml_diffex_wo_infl/PML.DiffEx.results.Dys.vs.Ctrl.xlsx"), sheetIndex = 1)

diffanal_res_hknr$gene <- diffanal_res_hknr$NA.
diffanal_res_dys$gene <- diffanal_res_dys$NA.

diffanal_pml <- rbind(diffanal_res_dys, diffanal_res_hknr)

diffanal_pml <- diffanal_pml[diffanal_pml$padj<=0.05,]
diff_pml<- diffanal_pml[diffanal_pml$gene %in% msea_genes$pml, ]

ggplot(data = diff_pml, aes(x=gene, y = log2FoldChange),)+
  geom_bar(aes( fill=log2FoldChange>0), stat = "identity")+ 
  theme_bw()+  
  ggplot2::theme(axis.text.x = element_text(angle = 45, hjust = 1))+
  scale_fill_manual(guide = "none", breaks = c(TRUE, FALSE), values=c("blue4", "red"))

PML vs Ctrl up

msea_pml_up_new<- separate_rows(msea_pml_up, shared, sep = ",", convert = T)
msea_pml_up_new$shared <- gsub(msea_pml_up_new$shared, pattern = "\\[", replacement = "")
msea_pml_up_new$shared <- gsub(msea_pml_up_new$shared, pattern = "\\]", replacement = "")
msea_pml_up_new$shared <- gsub(msea_pml_up_new$shared, pattern = "\\'", replacement = "")
msea_pml_up_new$shared <- gsub(msea_pml_up_new$shared, pattern = " ", replacement = "")
msea_pml_up_new
## # A tibble: 536 × 8
##    term  oddsratio    pvalue  qvalue zscore combined_score shared       n_shared
##    <chr>     <dbl>     <dbl>   <dbl>  <dbl>          <dbl> <chr>           <int>
##  1 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Campylobact…        9
##  2 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Shewanella          9
##  3 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Aggregatiba…        9
##  4 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Fusobacteri…        9
##  5 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Streptococc…        9
##  6 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Prevotella          9
##  7 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Haemophilus         9
##  8 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Porphyromon…        9
##  9 IL1B       5.26 0.000305  0.00884  -7.64           61.8 Neisseria           9
## 10 CD5        9.85 0.0000146 0.00265  -1.92           21.4 Campylobact…        8
## # … with 526 more rows
  • Choose genes that come up diff analysis
  • to adjust for degree size for genes double it
msea_pml_up_de <- msea_pml_up_new[msea_pml_up_new$term %in% diff_pml$gene, ]
df <- msea_pml_up_de[, c("shared", "term", "combined_score")]
transformed_mat <- xtabs(combined_score~., df)
attr(transformed_mat, "class") <- NULL #ignore this

g <- graph.incidence(transformed_mat, weighted = TRUE)
is.bipartite(g)
deg <- degree(g, mode="all")

colrs <- c("#7EC384", "#FFD580")[V(g)$type + 1L]

V(g)$shape <- ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), "circle", "square")
#V(g)$label.cez <- 1

LO = matrix(0, nrow=vcount(g), ncol=2)
LO[!V(g)$type, 2] = 1

LO[V(g)$type, 1]  = rank(V(g)$name[V(g)$type]) - 1
LO[!V(g)$type, 1] = (rank(V(g)$name[!V(g)$type]) - 1) * (sum(V(g)$type) - 1)  /  (sum(!V(g)$type) - 1)

#for a vertical bipartite graph
LO <- LO[,2:1]
#LO[,2] <- LO[,2]*2

plot(g, 
     vertex.color = adjustcolor(colrs,  alpha.f = .6), 
     vertex.frame.color = colrs,
     layout = LO, 
     vertex.size = ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), deg*1.25, deg*1.25),
     vertex.label.dist = ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), 0, 0),
     vertex.label.cex= ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), 0.18, 0.35),
     vertex.frame.width=0.1,
     vertex.label.font=3,
     edge.width=abs(E(g)$weight)/200, 
     vertex.label.family="Arial",
     edge.color=ifelse(E(g)$weight > 0, "red", "blue"),  asp = 3)
msea_pml_up_de <- msea_pml_up_new[msea_pml_up_new$term %in% diff_pml$gene, ]
df <- msea_pml_up_de[, c("shared", "term", "combined_score")]
transformed_mat <- xtabs(combined_score~., df)
attr(transformed_mat, "class") <- NULL #ignore this

#tdf <- table(msea_cancer_up_de[, c('term', 'shared')])
g <- graph.incidence(transformed_mat, weighted = TRUE)
is.bipartite(g)
## [1] TRUE
deg <- degree(g, mode="all")
colrs <- c("#6CA6CD","red")[V(g)$type + 1L]
colrs <- ifelse(colrs=="red" & V(g)$name %in% c("CEACAM1", "GALE", "IL18"), "blue", colrs)

V(g)$shape <- ifelse(V(g)$name %in% unquote(msea_pml_up_new$term), "circle", "square")
V(g)$vertex.label.dist = 1

LO = matrix(0, nrow=vcount(g), ncol=2)
LO[!V(g)$type, 2] = 1

LO[V(g)$type, 1]  = rank(V(g)$name[V(g)$type]) - 1
LO[!V(g)$type, 1] = (rank(V(g)$name[!V(g)$type]) - 1) * 
    (sum(V(g)$type) - 1)  /  (sum(!V(g)$type) - 1)

#for a vertical bipartite graph
LO <- LO[,2:1]

plot(g, 
     vertex.color = adjustcolor(colrs,  alpha.f = 1), 
     vertex.frame.color = colrs,
     layout = LO, 
    vertex.size = ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), deg*1.75, deg*1.25),
     vertex.label.cex= ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), 1,1),
    vertex.label.dist = ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), 7.5, -12.5),
    vertex.label.degree =  ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), -3.14,-3.14), # The position of the label in relation to the vertex, where 0 is right, “pi” is left, “pi/2” is below, and “-pi/2” is above
     #vertex.label.cex=0.5,
     vertex.frame.width=0.1,
     vertex.label.color="black",
     edge.width=abs(E(g)$weight)/30, 
     vertex.label.family="Arial",
     vertex.label.font=ifelse(V(g)$name %in% unquote(msea_pml_up_de$term), 1,3),
     edge.color = "black",
     asp = 3)